Is it possible in SimEvents to define entity attributes using a MATLAB script?
1 次查看(过去 30 天)
显示 更早的评论
Is it possible in SimEvents to define entity attributes using a MATLAB script?
I know how to define attributes manually in the Entity type tab of the Entity Generator block. I also know how to write MATLAB code in the Event actions tab to change the value of previously defined attribute. I want to use a MATLAB script to define the attributes so that I can skip the manual process of defining attributes and setting their initial values each time I use a new Entity Generator block.
Thank you.
0 个评论
采纳的回答
Laurent Royer
2024-6-7
I see several ways to achieve this.
1. You could store your Entity Generator block with the required Enty Type definition in a Simulink library. So each time you pick the block from the library, it is already configured as expected.
2. With a script, you could find all existing Entity Generator blocks in your current model and modify all Entity Type definitions:
blocks = string(find_system(bdroot, "BlockType", "EntityGenerator"));
for idx = 1:numel(blocks)
set_param(blocks(idx), ...
"EntityType", "Structured", ...
"AttributeName", "data1|data2|data3", ...
"AttributeInitialValue", "1|2|3");
end
3. You could use a Bus object to store the Entity type. However it doesn't allow to define a non-zero initial value, and you still have to use an event action to set the initial value (can also be done by script though).
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Discrete-Event Simulation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!