systemcomposer.arch.InitializeFunction
Description
An InitializeFunction
object represents an initialize function
in a software architecture model.
Use the Functions Editor from the toolstrip on a software architecture model to schedule the order of component initialization in your software architecture.
Creation
Get initialize functions in a software architecture model with the
Initialization
property on the systemcomposer.arch.Architecture
object.
model = systemcomposer.openModel('ThrottleControlComposition'); sim('ThrottleControlComposition'); initializeFunctions = model.Architecture.Initialization
Properties
Model
— Architecture model
model object
Architecture model where element belongs, specified as a systemcomposer.arch.Model
object.
Component
— Component where function is defined
component object
Component where function is defined, specified as a systemcomposer.arch.Component
object.
Parent
— Parent architecture of element
architecture object
Parent architecture of element where function is defined, specified as a systemcomposer.arch.Architecture
object.
Order
— Initialization order of components
row vector of numeric values
Initialization order of components, specified as a row vector of numeric values.
Example: [model.Architecture.Initialization.Order]
Data Types: uint64
UUID
— Universal unique identifier
character vector
Universal unique identifier, specified as a character vector.
Example: '91d5de2c-b14c-4c76-a5d6-5dd0037c52df'
Data Types: char
Object Functions
decreaseOrder | Change component initialization order to earlier |
increaseOrder | Change component initialization order to later |
destroy | Remove model element |
Examples
Schedule Order of Component Initialization
This example shows how to schedule the order of component initialization.
Open and simulate the model to populate it with functions.
model = systemcomposer.openModel("scServiceInterfaceExample"); sim("scServiceInterfaceExample");
View the initialize functions sorted by order of component initialization.
initializeFunctions = {model.Architecture.Initialization.Name}'
Decrease the order of the first function.
decreaseOrder(model.Architecture.Initialization(1)) initializeFunctions = {model.Architecture.Initialization.Name}'
Increase the order of the third function.
increaseOrder(model.Architecture.Initialization(3)) initializeFunctions = {model.Architecture.Initialization.Name}'
More About
Definitions
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. | |
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. | |
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:
| 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: | 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. | |
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 R2024b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
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)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)