
How can I record the simulation time when a condition is met in Simulink?
조회 수: 21 (최근 30일)
이전 댓글 표시
MathWorks Support Team
2022년 10월 11일
답변: MathWorks Support Team
2022년 11월 22일
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?
채택된 답변
MathWorks Support Team
2022년 10월 11일
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.

댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!