Explanation of Accelerator mode and listener functions

2 ビュー (過去 30 日間)
Paul
Paul 2012 年 4 月 21 日
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 件のコメント
Kaustubha Govind
Kaustubha Govind 2012 年 4 月 25 日
I don't see this in the documentation. Could you point out to the page where you read this comment?

サインインしてコメントする。

採用された回答

Abhishek Gupte
Abhishek Gupte 2012 年 5 月 8 日
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 件)

カテゴリ

Help Center および File ExchangeEvent Functions についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by