How to reduce the execution time for Input/Output ports in Simulink?

1 view (last 30 days)
Hello,
I just installed the R2020a version of MATLAB&Simulink and I profiled my Simulink model.
From the profiler report it appeared that, among other sources, a not negligible amount of time is taken by the Input and Output ports of various subsystems.
What is it due to? Is it possible to reduce this time in order to speed up the simulation?
Thank you,
Antonio
  2 Comments
Antonio Carlo Bertolino
Antonio Carlo Bertolino on 10 Jul 2020
They are the ports of a "If Action Subsystem". This subsystem does not have the option "Treat as an atomic unit" checked in the Block parameters panel.

Sign in to comment.

Answers (1)

Fangjun Jiang
Fangjun Jiang on 10 Jul 2020
An atomic subsystem will have to update its Inport and Outport at every simulation step while virtual subsystems don't need to do that. If the time took to do those Inport and Outport update has become significant, re-examine and consider changeing atomic subsystems to be virtual. Many times, I found users don't necessarily understand the difference and subsystems were made atomic by accident.
Action Subsystems are atomic subsystems by definition. You can still consider using alternatives such as conditional brahching using Switch block.
The boundary of virtual subsystem don't exist when simulating or for code generation, while the boundary of atomic subsystems are required to update at every simulation step. If subsystems are made atomic unnecessarily or by mistake, the simulation speed might suffer slightly and the result might differ.

Categories

Find more on Schedule Model Components in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!