Problem with Simscape variable visibility

조회 수: 5 (최근 30일)
Fabio Freschi
Fabio Freschi 2021년 1월 19일
댓글: Fabio Freschi 2021년 1월 28일
Hi all,
I have created a simulink model of a circuit using simscape electrical elements. I have also created two callbacks, InitFcn and StopFcn to initialize some parameters and postprocess the results, respectively. In particular, the initialization function randomly sets the value of some parameters used by the simulink model, whereas the StopFcn callback takes the results in the log of simulation data (those available in Simscape Results Explorer) and analyze them, saving the results on a file.
Everything runs smoothly if I start the simulation within Simulink pressing the run button.
In order to automatize the study, I have created a simple matlab script to run the model multiple times. The script is really simple and looks like this
for i = 1:10
% run simulink
sim('threePhaseDiodeRectifierFilterVariable');
end
At this point I have problems because Matlab returns an error that I can't read correctly:
Error using modelSweep (line 3)
Error evaluating 'StopFcn' callback of block_diagram 'threePhaseDiodeRectifierFilterVariable'.
Callback string is 'threePhaseDiodeRectifierFilterVariable_output'
Caused by:
Error using modelSweep (line 3)
Unable to resolve the name
out.simlog_threePhaseDiodeRectifierFilterFiveCoils.Current_Sensor_Three_Phase.I_output.series.values.
I tried to debug the code, setting a breakpoint before loading the simulation data from the variable 'out...', but this variable does not exist anymore. I think the problem is related to the visibility of the simscape data that are no longer available when the simulink model is run with the command sim, but this is only my guess and I don't know how to figure out the solution.
Does anybody have an idea of what's happening?
Thank you in advance
Fabio

채택된 답변

Fangjun Jiang
Fangjun Jiang 2021년 1월 20일
편집: Fangjun Jiang 2021년 1월 24일
If I remember it correctly, all you need to do is to give sim() a return variable. Just try it
result=sim('threePhaseDiodeRectifierFilterVariable');
now I found the reference
  댓글 수: 1
Fabio Freschi
Fabio Freschi 2021년 1월 28일
Fangjun,
I am very sorry for my late reply. Unfortunately, your solution didn't solve initially my problem, but it was my fault. I tried multiple times and in the and I figured out where I was wrong.
This is indeed the solution I was looking for. Thank you for you help
Fabio

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by