createSimulinkBehavior - Create Simulink behavior and link to component - MATLAB (original) (raw)
Create Simulink behavior and link to component
Syntax
Description
createSimulinkBehavior([component](#mw%5Ffae70433-dbf1-4e16-a2fc-57a8a5e343a5),[modelName](#mw%5Fd08a9790-297e-4267-9c3e-ad5af58a8f88%5Fsep%5Fmw%5Fa52e9e5b-e68d-4fb0-b6da-3ff913e42151))
creates a new Simulink® model, modelName
, with the same interfaces as the component component
and links the component to the new model. The component must have no children.
Note
Components with physical ports cannot be saved as architecture models, model references, software architectures, or Stateflow® chart behaviors. Components with physical ports can only be saved as subsystem references or as subsystem component behaviors.
If no functions are present in software architectures, this syntax creates a rate-based behavior. If functions are present, the syntax creates an export-function behavior.
createSimulinkBehavior([component](#mw%5Ffae70433-dbf1-4e16-a2fc-57a8a5e343a5),[modelName](#mw%5Fd08a9790-297e-4267-9c3e-ad5af58a8f88%5Fsep%5Fmw%5Fa52e9e5b-e68d-4fb0-b6da-3ff913e42151),"Type",[type](#mw%5F12be8c14-dfc5-41cc-a135-e5fb4ce3c4b1))
creates a new Simulink model or subsystem behavior, modelName
, with the same interfaces as the component component
and links the component to the new model. For more information, see Create Referenced Simulink Behavior Model.
Use this syntax to convert a subsystem component to a subsystem reference.
createSimulinkBehavior([component](#mw%5Ffae70433-dbf1-4e16-a2fc-57a8a5e343a5),"Type",[type](#mw%5F12be8c14-dfc5-41cc-a135-e5fb4ce3c4b1))
creates a subsystem component behavior that is part of the parent model. The connections, interfaces, requirement links, and stereotypes of the component are preserved. The component must have no subcomponents and must not already be linked to a model. For more information, see Create Simulink Behavior Using Subsystem Component.
createSimulinkBehavior([component](#mw%5Ffae70433-dbf1-4e16-a2fc-57a8a5e343a5),[modelName](#mw%5Fd08a9790-297e-4267-9c3e-ad5af58a8f88%5Fsep%5Fmw%5Fa52e9e5b-e68d-4fb0-b6da-3ff913e42151),"BehaviorType",[behavior](#mw%5Ffd02b982-415e-4698-8ee6-bb3495814259))
creates a new Simulink rate-based or export-function behavior, modelName
, and links the software component to the new model. You can create rate-based or export-function behaviors for software architectures.
Examples
Create a Simulink model behavior for the component robotComp
inRobot.slx
and link the model file to the component.
Create a model archModel
.
model = systemcomposer.createModel("archModel"); systemcomposer.openModel("archModel"); arch = get(model,"Architecture");
Add two components to the model electricComp
and robotComp
. Rearrange the model.
names = ["electricComp","robotComp"]; comp = addComponent(arch,names); Simulink.BlockDiagram.arrangeSystem("archModel")
Create a Simulink behavior model for the robotComp
component so the component references the Simulink model Robot.slx
.
createSimulinkBehavior(comp(2),"Robot")
Create a Simulink subsystem behavior for the component robotComp
inRobot.slx
and link the subsystem file to the component.
Create a model archModel
.
model = systemcomposer.createModel("archModel"); systemcomposer.openModel("archModel"); arch = get(model,"Architecture");
Add two components to the model electricComp
and robotComp
. Rearrange the model.
names = ["electricComp","robotComp"]; comp = addComponent(arch,names); Simulink.BlockDiagram.arrangeSystem("archModel")
Create a Simulink subsystem reference behavior for the robotComp
component so the component references the Simulink subsystem Robot.slx
.
createSimulinkBehavior(comp(2),"Robot",Type="SubsystemReference")
Create a Simulink subsystem behavior for the component robotComp
inRobot.slx
and link the subsystem file to the component.
Create a model archModel
.
model = systemcomposer.createModel("archModel"); systemcomposer.openModel("archModel"); arch = get(model,"Architecture");
Add two components to the model electricComp
and robotComp
. Rearrange the model.
names = ["electricComp","robotComp"]; comp = addComponent(arch,names); Simulink.BlockDiagram.arrangeSystem("archModel")
Create a Simulink subsystem component behavior for the robotComp
component that is part of the parent model.
createSimulinkBehavior(comp(2),Type="Subsystem")
Convert the subsystem component to a subsystem reference component behavior so the component references the Simulink subsystem Robot.slx
.
createSimulinkBehavior(comp(2),"Robot",Type="SubsystemReference")
Create a Simulink model with export-function behavior myBehaviorModel.slx
for the software component named C1
and link the model to the component.
Create a software architecture model namedmySoftwareModel
.
model=systemcomposer.createModel("mySoftwareModel","SoftwareArchitecture"); systemcomposer.openModel("mySoftwareModel"); arch = get(model,"Architecture");
Add a component C1
to the model.
comp = addComponent(arch,"C1");
Create a Simulink model with an export-function behavior namedmyBehaviorModel.slx
that is referenced by the componentC1
.
createSimulinkBehavior(comp,"myBehaviorModel",BehaviorType="ExportFunction")
Input Arguments
System or software architecture component with no children, specified as a systemcomposer.arch.Component object. This component can also be specified as a subsystem component to be converted to a subsystem reference.
Name of model, specified as a character vector or string.
Example: "exMobileRobot"
Data Types: char
| string
Component behavior, specified as one of these values:
"RateBased"
to create a rate-based component behavior"ExportFunction"
to create an export-function component behavior
Data Types: char
| string
Component behavior, specified as one of these values:
"ModelReference"
to create a Simulink model reference component behavior"SubsystemReference"
to create a Simulink subsystem reference component behavior"Subsystem"
to create a Simulink subsystem component behavior
Data Types: char
| string
More About
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. | Compose Architectures VisuallyAuthor Parameters in System Composer Using Parameter Editor |
Root | A root is at the top of an architecture hierarchy. A root architecture has a boundary defined by its architecture ports that surround the system of interest. | The root architecture has a system boundary surrounding your architecture model. You can add architecture ports that define interfaces across the boundary. | Compose Architectures Visually |
Model | A System Composer model is the file that contains architectural information, such as components, ports, connectors, interfaces, and behaviors. | Perform operations on a model including extracting root-level architecture, applying profiles, linking interface data dictionaries, or generating instances from model architecture. A System Composer model is stored as an SLX file. | Create Architecture Model with Interfaces and Requirement Links |
Component | A component is a 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, another 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 port interfaces using the Interface Editor, and parameters using the Parameter Editor. | Compose Architectures Visually |
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. | Component ports are interaction points on the component to other components. Architecture ports are ports on the boundary of the system, whether the boundary is within a component or the overall architecture model. The root architecture has a boundary defined by its ports. | Compose Architectures Visually |
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. | Compose Architectures Visually |
Term | Definition | Application | More Information |
---|---|---|---|
Software architecture | A software architecture is a specialization of an architecture for software-based systems, including the description of software compositions, component functions, and their scheduling. | Use software architectures in System Composer to author software architecture models composed of software components, ports, and interfaces. Design your software architecture model, define the execution order of your component functions, simulate your design in the architecture level, and generate code. | Author Software ArchitecturesSimulate and Deploy Software Architectures |
Software component | A software component is a specialization of a component for software entities, including its interfaces. | Implement a Simulink export-function, rate-based, or JMAAB model as a software component, simulate the software architecture model, and generate code. | Implement Behaviors for Architecture Model SimulationCreate Software Architecture from Component |
Software composition | A software composition is a diagram of software components and connectors that represents a composite software entity, such as a module or application. | Encapsulate functionality by aggregating or nesting multiple software components or compositions. | Model Software Architecture of Throttle Position Control System |
Function | A function is an entry point where a transfer of program control occurs and can be defined in a software component. | You can apply stereotypes to functions in software architectures, edit sample times, and specify the function period using the Functions Editor. | Author and Extend Functions for Software Architectures |
Function element | A function element describes the attributes of a function in a client-server interface. | Edit the function prototype on a function element to change the number and names of inputs and outputs of the function. Edit function element properties as you would edit other interface element properties. Function argument types can include built-in types as well as bus objects. You can specify function elements to support: Synchronous execution — When the client calls the server, the function runs immediately and returns the output arguments to the client.Asynchronous execution — When the client makes a request to call the server, the function is executed asynchronously based on the priority order defined in the Functions Editor and Schedule Editor and returns the output arguments to the client. | systemcomposer.interface.FunctionElement |
Function argument | A function argument describes the attributes of an input or output argument in a function element. | You can set the properties of a function argument in the Interface Editor just as you would other value types: Type,Dimensions, Units, Complexity,Minimum, Maximum, andDescription. | systemcomposer.interface.FunctionArgument |
Service interface | A service interface defines the functional interface between client and server components. Each service interface consists of one or more function elements. | Once you have defined a service interface in the Interface Editor, you can assign it to client and server ports using the Property Inspector. You can also use the Property Inspector to assign stereotypes to service interfaces. | Service Interfaces Overviewsystemcomposer.interface.ServiceInterface |
Server | A server is a component that defines and provides a function. | A server component is where the function is defined. You can implement function behavior in a Simulink export-function model. | Service Interfaces Overview |
Client | A client is a component that sends a request to the server. | A client component is where the function is called. The implementation of function call behavior is dependent on the synchronicity of the function execution. | Service Interfaces Overview |
Class diagram | A class diagram is a graphical representation of a static structural model that displays unique architecture types of the software components optionally with software methods and properties. | Class diagrams capture one instance of each referenced model and show relationships between them. A component diagram view can be optionally represented as a class diagram for a software architecture model. | Class Diagram View of Software Architectures |
Version History
Introduced in R2019a
See Also
Blocks
Functions
- inlineComponent | createArchitectureModel | createArchitectureSubsystem | createStateflowChartBehavior | extractArchitectureFromSimulink | linkToModel | linkToFMU | isFMU | isReference | isProtected
Topics
- Overview of System Composer API
- Implement Component Behavior Using Simulink
- Decompose and Reuse Components
- Implement Component Behavior Using Stateflow Charts
- Implement Component Behavior Using Simscape
- Use FMU Components with Architectural Data in Architecture Models
- Simulate and Deploy Software Architectures