Main Content

systemcomposer.allocation.AllocationSet.find

Find loaded allocation set

Since R2020b

    Description

    example

    allocSet = systemcomposer.allocation.AllocationSet.find(name) finds a loaded allocation set in the global name space with the given name name.

    Examples

    collapse all

    Create two new models with a component each.

    mSource = systemcomposer.createModel("Source_Model_Allocation");
    systemcomposer.openModel("Source_Model_Allocation");
    sourceComp = addComponent(get(mSource,"Architecture"),"Source_Component");
    mTarget = systemcomposer.createModel("Target_Model_Allocation");
    systemcomposer.openModel("Target_Model_Allocation");
    targetComp = addComponent(get(mTarget,"Architecture"),"Target_Component");

    Create the allocation set MyNewAllocation.

    allocSet = systemcomposer.allocation.createAllocationSet("MyNewAllocation",...
         "Source_Model_Allocation","Target_Model_Allocation");

    Find the allocation set.

    allocSetFind = systemcomposer.allocation.AllocationSet.find("MyNewAllocation")
    allocSetFind = 
    
      AllocationSet with properties:
    
                Name: 'MyNewAllocation'
         Description: ''
           Scenarios: [1×1 systemcomposer.allocation.AllocationScenario]
               Dirty: 1
        NeedsRefresh: 0
                UUID: '96e34f0d-fceb-4fb0-872d-2e588308d0e9'
         SourceModel: [1×1 systemcomposer.arch.Model]
         TargetModel: [1×1 systemcomposer.arch.Model]

    Input Arguments

    collapse all

    Name of allocation set, specified as a character vector or string.

    Example: "MyNewAllocation"

    Data Types: char | string

    Output Arguments

    collapse all

    Allocation set, returned as a systemcomposer.allocation.AllocationSet object.

    More About

    collapse all

    Definitions

    TermDefinitionApplicationMore Information
    allocation

    An allocation establishes a directed relationship from architectural elements — components, ports, and connectors — in one model to architectural elements in another model.

    Resource-based allocation allows you to allocate functional architectural elements to logical architectural elements and logical architectural elements to physical architectural elements.

    allocation scenario

    An allocation scenario contains a set of allocations between a source and a target model.

    Allocate between model elements in an allocation scenario. The default allocation scenario is called Scenario 1.

    Systems Engineering Approach for SoC Applications
    allocation set

    An allocation set consists of one or more allocation scenarios that describe various allocations between a source and a target model.

    Create an allocation set with allocation scenarios in the Allocation Editor. Allocation sets are saved as MLDATX files.

    Version History

    Introduced in R2020b