Hi All
I am trying to use matpower to evaluate IEEE 39 bus system. I am able to
plot the PV curve of load buses and was also able to get the critical power
and voltage values.
I would like to know if its possible to get the power values at each
iterations along with the voltage values ?
I am using runcpf, and used the below code.
mpopt = mpoption('out.all',0,'verbose',2,'out.bus',1);
mpopt = mpoption(mpopt,'cpf.stop_at','nose','cpf.step',0.2);
mpopt = mpoption(mpopt,'cpf.plot.bus',3,'cpf.plot.level',2);
mpcb = loadcase('case39'); % load base case
mpct = mpcb; % set up target case with
%mpct.gen(:,[PG QG]) = mpcb.gen(:,[PG QG])*2.5;
mpct.bus(3,PD) = mpcb.bus(3,PD)*2.5;
results = runcpf(mpcb, mpct, mpopt);
CriticalPower = results.bus(3,3)
CriticalVoltage = results.bus(3,8)
Thanking in advance
With Regards.
Arun Nair