How can I record the simulation time when a condition is met in Simulink?

19 views (last 30 days)
I have a set of conditions in Simulink release R2022b, and I would like to record the simulation time when they are met. How can I do that?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 11 Oct 2022
One way to do that is using a "Triggered subsystem" block:
https://www.mathworks.com/help/releases/R2022b/simulink/ug/triggered-subsystems.html
The triggered subsystem will become enabled when the control signal changes. By default, it is enabled when the control signal goes from a zero or negative value to a positive value.
The attached example records the time when a ramp signal crosses the value of 2. The ramp has a slope of 0.5, so the expected time of that event is 4 seconds.
As you can see, input of the "Triggered subsystem" is the simulation time using the "clock" block. The subsystem is simply wired so that its output is equal to its input. When the subsystem is triggered, it assigns the clock time to its output value and holds it.

More Answers (0)

Categories

Find more on Modeling in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!