How do I suppress signal output from Simulink model?
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
HaMo
am 30 Mai 2018
Beantwortet: Christopher Wallace
am 6 Jun. 2018
I want to measure performance of my Simulink model using SimulationMetaData. The problem is the sim command also outputs all signals in workspace. For my example model (see screenshot) it is not a problem, but for a larger model with long simulation times it uses up too much memory, which in turn affects the execution time negatively.
Example:
simout = sim('DummyTest', 'ReturnWorkspaceOutputs', 'on')
yields
simout =
Simulink.SimulationOutput:
y: [1x1 timeseries]
SimulationMetadata: [1x1 Simulink.SimulationMetadata]
ErrorMessage: [0x0 char]
I can get rid of the 'y' field by typing
metadata = simout.getSimulationMetadata()
However I do not want it to be written to memory (as output to the function) in the first place. I have tried
set_param DummyTest SaveTime off SaveState off SaveOutput off SaveFinalState off
but to no avail.
UPDATE: The reason y is part of the output struct from the sim function is that it is stored to workspace with the 'To Workspace' block. Thus, Simulink does not return all signals in workspace, but instead it returns the signals that are saved to workspace.
In order to perform what is asked in the headline of this post, untick 'Configuration Parameters' / 'Data Import/Export' / 'Output'
I still do not know how to do it programatically though
0 Kommentare
Akzeptierte Antwort
Christopher Wallace
am 6 Jun. 2018
Hi HaMo,
To turn it off programatically try:
set_param(sys, 'SaveOutput', 'off')
Where 'sys' is the Simulink model your using. I used 'bdroot' to test it in Matlab 2017.
Best Regards,
Chris
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Programmatic Model Editing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!