How to run a simulink model using a program? what is the command used?

Sim command is generally used....I am confused how it is used....how the values produced from the program are transfered to the simulink model.

 채택된 답변

TAB
TAB 2012년 2월 18일
sim('YourModel');
OR
set_param('YourModel', 'SimulationCommand', 'start');
Using set_param('YourModel', 'SimulationCommand', ...) you can start, stop, pause or continue the simulation.

댓글 수: 3

Thank you so much for this answer.....
Suppose we are try to link an optimisation program with a model....ie. we are trying to pass the values from the program to the model....how is it done?
set_param('newmodel/PID','KP','10');This command shows no error....
but
set_param('newmodel/PID','KP','a'); this command shows the error...
where a = arr(1,1); arr() is an arg of the function
Error in 'newmodel/PID': Parameter 'KP' cannot be evaluated. MATLAB error message: Undefined function or variable 'KP'
Please help...
"where a = arr(1,1); arr() is an arg of the function"
Didn't understand - arr() is an arg of the function.
for "set_param('newmodel/PID','KP','a')" a should be present on base workspace.
You need to set the SrcWorkspace parameter as described here: http://www.mathworks.com/matlabcentral/answers/10149-simulink-workspace
By default, Simulink looks for the parameter variables in the base workspace. Setting SrcWorkspace to 'current' forces it to use the current (function) workspace instead.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Simulink에 대해 자세히 알아보기

질문:

2012년 2월 18일

편집:

2013년 10월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by