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

57 views (last 30 days)
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.

Accepted Answer

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

Sign in to comment.

More Answers (2)

Ilham Hardy
Ilham Hardy on 23 Mar 2015
Edited: Ilham Hardy on 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 Comments
Baptiste
Baptiste on 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 on 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?

Sign in to comment.


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

Sign in to comment.

Categories

Find more on Prepare Model Inputs and Outputs in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!