Access Data in to APP DESIGNER from Simulink 'To Workspace' block.
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nagendra Vankadari
el 4 de Mayo de 2021
Respondida: Nagendra Vankadari
el 15 de Jul. de 2021
I wanted to run a Simulink model in External mode and I am new to App Designer. To begin with I started working in Normal mode. Here is the example:
My Simulink Model: with sine wave Amplitude Variable as 'Const';
The 'to workspace is in TimeSeries format.
App Desiner Model: This has two Numeric Edit Fields(Amplitude, Duration), one Axis for plotting and start button.
Callback fn code when the start button is pushed is below:
assignin("base", 'Const',app.AmplitudeEditField.Value);
simout = sim("AppDesignSetup.slx",'StopTime', num2str(app.DurationEditField.Value));
plot(app.UIAxes,simout.SineVal.Time, simout.SineVal.Data);
I get no error and also the output graph
NOW MY PROBLEM::
when I try same way to run a external mode model, Matlab suggested me to use 'set_param' to run a model in external mode.
So, to learn about 'set_param' , I started with the same model in Normal Mode with the callback fn code :
set_param('AppDesignSetup/Sine', 'Amplitude', num2str(app.AmplitudeEditField.Value));
set_param('AppDesignSetup', 'StopTime',num2str(app.DurationEditField.Value));
set_param('AppDesignSetup', 'SimulationMode', 'normal');
set_param('AppDesignSetup', 'SimulationCommand','start');
plot(app.UIAxes, out.SineVal.Time,out.SineVal.Data);
In this the program runs perfectly until the 'plot' command. The Simulink model runs perfectly and get an 'out' struct.
But I'm unable to access it. Someone please help me with this.
0 comentarios
Respuestas (2)
Fangjun Jiang
el 4 de Mayo de 2021
Use set_param() to set 'SimulationMode' and
then still run simout = sim("AppDesignSetup.slx")
so it will force the log of simulation result before plot() is run.
2 comentarios
Fangjun Jiang
el 4 de Mayo de 2021
For external mode, you need to control it through 'connect','disconnect','stop' and then check the data.
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!