example to pick up data from simulink when trip signal active
2 views (last 30 days)
Show older comments
Hi Guys
I have a model in simulink, I would like to record the time for me when my trip signal is initiated (time for 0 & time for 1) since I would like to record the data of time, voltage, current when my trip signal (zero or one). As you can see from the attached image, the Iex_trip block is the trip signal output.
Thanks in advance
0 Comments
Accepted Answer
Swarooph
on 4 Oct 2016
What is the 'Save Format' of your To Workspace or To File block? If it is Array, you need to switch it to either Time Series, or Structure With Time (whichever is available) to record data AND time. Take a look at this documentation for more info.
2 Comments
Swarooph
on 5 Oct 2016
Short answer: You can create a new signal that is representative of times when your trip signal is 1 and then record that.
Long answer: Use a clock block in your model and multiply that with the trip signal. The output of this product operation will be a signal that has the time values when the trip signal is 1 and 0 when the trip is 0. Let's call this signal data recordedTime. Once the simulation is done, you can simply say recordedTime(recordedTime>0) in MATLAB command window to get all the values of time for which the trip signal was 1.
More Answers (0)
See Also
Categories
Find more on Nonlinear Operators in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!