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

1 view (last 30 days)
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?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 16 Jun 2014
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
 

More Answers (0)

Categories

Find more on Discrete-Event Simulation in Help Center and File Exchange

Tags

No tags entered yet.

Products


Release

R2014a

Community Treasure Hunt

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

Start Hunting!