example to pick up data from simulink when trip signal active
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Khalid
el 1 de Oct. de 2016
Comentada: Swarooph
el 5 de Oct. de 2016
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 comentarios
Respuesta aceptada
Swarooph
el 4 de Oct. de 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 comentarios
Swarooph
el 5 de Oct. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Nonlinear Operators en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!