How do I programmatically set the parameters of a Simulink-PS Converter?

6 ビュー (過去 30 日間)
Isaac Friedman
Isaac Friedman 2020 年 1 月 24 日
コメント済み: stozaki 2020 年 1 月 24 日
I've got a program that generates a user-defined number of subsystems, each of which contains 1 Simulink-PS converter. I need the converters to have its Input Signal Unit dropdown equial to 'rad' and its Filtering and derivatives equal to 'Zero derivatives (pieceise constant)'. How can I go about this? The following does not work:
set_param(strcat(simFileName,'/','C_',num2str(i)), 'Units', 'rad','Filtering', 'Zero derivatives (piecewise constant)');

採用された回答

Fangjun Jiang
Fangjun Jiang 2020 年 1 月 24 日
Click one such block in your model and run "get(gcbh)" in Command Window to learn about its properties and values.
You could do the change for all the same type of blocks in one shot
blks=find_system(bdroot,'FindAll','On','MaskType','Simulink-PS Converter')
set(blks,'Unit','rad','FilteringAndDerivatives','zero')

その他の回答 (1 件)

stozaki
stozaki 2020 年 1 月 24 日
Hello Isaac,
I attached example model and script.
The set_param function can change the value of only one property in one execution.
Regards,
stozaki
  2 件のコメント
Fangjun Jiang
Fangjun Jiang 2020 年 1 月 24 日
set_param() can set multiple properties in one shot.
help set_param
stozaki
stozaki 2020 年 1 月 24 日
I am sorry. It is misstake.
It simply changed your property name.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeApplications についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by