Explanation of Accelerator mode and listener functions
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am writing a report on work that I have been doing using Simulink and matlab working together at the same time.Recently I read a comment suggesting that adding an event listener to a block when Simulink runs in accelerator mode will not work.
I would assume that this is because the function for adding an event listener is written in C++ but i can not find anything to confirm if this is true.
Does anyone have any information they can point me towards plese ?
Thanks
1 commentaire
Kaustubha Govind
le 25 Avr 2012
I don't see this in the documentation. Could you point out to the page where you read this comment?
Réponse acceptée
Abhishek Gupte
le 8 Mai 2012
Yes, event-listeners do not work in non-Normal simulation modes.
Event-listener functions are fired when the block methods that they are attached to ( eg. 'PostOutputs' ), are called. The API used is the block's Run-Time-Object (RTO). In a nutshell, an RTO is a Simulink block's proxy in MATLAB.
In Accelerator mode, a mex file of the model is generated. Instead of calling individual block methods, the corresponding block's mex counterpart is called. The API used to communicate between the mex function and the Simulink environment is called the C-Mex S-function API. This is shown here.
Since the block's methods are not directly executed, the block's RTO does not exist in Accel ( and all other non-Normal ) modes. Hence, the event listeners are never fired.
There is no workaround for this.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Event Functions dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!