Customize block callbacks error message

4 visualizaciones (últimos 30 días)
langrg
langrg el 11 de Mzo. de 2020
Editada: langrg el 20 de Mzo. de 2020
Hello,
I want to specify the InitFcn of a Simulink block, for example 'MyInitFcn'. 'MyInitFcn' is an m file (function) that contains tests, and raises errors (using error Matlab function) with custom error messages, if those tests are bad.
When I run my Simulink (using run Matlab command), Simulink give me back an error window, but the error message does not contain my custom error message. It (more or less) gives me an message that the error comes from the InitFcn, but nothing about my custom error message .
I would like that, at least, part of Simulink error window message contains my custom error message. If it could only contain my custom error message, it would be better again.
Does anyone know how to solve my trouble?
Thanks!
GL.

Respuestas (1)

Shresth Sharma
Shresth Sharma el 18 de Mzo. de 2020
Hi,
It is my understanding that you are trying to use ‘InitFcn’ callback from the model properties callback of the Simulink to run checks and give custom error messages. The ‘InitFcn’ callback should be used for declaring the variables in the workspace which are not defined and are needed at the time when you run the model. ‘InitFcn’ callback should not be used for checking the model or for commands that simulate the model. Try using ‘StopFcn’ callback for this task. The StopFcn callback will execute when a simulation stops by either running to completion or is stopped by the user.
Go through these documentation links for further details
  1 comentario
langrg
langrg el 20 de Mzo. de 2020
Editada: langrg el 20 de Mzo. de 2020
Hi ,
No, I'm not talking about 'InitFcn' of a model, but 'InitFcn' of a Simulink block (right click, Properties/Callbacks).
I want to check parameters of this block, before simulation starts (just before compilation, when you call 'run' or 'sim' Matlab function).
Thanks!

Iniciar sesión para comentar.

Categorías

Más información sobre Model, Block, and Port Callbacks en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by