How to turn off all results in matpower?
    12 ビュー (過去 30 日間)
  
       古いコメントを表示
    
    siva swami
 2016 年 10 月 7 日
  
    
    
    
    
    回答済み: Natsawat Pompern
 2022 年 12 月 15 日
            How to turn off all results in matpower power flow problem?
0 件のコメント
採用された回答
その他の回答 (2 件)
  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...
0 件のコメント
  Natsawat Pompern
 2022 年 12 月 15 日
        Example
data = case33bw;
opt = mpoption('VERBOSE',0, 'OUT_ALL',0);
results = runpf(data,opt);
0 件のコメント
参考
カテゴリ
				Help Center および File Exchange で Specialized Power Systems についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


