example to pick up data from simulink when trip signal active
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Swarooph
2016-10-4
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 个评论
Swarooph
2016-10-5
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Nonlinear Operators 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!