running simulink model from matlab

I am able to run the program in Matlab using >>sim ('PumpLocation');
but when I assign QQQ to a flow source (see pic1.JPG)
and use >>sim ('PumpLocation','QQQ','40') - it no longer works

回答 (1 件)

Sebastian Castro
Sebastian Castro 2015 年 10 月 30 日

0 投票

I don't see a picture attached. If the following doesn't answer your question, please ensure to attach something and I can take a look.
Is QQQ just a workspace variable that feeds into a flow source? If so, you can do:
>> QQQ = 40;
>> simout1 = sim('PumpLocation','StopTime','20', ... );
>> QQQ = 50;
>> simout2 = sim('PumpLocatiom','StopTime','20', ... );
- Sebastian

カテゴリ

ヘルプ センター および File ExchangeSimulink についてさらに検索

製品

タグ

質問済み:

2015 年 10 月 29 日

回答済み:

2015 年 10 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by