example to pick up data from simulink when trip signal active

3 visualizaciones (últimos 30 días)
Khalid
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

Respuesta aceptada

Swarooph
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
Khalid
Khalid el 5 de Oct. de 2016
Hi Swarooph, thanks for taking a time to replay me.
Yeah I saved my data to workspace but I would like to ask if there an function/block could pickup for me only the period of my trip when is initiated as (1) neglecting (0) since it take a bit of time to go and find the data for those trip signals.
Swarooph
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.

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by