Wind Power Conversion _ MPPT algorithm

Talk about these things here. There pro's and con's, anything about them.

Wind Power Conversion _ MPPT algorithm

Postby sandeeptorvi » Mon Mar 01, 2010 6:49 pm

Hi Freaks ,

I am stuck with this ... pls guide me .
I am doing a project called Wind Power Conversion for this i need apply a good reliable MPPT alogorthm ..
Can any1 help me with the implemantion & the code for any algorithm :)

Rgds ,
Sandeep
sandeeptorvi
 
Posts: 3
Joined: Mon Mar 01, 2010 6:43 pm

Re: Wind Power Conversion _ MPPT algorithm

Postby TonyB » Mon Mar 01, 2010 7:02 pm

If you understand C, try something like this:

Code: Select all
void SearchAndDestroy(void)
{
   PWM++;
   newpower = rawW;

   if(newpower == oldpower){
      PWM = PWM-INC;
   }
   
   if(newpower > oldpower && direction == UP && PWM < MAX){
      PWM = PWM+INC;
   }

   else if(newpower > oldpower && direction == DOWN && PWM > MIN){
      PWM = PWM-INC;
   }

   if(newpower < oldpower && direction == UP){
      PWM = PWM-INC;
      direction = DOWN;
   }

   else if(newpower < oldpower && direction == DOWN){
      PWM = PWM+INC;
      direction = UP;
   }

   oldpower = newpower;
}


Flowchart:
Image
User avatar
TonyB
 
Posts: 501
Joined: Sun Dec 02, 2007 3:45 am
Location: Australia

Re: Wind Power Conversion _ MPPT algorithm

Postby sandeeptorvi » Wed Apr 07, 2010 5:34 pm

hi tony ,

thanks for the help .

could u pls tell me which algorithm u used in flowchart and code ?

regrds,
sandeep
sandeeptorvi
 
Posts: 3
Joined: Mon Mar 01, 2010 6:43 pm

Re: Wind Power Conversion _ MPPT algorithm

Postby dch » Thu Apr 08, 2010 8:22 am

Is it just me or do you really want Tony to do all the coding?
dch
 
Posts: 22
Joined: Tue Mar 30, 2010 9:30 am

Re: Wind Power Conversion _ MPPT algorithm

Postby sandeeptorvi » Thu Apr 08, 2010 5:54 pm

Hello all ,

thanks for the help .
i want design a interactive software for interfacing MPPT algorithm with the whole system .

so could anyone guide me in initial phase of designing software , i am plannig to use altera platform

but no issues , i can understand c / c++ / java codes also ...so pls guide possibly in going ahead...

rgds,
sandeep[/color]
sandeeptorvi
 
Posts: 3
Joined: Mon Mar 01, 2010 6:43 pm


Return to Grid connected systems

Who is online

Users browsing this forum: Google Adsense [Bot] and 0 guests