Speed up running Simulink model using sim in MATLAB Grader

2 Ansichten (letzte 30 Tage)
IFM
IFM am 10 Dez. 2019
Kommentiert: Cris LaPierre am 22 Apr. 2022
I have been using MATLAB Grader to much success, but now I want to get my students to run a simple Simulink model using a script. The script is two blocks (Sine Wave and To Workspace). The Sine Wave has two varaibles defined (amp and freq) in the block parameters. My code is:
% block parameters
amp = 5;
freq = pi;
% Run the model
mySim = sim('mg_sin_wave_variables','StopTime','10');
% Use 'get' function to access the information from simulation saved as mySim
T = mySim.get('tout') ; % Get array of time steps
R = mySim.get('simout'); % Get array of results from To Workspace Block
% Plot results
plot(T,R)
At the moment using Chrome and a good internet connection it takes around 40 seconds to run. This is impressive given its in browser, but I would like to run the simulation for a few cases, which is leading to a few minutes of waiting for the output. Any ideas on how I can speed this up?
I have tried uploading the .slxc file but this doesn't seem to make things faster, I just get a Warning saying:
[Warning: The file containing block diagram 'mg_sin_wave_variables' has been changed on disk since it was loaded. Simulink is unable to reload it automatically because it is the root
model. Close it and reopen it manually.]
[> In solution (line 6)
In run (line 91)
In scoringengine.runScript
In ScoringEngineSharedVariable1 (line 1)
In solutionTest (line 3)]
  2 Kommentare
Sagar Zade
Sagar Zade am 12 Jan. 2020
Hi Isobel,
Did you manage to find a solution? If not then I reccomend that you contact Technical Support - https://www.mathworks.com/support/contact_us.html?s_tid=sp_ban_cs
IFM
IFM am 14 Jan. 2020
I did not. Thanks for the prompt. I did contact support who said that Simulik is not officially supported yet.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Cris LaPierre
Cris LaPierre am 16 Jan. 2020
We actively discourage incorporating Simulink into MATLAB Grader. It is not a supported use-case.
  2 Kommentare
Cristina Nuevo-Gallardo
Cristina Nuevo-Gallardo am 22 Apr. 2022
Dear Cris,
I am also willing to use Simulink models in Matlab Grader. Has there been any progress concerning this?
Thanks.
Cris LaPierre
Cris LaPierre am 22 Apr. 2022
It is certainly possible to run some Simulink models from within Grader using the sim command, as the OP showed, but the limitations of Grader remain the same. It can therefore be challenging to design a problem using Simulink that creates a positive learning experience for your students and that can be graded within the execution time limit.

Melden Sie sich an, um zu kommentieren.

Communitys

Weitere Antworten in  Distance Learning Community

Kategorien

Mehr zu Simulink Functions finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by