How to set "Start simulation from steady state" in Solver Configuration block from Simscape programmatically?
14 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2020 年 7 月 7 日
回答済み: MathWorks Support Team
2020 年 7 月 7 日
How to set "Start simulation from steady state" in Solver Configuration block from Simscape programmatically?
採用された回答
MathWorks Support Team
2020 年 7 月 7 日
The block property which needs to be set is 'DoDC'. If the Solver Configuration block is the current block, it works like the following to enable it:
>> set_param(gcb,'DoDC','on')
To disable it, use:
>> set_param(gcb,'DoDC','off')
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Variable Initialization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!