how to do Serial and Parrarell computing, multiple simulink models in a loop?
古いコメントを表示
Hi all,
I have two simulink files that need to run in a loop.
I have the first file sim1.slx that should run for some time and provide an output which is the input for sim2.slx. Then sim2.slx runs and afterwards it should get back to the first file sim1.slx and do this untill a counter reaches a limit.
I know that this is easy in codes and Matlab scripts, but my platform is only based on simulink.
has anyone any clues how to do this?
best regards
Mona
回答 (1 件)
Nicolas B.
2019 年 9 月 5 日
0 投票
Hi Mona,
I would recommend you to take a look at the parsim command. Its documentation is very well done and give multiple examples.
Hope it helps.
Regards
6 件のコメント
Mona Faraji Niri
2019 年 9 月 5 日
編集済み: Mona Faraji Niri
2019 年 9 月 5 日
Nicolas B.
2019 年 9 月 5 日
Okay. Then, do you have any interactions between model A and B? Like an output value of A that is an input of B?
Mona Faraji Niri
2019 年 9 月 5 日
Nicolas B.
2019 年 9 月 5 日
Then, for your case, I would recommand to use a MATLAB script to synchronize your simulations. Your code could look like:
% run 1st simulation
simA = sim('my first model');
% configure simulation B
configureSimB(simA);
% run sim B
simB = sim('my second model');
... % so on so forth
I know it will require some work, but there is no automatic solution to do what you want.
Regards
Mona Faraji Niri
2019 年 9 月 5 日
Nicolas B.
2019 年 9 月 6 日
The risk with what you are trying to do is that you will end up in an infinite loop because model A call model B and model B call model A.
However, if you really want to go that way, I would simply do the same thing in model B to call model A.
カテゴリ
ヘルプ センター および File Exchange で Event Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!