Is it possible to run the power_wind_dfig model with ZERO speed?
1 回表示 (過去 30 日間)
古いコメントを表示
I want to run the power_wind_dfig model starting at zero speed. The problem is that when I try so, the speed goes to -0.2 pu and the results don't make sense. Even with increasing wind speed, I cannot make the machine speed positive.
0 件のコメント
回答 (1 件)
Christine Li
2022 年 9 月 28 日
編集済み: Christine Li
2022 年 9 月 28 日
Hi Sahand,
Can you share how did you configure the model to start from 0 speed?
For this shipping example, the initial condition is defined by a .mat file. And the model has defined a InitFcn callback to load the inital values, where the inital motor speed is defined 0.993pu. Everytime when you hit run, it will load this .mat file.
One way to change the inital motor speed is to define the xInitial in 'PreLoadFcn' callback, and modify the inital motor speed to 0 by run this in the commond before run the model:
>> xInitial.signals(44).values = 0;
Here is the simulation result of motor speed with 0 inital:
Hope this is helpful!
Best,
Christine
2 件のコメント
Christine Li
2022 年 9 月 29 日
Hi Liasi,
Can you elaborate more about "The problem is that when I try so, the speed goes to -0.2 pu and the results don't make sense. "? and would you be able to start from zero speed, if not, what error message did you get?
Thanks,
Christine
参考
カテゴリ
Help Center および File Exchange で Power Converters についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!