フィルターのクリア

How to turn off all results in matpower?

20 ビュー (過去 30 日間)
siva swami
siva swami 2016 年 10 月 7 日
回答済み: Natsawat Pompern 2022 年 12 月 15 日
How to turn off all results in matpower power flow problem?

採用された回答

ayyappa rudrasimha yedida
ayyappa rudrasimha yedida 2016 年 10 月 7 日
mpoption('verbose',0,'out.all',0)

その他の回答 (2 件)

Meme Young
Meme Young 2019 年 11 月 28 日
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 2022 年 12 月 15 日
Example
data = case33bw;
opt = mpoption('VERBOSE',0, 'OUT_ALL',0);
results = runpf(data,opt);

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by