Two area three unit thermal power system
1 回表示 (過去 30 日間)
古いコメントを表示
i did not get desierd output. there is all data is given in ppt but i did not get perfect output frequncy waveform. if you can help me the its good for me thank you
0 件のコメント
回答 (1 件)
Sulaymon Eshkabilov
2021 年 10 月 19 日
In your m-file, one of the variables is not initialized correctly, see:
...
b1=0.4249;
b2=0. % ERR
4249;
tg1=0.08;
...
should be:
b1=0.4249;
b2=0.4249; % Corrected
tg1=0.08;
...
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!