EE-513 | Power converter design, control and application
Lecture 5
Lecture 1 and 2
Lecture 3
Lecture 4
This list contains the video lectures of the first course on Electric Machines.
Lecture 1
Lecture 2 Lecture 3 Lecture 4 Lecture 5 Lecture 6 Lecture 7 Lecture 8 Lecture 9 Lecture 10 Lecture 11 Lecture 12 Lecture 13 Lecture 14
The code for P&O MPPT is as follows.
function [Y,Stage_out,Pold_out]=Perturb_and_Observe_MPPT(P_new,P_old,Delay,Yin,Stage_in)
c=0.05;
Pold_out=P_old;
Y=Yin;
Stage_out= Stage_in;
if Delay == 0
if Stage_in==0
if P_new>P_old
Y=Yin+c;
Pold_out=P_new;
elseif P_new<P_old
Y=Yin-c;
Stage_out=1;
Pold_out=P_new;
end
Pold_out=P_new;
end
if Stage_in==1
if P_new>P_old
Y=Yin-c;
Pold_out=P_new;
elseif P_new<P_old
Y=Yin+c;
Stage_out=0;
Pold_out=P_new;
end
Pold_out=P_new;
end
end
Copyright © 2015-2017 by Hadeed A Sher
All rights reserved. No part of this blog may be reproduced, distributed, or transmitted in any form or by any means, including photocopying, recording, or other electronic or mechanical methods, without my prior written permission. For permission requests, write to the blog author addressed “Attention: Permissions Coordinator,” at the contact form.