systemcomposer.allocation.open - Open allocation set in Allocation Editor - MATLAB (original) (raw)

Main Content

Open allocation set in Allocation Editor

Since R2020b

collapse all in page

Syntax

[allocSet = systemcomposer.allocation.open(name)](#d126e145265)

Description

`allocSet` = systemcomposer.allocation.open([name](#mw%5F0b53a448-db5a-46e6-be68-258ea4a26eb9)) opens allocation set specified by name in the Allocation Editor. The allocation set must be on the MATLAB® path.

example

Examples

collapse all

Create two new models with one 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 an allocation set named MyNewAllocation.

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

Get the default allocation scenario.

defaultScenario = getScenario(allocSet,"Scenario 1");

Allocate components between models.

allocation = allocate(defaultScenario,sourceComp,targetComp);

Save the allocation set.

save(allocSet)

Open the Allocation Editor with the allocation set highlighted.

systemcomposer.allocation.open(allocSet);

Input Arguments

collapse all

Name of allocation set, specified as an systemcomposer.allocation.AllocationSet object, character vector, or string.

Data Types: char | string

More About

collapse all

Term Definition Application More 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. Create and Manage Allocations InteractivelyCreate and Manage Allocations Programmatically
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. Establish Traceability Between Architectures and RequirementsAllocate Architectures in Tire Pressure Monitoring System

Version History

Introduced in R2020b

See Also

Tools

Blocks

Objects

Functions

Topics