connect
Syntax
Description
connects the unconnected output ports of the source component
connectors
= connect(srcComponent
,destComponent
)srcComponent
to the unconnected input ports of the destination
component destComponent
based on matching port names, and returns a
handle to the connector. For physical connections, the connectors are nondirectional so the
source and destination components can be interchanged.
To remove a connector, use the destroy
function.
connects arrays of components in the architecture.connectors
= connect(arch
,[srcComponent
,srcComponent
,...],[destComponent
,destComponent
,...])
connects a parent architecture input port to a destination child component.connectors
= connect(arch
,[],destComponent
)
connects a source child component to a parent architecture output port.connectors
= connect(arch
,srcComponent
,[])
connects a source port and a destination port, or connects two nondirectional physical
ports.connectors
= connect(srcPort
,destPort
)
connects two ports and applies a stereotype to the connector.connectors
= connect(srcPort
,destPort
,stereotype
)
specifies options using one or more name-value arguments in addition to the input arguments
in previous syntaxes.connectors
= connect(___,Name,Value
)
Examples
Connect System Composer Components
Create and connect two components.
Create a top-level architecture model.
modelName = "archModel"; arch = systemcomposer.createModel(modelName,true); rootArch = get(arch,"Architecture");
Create two new components.
names = ["Component1","Component2"]; newComponents = addComponent(rootArch,names);
Add ports to the components.
outPort1 = addPort(newComponents(1).Architecture,"testSig","out"); inPort1 = addPort(newComponents(2).Architecture,"testSig","in");
Connect the components.
conns = connect(newComponents(1),newComponents(2));
Improve the model layout.
Simulink.BlockDiagram.arrangeSystem(modelName)
Connect System Composer Ports
Create and connect two ports.
Create a top-level architecture model.
modelName = "archModel"; arch = systemcomposer.createModel(modelName,true); rootArch = get(arch,"Architecture");
Create two new components.
names = ["Component1","Component2"]; newComponents = addComponent(rootArch,names);
Add ports to the components.
outPort1 = addPort(newComponents(1).Architecture,"testSig","out"); inPort1 = addPort(newComponents(2).Architecture,"testSig","in");
Extract the component ports.
srcPort = getPort(newComponents(1),"testSig"); destPort = getPort(newComponents(2),"testSig");
Connect the ports.
conns = connect(srcPort,destPort);
Improve the model layout.
Simulink.BlockDiagram.arrangeSystem(modelName)
Connect by Selecting Destination Element
Create and connect a destination architecture port interface element to a component.
Create a top-level architecture model.
modelName = "archModel"; arch = systemcomposer.createModel(modelName,true); rootArch = get(arch,"Architecture");
Create a new component.
newComponent = addComponent(rootArch,"Component1");
Add destination architecture ports to the component and the architecture.
outPortComp = addPort(newComponent.Architecture,"testSig","out"); outPortArch = addPort(rootArch,"testSig","out");
Extract corresponding port objects.
compSrcPort = getPort(newComponent,"testSig"); archDestPort = getPort(rootArch,"testSig");
Add an interface and an interface element, and associate the interface with the architecture port.
interface = arch.InterfaceDictionary.addInterface("interface"); interface.addElement("x"); archDestPort.setInterface(interface);
Select an element on the architecture port and establish a connection.
conns = connect(compSrcPort,archDestPort,DestinationElement="x");
Improve the model layout.
Simulink.BlockDiagram.arrangeSystem(modelName)
Input Arguments
arch
— Architecture
architecture object
Architecture, specified as a systemcomposer.arch.Architecture
object.
srcComponent
— Source component
component object | variant component object
Source component, specified as a systemcomposer.arch.Component
or systemcomposer.arch.VariantComponent
object.
destComponent
— Destination component
component object | variant component object
Destination component, specified as a systemcomposer.arch.Component
or systemcomposer.arch.VariantComponent
object.
srcPort
— Source port
port object
Source port to connect, specified as a systemcomposer.arch.ComponentPort
or systemcomposer.arch.ArchitecturePort
object.
destPort
— Destination port
port object
Destination port to connect, specified as a systemcomposer.arch.ComponentPort
or systemcomposer.arch.ArchitecturePort
object.
stereotype
— Stereotype
character vector | string
Stereotype to apply to the connection, specified in the form
"<profile>.<stereotype>"
.
Data Types: char
| string
Name-Value Arguments
Specify optional pairs of arguments as
Name1=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: connect(archPort,compPort,SourceElement="a")
Stereotype
— Option to apply stereotype to connector
character vector | string
Option to apply stereotype to connector, specified in the form
"<profile>.<stereotype>"
.
This name-value argument applies only when you connect components.
Example: conns =
connect(srcComp,destComp,Stereotype="GeneralProfile.ConnStereotype")
Data Types: char
| string
Rule
— Option to specify rule for connections
"name"
(default) | "interface"
Option to specify rule for connections, specified as either
"name"
based on the name of ports or
"interface"
based on the interface name on ports.
This name-value argument applies only when you connect components.
Example: conns =
connect([srcComp1,srcComp2],[destComp1,destComp2],Rule="interface")
Data Types: char
| string
MultipleOutputConnectors
— Option to allow multiple destination components
false
or 0 (default) | true
or 1
Option to allow multiple destination components for the same source component, specified as a logical.
This name-value argument applies only when you connect components.
Example: conns =
connect(srcComp,[destComp1,destComp2],MultipleOutputConnectors=true)
Data Types: logical
SourceElement
— Option to select source element for connection
character vector | string
Option to select source element for connection, specified as a character vector or string of the name of the data element.
This name-value argument applies only when you connect ports.
Example: conns =
connect(archSrcPort,compDestPort,SourceElement="x")
Data Types: char
| string
DestinationElement
— Option to select destination element for connection
character vector | string
Option to select destination element for connection, specified as a character vector or string of the name of the data element.
This name-value argument applies only when you connect ports.
Example: conns =
connect(compSrcPort,archDestPort,DestinationElement="x")
Data Types: char
| string
Routing
— Option to specify type of automatic line routing
"smart"
(default) | "on"
| "off"
Option to specify type of automatic line routing, specified as one of the following:
"smart"
— Use automatic line routing that takes the best advantage of the blank spaces on the canvas and avoids overlapping other lines and labels."on"
— Use automatic line routing."off"
— Use no automatic line routing.
Example: conns =
connect(srcPort,destPort,Routing="on")
Data Types: char
| string
Output Arguments
connectors
— Created connections
array of connections
Created connections, returned as an array of systemcomposer.arch.Connector
or systemcomposer.arch.PhysicalConnector
objects.
More About
Definitions
Term | Definition | Application | More Information |
---|---|---|---|
architecture | A System Composer™ architecture represents a system of components and how they interface with each other structurally and behaviorally. |
Different types of architectures describe different aspects of systems. You can use views to visualize a subset of components in an architecture. You can define parameters on the architecture level using the Parameter Editor. | |
model | A System Composer model is the file that contains architectural information, including components, ports, connectors, interfaces, and behaviors. |
Perform operations on a model:
A System Composer model is stored as an SLX file. | Create Architecture Model with Interfaces and Requirement Links |
component | A component is a nontrivial, nearly independent, and replaceable part of a system that fulfills a clear function in the context of an architecture. A component defines an architectural element, such as a function, a system, hardware, software, or other conceptual entity. A component can also be a subsystem or subfunction. | Represented as a block, a component is a part of an architecture model that can be separated into reusable artifacts. Transfer information between components with:
| Components |
port | A port is a node on a component or architecture that represents a point of interaction with its environment. A port permits the flow of information to and from other components or systems. |
There are different types of ports:
| Ports |
connector | Connectors are lines that provide connections between ports. Connectors describe how information flows between components or architectures. | A connector allows two components to interact without defining the nature of the interaction. Set an interface on a port to define how the components interact. | Connections |
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 | 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 | Define the | Describe Component Behavior Using Simscape |
Version History
Introduced in R2019a
Commande MATLAB
Vous avez cliqué sur un lien qui correspond à cette commande MATLAB :
Pour exécuter la commande, saisissez-la dans la fenêtre de commande de MATLAB. Les navigateurs web ne supportent pas les commandes MATLAB.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)