Main Content

Author Software Architectures

Software architectures in System Composer™ provide capabilities to author software architecture models composed of software components, ports, and interfaces. Use System Composer to design your software architecture model, simulate your design in the architecture level, and generate code.

Use software architectures to link your Simulink® export-function, rate-based, or JMAAB models to components in your architecture model to simulate and generate code.

Create New Software Architecture Model

The workflow for authoring software architecture models is similar to authoring system architectures. Start with a blank software architecture template to model.

You can create a software architecture programmatically by using the function.

systemcomposer.createModel("mySoftwareArchitectureDesign","SoftwareArchitecture")

where mySoftwareArchitectureDesign is the name of the new model.

You can also use the provided template in the Simulink start page.

Select Software Architecture Model.

Software architecture template in Simulink start page

Use a System Composer Architecture Model to describe systems as a combination of structural elements with underlying behavioral descriptions. Use a Software Architecture Model to easily define the execution order of your functions from your components, simulate your design in the architecture level, and generate code by linking your Simulink export-function, rate-based, or JMAAB models to components.

For more information about architecture models, see Compose Architectures Visually.

From a Simulink model or a System Composer architecture model, on the Simulation tab, select New New model, and then select Architecture . Then, select Software Architecture Model.

System Composer opens a new empty software architecture model. Observe the icon on the upper left corner that distinguishes the empty model from a system architecture.

Empty software architecture model

When you model software architectures, you can:

Build a Simple Software Architecture Model

  1. Drag an empty component to the mySoftwareArchitectureDesign model.

    Added component to a software architecture

  2. Link this simple Simulink Export-Function model, export_model_software_architecture to your component by right-clicking the component and selecting Link to Model. For more information about building this Simulink model, see Create Export-Function Model.

    Simulink Export-Function model

  3. Connect component input port and output ports to architecture input ports and output ports.

    Software architecture with a component linked to an Export-Function model.

In this example, you start from a blank template and create a simple software architecture model. To learn how to simulate a software architecture model and generate code, see Simulate and Deploy Software Architectures.

Import and Export Software Architectures

You can import a software architecture model using the systemcomposer.importModel function.

archModel = systemcomposer.importModel(modelName,importStruct)

If the domain field of importStruct is "Software", the importModel function creates a new software architecture based on the structure of the MATLAB® tables.

To export a System Composer software architecture model, use the systemcomposer.exportModel function.

exportedSet = systemcomposer.exportModel(modelName)

The exportModel function returns a structure containing MATLAB tables that contains components, ports, connections, portInterfaces, requirementLinks, and a domain field with value 'Software' to indicate that the exported architecture is a software architecture.

For more information on importing and exporting software architectures with functions, see Import and Export Functions of Software Architectures.

Create Software Architecture from Architecture Model Component

You can also create a software architecture model from an existing component in a System Composer architecture model.

To create a software architecture model from a component:

  1. Select an existing component from your architecture model. In this example, Component2 is selected.

    Architecture model with two components, Component1 and Component2

  2. To create a software architecture model from Component2, you can use any of these three methods:

    1. Right-click the component and select Create Software Architecture Model.

    2. Select the component and, on the toolstrip, click Create Software Architecture Model.

      Create Software Architecture button in the toolstrip.

    3. To create a software architecture programmatically, use the createArchitectureModel function.

  3. Observe the software architecture model icon in the upper left corner. The new software architecture contains all elements from the component, including previously applied stereotypes.

    Software architecture model icon on the upper left corner.

These elements are not supported if you create a software architecture from an existing component:

  • A reference component that references a system architecture.

  • A component with Stateflow® chart behavior.

  • A component with a behavior model containing an FMU block.

  • Adapter blocks with UnitDelay or RateTransition as the applied interface conversion. The applied interface conversion changes to None for these Adapter blocks.

  • Physical ports.

See Also

| |

Related Topics