필터 지우기
필터 지우기

Run a simulation repeatedly for certain times..

조회 수: 8 (최근 30일)
FG
FG 2020년 3월 11일
댓글: FG 2020년 3월 11일
Hi all.. I want to run a simulation repeatedly for certain times with different parameters at each. I have a code as an m file and I can share. Can anyone help me about that ?

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 3월 11일
This link shows the MATLAB's build-in features to run several simulations: https://www.mathworks.com/help/simulink/ug/introduction_bvnw33f.html. If you have parallel computing toolbox, then they can run in parallel. However, the setup can be a bit involved, check here for example: https://www.mathworks.com/help/simulink/ug/example-of-parallel-simulations-workflow.html
If you want a simple solution, you can write a for loop and use sim function to run several simulations
for i=1:10
% change parameters
sim('model_name')
end
model_name.slx is the same of the simulink model.
  댓글 수: 3
Ameer Hamza
Ameer Hamza 2020년 3월 11일
You define a variable in MATLAB workspace, for example
power = 1000;
then in the simulink block, write the name of the variable (power) in the Active power field. When you change the value of power inside for loop, the next simulation will read that value and simulate accordingly. Similarly, you can change other parameters.
FG
FG 2020년 3월 11일
Thnx friend.. I'll let you know when I get it done : )

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Modeling에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by