addElement - Add element - MATLAB (original) (raw)

Syntax

Description

[element](#mw%5Fab462932-b7d4-4db0-82ae-3f12c9e36be9%5Fsep%5Fmw%5Feca6e1e8-5e32-4a16-9dda-1d3796960085) = addElement([interface](#mw%5Fab462932-b7d4-4db0-82ae-3f12c9e36be9%5Fsep%5Fmw%5F02edae0e-7afd-4ef7-8636-5dcb2766ae5a),[name](#mw%5Fab462932-b7d4-4db0-82ae-3f12c9e36be9%5Fsep%5Fmw%5Fd2348d62-94a2-457c-8d1a-6f2b3674968d)) adds an element to an interface with default properties.

To remove an element from an interface, use the removeElement function.

[element](#mw%5Fab462932-b7d4-4db0-82ae-3f12c9e36be9%5Fsep%5Fmw%5Feca6e1e8-5e32-4a16-9dda-1d3796960085) = addElement([interface](#mw%5Fab462932-b7d4-4db0-82ae-3f12c9e36be9%5Fsep%5Fmw%5F02edae0e-7afd-4ef7-8636-5dcb2766ae5a),[name](#mw%5Fab462932-b7d4-4db0-82ae-3f12c9e36be9%5Fsep%5Fmw%5Fd2348d62-94a2-457c-8d1a-6f2b3674968d),[Name=Value](#namevaluepairarguments)) sets the properties of the element using name-value arguments.

example

Examples

collapse all

Create a new model newModel. Add a data interfacenewInterface to the dictionary of the model. Then, add a data elementnewElement with data type double.

arch = systemcomposer.createModel("newModel"); interface = addInterface(arch.InterfaceDictionary,"newInterface"); element = addElement(interface,"newElement",DataType="double")

element =

DataElement with properties:

  Interface: [1×1 systemcomposer.interface.DataInterface]
       Name: 'newElement'
       Type: [1×1 systemcomposer.ValueType]
       UUID: '2d267175-33c2-43a9-be41-a1be2774a3cf'
ExternalUID: ''

Create a new model named 'newModel'. Add a physical interface 'newInterface' to the dictionary of the model. Then, add a physical element 'newElement' with type'electrical.electrical'. Change the physical domain type to'electrical.six_phase'.

arch = systemcomposer.createModel('newModel'); interface = addPhysicalInterface(arch.InterfaceDictionary,'newInterface'); element = addElement(interface,'newElement','Type','electrical.electrical'); element.Type = 'electrical.six_phase'; element

element =

PhysicalElement with properties:

       Name: 'newElement'
       Type: [1×1 systemcomposer.interface.PhysicalDomain]
  Interface: [1×1 systemcomposer.interface.PhysicalInterface]
       UUID: '32e4c51e-e567-42f1-b44a-2d2fcdbb5c25'
ExternalUID: ''

Input Arguments

collapse all

Element name, specified as a character vector or string. An element name must be a valid MATLAB® variable name.

Data Types: char | string

Name-Value Arguments

collapse all

Specify optional pairs of arguments asName1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

Before R2021a, use commas to separate each name and value, and enclose Name in quotes.

Example: addElement(interface,"newElement",DataType="double",Dimensions="2",Units="m/s",Complexity="complex",Minimum="0",Maximum="100",Description="Maintain altitude")

Data type, specified as a character vector or string for a valid MATLAB data type. The default value is double.

Example: addElement(interface,"newElement",DataType="double")

Data Types: char | string

Dimensions, specified as a character vector or string. The default value is1.

Example: addElement(interface,"newElement",Dimensions="2")

Data Types: char | string

Units, specified as a character vector or string.

Example: addElement(interface,"newElement",Units="m/s")

Data Types: char | string

Complexity, specified as a character vector or string. The default value isreal. Other possible values are complex andauto.

Example: addElement(interface,"newElement",Complexity="complex")

Data Types: char | string

Minimum, specified as a character vector or string.

Example: addElement(interface,"newElement",Minimum="0")

Data Types: char | string

Maximum, specified as a character vector or string.

Example: addElement(interface,"newElement",Maximum="100")

Data Types: char | string

Description, specified as a character vector or string.

Example: addElement(interface,"newElement",Description="Maintain altitude")

Data Types: char | string

Physical domain of physical element, specified as a character vector or string of a partial physical domain name. For a list of valid physical domain names, see Domain-Specific Line Styles (Simscape).

Example: addElement(interface,"newElement",Type="electrical.six_phase")

Data Types: char | string

Output Arguments

More About

collapse all

Term Definition Application More Information
Data dictionary A data dictionary is a repository of data relevant to your model. The Architectural Data section of a data dictionary stores shared definitions used in Simulink® and architecture model interfaces, such as port interfaces, data types, and system wide constants. For more information, see What Is a Data Dictionary? You can save local interfaces on a System Composer™ model to the Architectural Data section of a Simulink data dictionary using the Interface Editor. In addition to the Interface Editor, you can also use the Architectural Data Editor to manage and modify interfaces and value types. Manage Interfaces with Data DictionariesReference Data DictionariesStore Shared Data in Architectural Data Section
Data interface A data interface defines the kind of information that flows through a port. The same interface can be assigned to multiple ports. A data interface can be composite, meaning that it can include data elements that describe the properties of an interface signal. Data interfaces represent the information that is shared through a connector and enters or exits a component through a port. Use the Interface Editor to create and manage data interfaces and data elements and store them in a data dictionary for reuse between models. Create Architecture Model with Interfaces and Requirement LinksDefine Port Interfaces Between Components
Data element A data element describes a portion of an interface, such as a communication message, a calculated or measured parameter, or other decomposition of that interface. Data interfaces are decomposed into data elements that can represent pins or wires in a connector or harness, messages transmitted across a bus, and data structures shared between components. Create InterfacesAssign Interfaces to Ports
Value type A value type can be used as a port interface to define the atomic piece of data that flows through that port and has a top-level type, dimension, unit, complexity, minimum, maximum, and description. You can also assign the type of data elements in data interfaces to value types. Add value types to data dictionaries using the Interface Editor so that you can reuse the value types as interfaces or data elements. Create Value Types as Interfaces
Owned interface An owned interface is an interface that is local to a specific port and not shared in a data dictionary or the model dictionary. Create an owned interface to represent a value type or data interface that is local to a port. Define Owned Interfaces Local to Ports
Adapter An adapter connects two components with incompatible port interfaces by mapping between the two interfaces. An adapter can act as a unit delay, rate transition, or merge. You can also use an adapter for bus creation. Use the Adapter block to implement an adapter. With an adapter, on the Interface Adapter dialog box, you can: create and edit mappings between input and output interfaces, apply an interface conversionUnitDelay to break an algebraic loop, apply an interface conversionRateTransition to reconcile different sample time rates for reference models, apply an interface conversion Merge to merge two or more message or signal lines, and when output interfaces are undefined, you can use input interfaces in bus creation mode to author owned output interfaces. Interface AdapterAdapter

Version History

Introduced in R2019a

See Also

Functions

Objects

Blocks

Tools

Topics