Find if instance is port instance
Load the Small UAV model, create an architecture instance, and query
whether the instance modified by the Ports property is a port
instance.
scExampleSmallUAV model = systemcomposer.loadModel('scExampleSmallUAVModel'); instance = instantiate(model.Architecture,'UAVComponent','NewInstance'); flag = isPort(instance.Ports(1))
flag = logical 1
instance — Element instanceElement instance, specified by a systemcomposer.analysis.ArchitectureInstance, systemcomposer.analysis.ComponentInstance, systemcomposer.analysis.PortInstance, or systemcomposer.analysis.ConnectorInstance object.
flag — Whether instance is porttrue or 1 | false or 0Whether instance is port, returned as a logical 1 (true) if the
instance is a port or 0 (false) if the instance is not a port.
Data Types: logical
| Term | Definition | Application | More Information |
|---|---|---|---|
| analysis | Analysis is a method for quantitatively evaluating an architecture for certain characteristics. Static analysis analyzes the structure of the system. Static analysis uses an analysis function and parametric values of properties captured in the system model. | Use analysis to calculate overall reliability, mass roll-up, performance, or thermal characteristics of a system, or to perform a SWaP analysis. | Analyze Architecture |
| instance | An instance is an occurrence of an architecture model at a given point of time. | You can update an instance with changes to a model, but the instance will not update with changes in active variants or model references. You can use an instance, saved in an .MAT file, of a System Composer™ architecture model for analysis. | Create a Model Instance for Analysis |
| 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. You can represent specific architectures using alternate views. | Different types of architectures describe different aspects of systems:
| Compose Architecture Visually |
| model | A System Composer model is the file that contains architectural information, including components, ports, connectors, interfaces, and behaviors. | Perform operations on a model:
System Composer models are stored as | Create an Architecture Model |
| 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 architecture 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. | 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 |