Clear Filters
Clear Filters

distinguish between reference model and reference subsystem programmatically

3 views (last 30 days)
Greetings,
Is there a way to distinguish between the various model (block diagram level) types which type of model it is? Note I'm not talking about block level, rather model level. I can't seem to find an appropriate parameter. For instance, BlockDiagramType is model for all but libraries. find_mdlrefs returns both ref models and ref subsystem models.
Thanks,
-Chris

Accepted Answer

UDAYA PEDDIRAJU
UDAYA PEDDIRAJU on 3 Nov 2023
Hello Chris,
I understand that you are trying to distinguish between reference models and reference subsystems at the model level. Ther’s no direct function to differentiate between these two, there are certain characteristics unique to each that might be used for this purpose:
  1. Model Reference: These have fixed signal interfaces, such as data types and signal dimensions. They can also have their own Configuration Parameters and Model Workspace. These models are typically used to represent reusable components or subsystems that are referenced by other models.
  2. Subsystem Reference: The interfaces for these do not need to be fixed. They do not have their own Configuration Parameters and Model Workspace, instead inheriting these from the parent model.
By examining these characteristics, you can programmatically differentiate between reference models and reference subsystems. You can check if a block has fixed signal interfaces, Configuration Parameters, and a separate Model Workspace to identify it as a reference model. Conversely, if a block inherits its interfaces and does not have its own Configuration Parameters and Model Workspace, it is likely a reference subsystem.
I hope this helps!
  1 Comment
checker
checker on 8 Nov 2023
Thanks Udaya. Currently our use of these blocks have them in a custom library with other distinguishing properties, and I use these, similar to your suggestion. From a code maintenance and portability perspective, I was hoping for something more inherent in the blocks but you've confirmed that there isn't so thanks for that.

Sign in to comment.

More Answers (0)

Categories

Find more on Create Large-Scale Model Components in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!