Is it possible to implement Perturb and Observe algorithm using C block in PSIM?
Will following code work for Perturb and Observe algorithm in C Block?
If (Power_new-Power_old>0)
Vref=Vref+0.1;
else
Vref=Vref-0.1;
Is it correct to Equate V*I to Power_old by using one time step delay?