How to record the time at specific point in SimEvents R2014a (4.3.2)?

1 次查看(过去 30 天)
I want to record the time at specific point in SimEvents R2014a. My model may be complicated and the points to record time may not be in the same Entity. How to achieve this usage?

采纳的回答

MathWorks Support Team
You could achieve this by having a server block output the number of entities departed (#d) and log that signal then just look at the Values.Time variable for that signal to see when the event (in this case entity goes through the server) occurs. With the attached example RecordTime_Sample_TS.slx,  execute the following code to save the signals to variables after running.
 
departed = get(logsout,'departed');
startTime = get(logsout,'startTime');
departed.Values.Time
startTime.Values.Time
startTime.Values.Data
 

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Discrete-Event Simulation 的更多信息

标签

尚未输入任何标签。

产品


版本

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by