Effacer les filtres
Effacer les filtres

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

50 vues (au cours des 30 derniers jours)
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.

Réponse acceptée

Baptiste
Baptiste le 24 Mar 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 commentaires
Luis Estrada
Luis Estrada le 30 Mar 2015
Modifié(e) : Luis Estrada le 30 Mar 2015
Can you publish your solution, I have the same problem, but I dind't unterstand what did you do?
耀资
耀资 le 17 Mai 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?

Connectez-vous pour commenter.

Plus de réponses (2)

Ilham Hardy
Ilham Hardy le 23 Mar 2015
Modifié(e) : Ilham Hardy le 23 Mar 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 commentaires
Baptiste
Baptiste le 23 Mar 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 le 23 Mar 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?

Connectez-vous pour commenter.


Peeyush
Peeyush le 23 Mar 2015
Modifié(e) : Peeyush le 23 Mar 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 commentaire
Baptiste
Baptiste le 23 Mar 2015
Thanks for the answer, but it seems that I cannot update the variables from the Matlab workspace with set_param.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Prepare Model Inputs and Outputs dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by