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
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;
}Return to Grid connected systems
Users browsing this forum: Google Adsense [Bot] and 0 guests