Borrar filtros
Borrar filtros

Simulink : How can I update the data from Workspace while the simulation is running?

50 visualizaciones (últimos 30 días)
Hello,
My simulation is writing data in Matlab from Simulink, then I automatically paused it and do some computations on Matlab. After that the Simulink is continued automatically and I want to read the results of the Matlabs computations on Simulink.
The problem is that the box "From Workspace" doesn't update the values while the simulation is running or even paused. Is there a solution for updating the values or no?
Thanks for the help.

Respuesta aceptada

Baptiste
Baptiste el 24 de Mzo. de 2015
Problem solved :
I made a matlab function that load a '.mat' file with the variable I want and pass it as an output of my matlab function in Simulink.
  2 comentarios
Luis Estrada
Luis Estrada el 30 de Mzo. de 2015
Editada: Luis Estrada el 30 de Mzo. de 2015
Can you publish your solution, I have the same problem, but I dind't unterstand what did you do?
耀资
耀资 el 17 de Mayo de 2024
hello,I have the same problem recently, do you still remember how to fix it? If you see this answer, could you please tell me how to do?

Iniciar sesión para comentar.

Más respuestas (2)

Ilham Hardy
Ilham Hardy el 23 de Mzo. de 2015
Editada: Ilham Hardy el 23 de Mzo. de 2015
How do you pause the simulation?
Based on the description on To Workspace this should be possible (updated), see below:
The To Workspace block inputs a signal and writes the signal data to the MATLAB® workspace. During the simulation, the block writes data to an internal buffer. When the simulation is completed or paused , that data is written to the workspace. The block icon shows the name of the array to which the data is written.
  2 comentarios
Baptiste
Baptiste el 23 de Mzo. de 2015
To pause the simulation, I used an Assertion block with the callback set_param('test','SimulationCommand','pause').
The To Workspace is not the problem, it is when I want to read the data computed from the Workspace that I cannot.
Ilham Hardy
Ilham Hardy el 23 de Mzo. de 2015
So To Workspace block does update its value? Did you already confirm that To Workspace values are updated in the base workspace?
If it is confirmed, then on to the next questions:
How or from where do you call ("read the data computed") the variable? Is it from function, script or directly in Matlab Command Window?
Are you aware that matlab "have" several workspace?

Iniciar sesión para comentar.


Peeyush
Peeyush el 23 de Mzo. de 2015
Editada: Peeyush el 23 de Mzo. de 2015
Hi Baptiste,
This can be done using SET_PARAM command. In Simulink only Tunable Parameters can be changed with SET_PARAM at runtime. You can have a look at the below blog for the description:
You can update work space variables dynamically when a simulation is running. To do this, type:
set_param(bdroot,'SimulationCommand','update')
Regards, Peeyush Pashine Engineer in MathWorks
  1 comentario
Baptiste
Baptiste el 23 de Mzo. de 2015
Thanks for the answer, but it seems that I cannot update the variables from the Matlab workspace with set_param.

Iniciar sesión para comentar.

Categorías

Más información sobre Prepare Model Inputs and Outputs 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!

Translated by