Using subsystem compiled sample time parameter in executing model
4 次查看(过去 30 天)
显示 更早的评论
Hello, I am wondering if there is any way to automatically get the CompiledSampleTime parameter for a discrete fixed-step subsystem at compilation time in Simulink, and then use the value as a constant within the model during its execution?
For example, I can get the model fundamental sample time and use it during execution in this way by inserting the line of code eval( get_param(bdroot, 'FixedStep') ); into a constant block.
Is there any similar method to get the compiled sample time of a subsystem? I thought perhaps setting the sample time of a constant block to inherited (-1), placing it inside the subsystem, and using something like eval( get_param(gcs, 'CompiledSampleTime') ); as the constant value might yield what I am looking for. But alas it does not.
Edit: This would obviously only apply to multi-rate models
0 个评论
采纳的回答
Vaibhav Awale
2016-1-14
Hi,
Systems don't have the property called 'CompiledSampleTime'. Hence instead of 'gcs', using 'gcb' will give the required result.
get_param(gcb,'CompiledSampleTime');
However it is always better to mention the block name instead of "gcb" because "gcb" remembers the last block you had clicked on and it will output sample time of that block.
Hope this helps,
Regards,
Vaibhav
1 个评论
Petr75661
2021-9-20
If the block is configured to inherit the sample time, then the function get_param(gcb,'CompiledSampleTime') is useless because it will always return -1 when blocks' callbacks are executed during the initialization phase of simulation run and code generation (tested in R2019a).
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Schedule Model Components 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!