DestroyFcn callback of simulink block is ignored half the time.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
P Lepage
am 20 Nov. 2020
Kommentiert: Wei Jiang
am 20 Nov. 2020
I was observing unexpected behaviour on a program I am writing and discovered that the DestroyFcn callback is ignored half the time a block is deleted. DestroyFcn is supposed to be called after a block is graphically deleted, when the block is destroyed in the memory.
The block in quesiton is a masked subsystem in a reference model. When the block is used in a project, it's dragged from the referenced model to the project model.
I did the following investigation to identify DestroyFcn as the problem :
- Put the following code in the reference block DestroyFcn callback (contextual menu -> properties -> callback -> DestroyFcn);
msgbox('destroy')
2. Drag the block in a project model named 'MODEL'. Name the block 'BLOCK';
3. Run the following code to get the block Handle;
get_param('TEST/BLOCK', 'Handle')
4. Delete the block, expected msgbox pop-up, but nothing happens;
5. Re run step 3 code to see if block is still loaded in memory, receive this message;
" Invalid Simulink object name: TEST/BLOCK.
Caused by:
No block called 'TEST/BLOCK' could be found. "
This confirms the block was deleted from memory, and the fact that no msgbox pop-up was received makes me belive that code in the callback was somehow ignored.
I also tried different lines of codes in step one such as "disp('destroy')" and different ways to test if the block is still loaded such as "getSimulinkBlockHandle".
Did anyone ever exepirenced this ? Is this a bug or am I ignorant ? I'm on 2020b.
0 Kommentare
Akzeptierte Antwort
Wei Jiang
am 20 Nov. 2020
Hi,
I understand that you find that DestroyFcn callback is not called when you delete a block in Simulink.
The issue might be that you delete the block graphically.
Based on Block Callbacks documentation, if you delete the block graphically, DeleteFcn callback will be triggered instead of DestroyFcn. To trigger DestroyFcn callback, you can try to delete block by 'delete_block' command or close the model.
One more thing to mention is that after deleting a block graphically, it is true that you can not get the block handle anymore. However, it does not mean that the block is destroyed from memory, e.g. you can undo the deletion and get the block back to model.
Thanks,
Wei
2 Kommentare
Wei Jiang
am 20 Nov. 2020
Hi P.L.,
It is an expected behavior that the block handle is still valid when DeleteFcn is called.
Unfortunately, we do not have a "PostDeleteFcn" callback at this time. You might have to modify your callback script manully to achieve your goal.
Thanks,
Wei
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Model, Block, and Port Callbacks finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!