possibility to create "Enbaled" subsystem
显示 更早的评论
Hello all,
I need to create the subsystem which needs to be optionally Enable/Disabled before simulation starts but there si no need to be enabled/disable during the simulation ...
What are the possiblities to create a such subsystem in Simulink?
Thank you very much for your suggestion.
采纳的回答
更多回答(1 个)
Paul
2025-1-15
0 个投票
One option would be to create the subsystem as an Enabled subsystem and then control the enable port with a signal that you control from the worksapce (or from however you're injecting data into the simulation) such that the block is either enabled or disabled for the entire simulation. Keep in mind that the block outputs are still going to be generated for the entire simulation.
Another option would be to not use an Enabled subsystem and instead use a call to set_param to set the Commented property of the subsystem to the behavior you want ('off', 'on', or 'through'). I believe that toggling this parameter is a structural change and so will cause the simulation to be rebuilt/recompiled when that parameter changes.
类别
在 帮助中心 和 File Exchange 中查找有关 Component-Based Modeling 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!