How to turn off all results in matpower?

21 visualizaciones (últimos 30 días)
siva swami
siva swami el 7 de Oct. de 2016
Respondida: Natsawat Pompern el 15 de Dic. de 2022
How to turn off all results in matpower power flow problem?

Respuesta aceptada

ayyappa rudrasimha yedida
ayyappa rudrasimha yedida el 7 de Oct. de 2016
mpoption('verbose',0,'out.all',0)

Más respuestas (2)

Meme Young
Meme Young el 28 de Nov. de 2019
Dude ayyappa is right
But in Matpower 7.0 the ('out.all' ,0)option will be overridden when calling function runpf(),namely,the power flow function will change 'out.all' to 1 every time you run a powerflow case.The annotaion in Matpower7.0 manual regarding mpoption out.all and the source code of runpf() both confirmed this.
Of course you can modify the source code in matpower\lib\runpf.m but that is not recommended...

Natsawat Pompern
Natsawat Pompern el 15 de Dic. de 2022
Example
data = case33bw;
opt = mpoption('VERBOSE',0, 'OUT_ALL',0);
results = runpf(data,opt);

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by