
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!