addPhysicalInterface - Create named physical interface in data dictionary - MATLAB (original) (raw)
Main Content
Create named physical interface in data dictionary
Since R2021b
Syntax
Description
[interface](#mw%5F840317fa-0490-4c95-a24b-57309df11b34) = addPhysicalInterface([dictionary](#mw%5F09f2977b-3416-4031-b921-85d0af187cc4%5Fsep%5Fmw%5F60143387-11ee-4c35-87c7-e41014857fcf),[name](#mw%5Fcf6c8fc4-2e74-4cbd-a731-236a7f863acb))
adds the physical interface specified by the name name
to the data dictionary dictionary
.
To remove an interface, use the removeInterface function.
Examples
Create a data dictionary, then add a physical interfacenewInterface
.
dictionary = systemcomposer.createDictionary("new_dictionary.sldd"); interface = addPhysicalInterface(dictionary,"newInterface")
Create a new model and link the data dictionary to the model. Then, open the Interface Editor to view the new interface.
arch = systemcomposer.createModel("newModel"); systemcomposer.openModel("newModel"); linkDictionary(arch,"new_dictionary.sldd");
Input Arguments
Name of new physical interface, specified as a character vector or string. This name must be a valid MATLAB® identifier.
Example: "newInterface"
Data Types: char
| string
Output Arguments
More About
Term | Definition | Application | More Information |
---|---|---|---|
Physical subsystem | A physical subsystem is a Simulink® subsystem with Simscape™ connections. | A physical subsystem with Simscape connections uses a physical network approach suited for simulating systems with real physical components and represents a mathematical model. | Implement Component Behavior Using Simscape |
Physical port | A physical port represents a Simscape physical modeling connector port called a Connection Port (Simscape). | Use physical ports to connect components in an architecture model or to enable physical systems in a Simulink subsystem. | Define Physical Ports on Component |
Physical connector | A physical connector can represent a nondirectional conserving connection of a specific physical domain. Connectors can also represent physical signals. | Use physical connectors to connect physical components that represent features of a system to simulate mathematically. | Architecture Model with Simscape Behavior for a DC Motor |
Physical interface | A physical interface defines the kind of information that flows through a physical port. The same interface can be assigned to multiple ports. A physical interface is a composite interface equivalent to a Simulink.ConnectionBus object that specifies a number of Simulink.ConnectionElement objects. | Use a physical interface to bundle physical elements to describe a physical model using at least one physical domain. | Specify Physical Interfaces on Ports |
Physical element | A physical element describes the decomposition of a physical interface. A physical element is equivalent to a Simulink.ConnectionElement object. | Define the Type of a physical element as a physical domain to enable use of that domain in a physical model. | Describe Component Behavior Using Simscape |
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 R2021b
See Also
Functions
- addInterface | moveInterface | removeInterface | createInterface | setName | setInterface | getInterface | getInterfaceNames | addElement | removeElement | getElement | setName | setType | createOwnedType | getSourceElement | getDestinationElement | systemcomposer.createDictionary | systemcomposer.openDictionary | saveToDictionary | isOpen | getFileName | linkDictionary | unlinkDictionary | addReference | removeReference | makeOwnedInterfaceShared | addValueType | createInterface | setName | setDataType | setDimensions | setUnits | setComplexity | setMinimum | setMaximum | setDescription | addServiceInterface | setFunctionPrototype | getFunctionArgument | setAsynchronous | systemcomposer.getSelectedInterfaces | IsAdapterComponent
Objects
- systemcomposer.ValueType | systemcomposer.interface.DataInterface | systemcomposer.interface.DataElement | systemcomposer.interface.PhysicalDomain | systemcomposer.interface.PhysicalInterface | systemcomposer.interface.PhysicalElement | systemcomposer.interface.Dictionary | systemcomposer.interface.ServiceInterface | systemcomposer.interface.FunctionArgument | systemcomposer.interface.FunctionElement | addServiceInterface | setFunctionPrototype | getFunctionArgument | setAsynchronous