Simulink "globals" not working as expected
Afficher commentaires plus anciens
I have an open loop simulink model. It runs one time step and stops. I would like some of the intermediate data for run i to be available in run i+1. I have tried to use Data Stores. I write the intermediate data to them on run i and then have a read on i+1 that tries to use them. All that happens is it passes back the initialzed value each time. Is there a way to use Data Stores as I am attempting to use? If not, can you suggest an alternative? Thanks!
6 commentaires
Walter Roberson
le 30 Juil 2022
Modifié(e) : Walter Roberson
le 31 Juil 2022
It looks to me as if PostLoadFcn callback might be the appropriate place to initialize the contents of the global variables the first time. I suspect that you are possibly using InitFcn callback at the moment
Daniel Harman
le 31 Juil 2022
Walter Roberson
le 31 Juil 2022
You would attach it to the model itself. Load the model, have the model PostLoadFcn callback set the initial values for the Data Store
Fangjun Jiang
le 1 Août 2022
First, please clarify "run i", "run i+1" is "runs one time" or "runs one time step"? "i+1" is the next simulation run, or the next simulation time step?
Walter Roberson
le 1 Août 2022
next simulation run is my understanding
Daniel Harman
le 1 Août 2022
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Event Functions dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!