Pause model until new data arrives

8 vues (au cours des 30 derniers jours)
BRANDON YEE
BRANDON YEE le 14 Août 2017
Commenté : BRANDON YEE le 15 Août 2017
I have a Simulink model that processes much faster than the speed new input data arrives into the model. I have a control signal within the model that notifies when new data arrives. Is there a way to pause the model until the control signal specifies there is new data? I tried to use an enable subsystem block but I do not want to have the signal held at the last value for an extended period of time because it messes up the next part of the algorithm.

Réponses (1)

KL
KL le 15 Août 2017
You could use set_param.
set_param('vdp','SimulationCommand','pause')
and once your signal arrives,
set_param('vdp','SimulationCommand','continue')
  1 commentaire
BRANDON YEE
BRANDON YEE le 15 Août 2017
I tried this with assert but all the blocks get paused so there is no way to continue the model from within the model afterwards.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Simulink dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by