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

58 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

Baptiste
Baptiste il 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.
  1 Commento
Luis Estrada
Luis Estrada il 30 Mar 2015
Modificato: Luis Estrada il 30 Mar 2015
Can you publish your solution, I have the same problem, but I dind't unterstand what did you do?

Accedi per commentare.

Più risposte (2)

Ilham Hardy
Ilham Hardy il 23 Mar 2015
Modificato: Ilham Hardy il 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 Commenti
Baptiste
Baptiste il 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 il 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?

Accedi per commentare.


Peeyush
Peeyush il 23 Mar 2015
Modificato: Peeyush il 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 Commento
Baptiste
Baptiste il 23 Mar 2015
Thanks for the answer, but it seems that I cannot update the variables from the Matlab workspace with set_param.

Accedi per commentare.

Categorie

Scopri di più su Prepare Model Inputs and Outputs in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by