Simulations with undefined variables

1 view (last 30 days)
Federico Avino
Federico Avino on 15 Mar 2021
Answered: Arthi Sathyamurthi on 25 Mar 2021
Hi, I have got a problem to which I can't find any solution on the net.
I'm building a Simscape/Simulink model loading some parameters from the workspace, and i should perform the following task: doing some control actions comparing the last values of certain variables from a previous simulation, with the initial values of the same variables in the next simulation. In practice it is to simulate if something happened to the physical system while the microcontroller was not active: so comparing last values from the sensors before the shutdown and first values from the sensors at the startup.
I was considering to export the last values of the variables to the workspace with the block To Workspace, and, in the next simulation, to send them in the simulink model as constants, but in this way at the first execution the constants would be undefined. Any suggested solutions?
  1 Comment
Fangjun Jiang
Fangjun Jiang on 15 Mar 2021
no other way but providing your best educated guess values and loading those values as part of your simulation setup

Sign in to comment.

Answers (1)

Arthi Sathyamurthi
Arthi Sathyamurthi on 25 Mar 2021
You can save the variable to the base workspace by using the To Workspace block or by using the Data import/export option in the configuration settings. And then save it as a mat file by modelling callbacks. You can directly use the To File block and directly save it as a mat file in the current folder. After following any of the above steps you can import the particular value from the mat file by using any of the callbacks as per your workflow and then use it in the program during your next simulation.

Categories

Find more on Simulink Environment Customization in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!