Simulations with undefined variables
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
Fangjun Jiang
2021-3-15
no other way but providing your best educated guess values and loading those values as part of your simulation setup
回答(1 个)
Arthi Sathyamurthi
2021-3-25
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Logging 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!