| Contents | Index |
| On this page… |
|---|
Creating Initial Condition (IC) Structures |
Bus signal initialization is a special kind of signal initialization. For general information about initializing signals, see Initializing Signals and Discrete States.
Bus signal initialization specifies the bus element values that Simulink uses for the first execution of a block that uses that bus signal. By default, the initial value for a bus element is the ground value (represented by 0). Bus initialization, as described in this section, involves specifying nonzero initial conditions (ICs).
You can use bus signal initialization features to:
Specify initial conditions for signals that have different data types
Apply a different initial condition for each signal in the bus
Specify initial conditions for a subset of signals in a bus without specifying initial conditions for all the signals
Use the same initial conditions for multiple blocks, signals, or models
You can initialize bus signal values that input to a block, if that block meets both of these conditions:
It has an initial value or initial condition block parameter
It supports bus signals
The following blocks support bus signal initialization:
Data Store Memory
Memory
Merge
Outport (when the block is inside a conditionally executed context)
Rate Transition
Unit Delay
For example, the Unit Delay block is a bus-capable block and the Block Parameters dialog box for the Unit Delay block has an Initial conditions parameter.
You cannot initialize a bus that has:
Variable-size signals
Frame-based signals
You need to set up your model properly to use initial condition structures to initialize bus signals. The general workflow involves the tasks listed in the following table. You can vary the order of the tasks, but before you update the diagram or run a simulation, you need to ensure your model is set up properly.
| Task | Documentation |
|---|---|
| Define an IC structure | Creating Initial Condition (IC) Structures |
| Use an IC structure to specify a nonzero initial condition. | Three Ways to Initialize Bus Signals Using Block Parameters |
| Set Configuration Parameters dialog box diagnostics | Setting Diagnostics to Support Bus Signal Initialization |
You can create partial or full IC structures to represent initial values for a bus signal. Create an IC structure by either:
Defining a MATLAB structure in the MATLAB base or Simulink model workspace
Specifying an expression that evaluates to a structure for the initial condition parameter in the Block Parameters dialog box for a block that supports bus signal initialization
For information about defining MATLAB structures, see Structures in the MATLAB documentation.
A full IC structure provides an initial value for every element of a bus signal. This IC structure mirrors the bus hierarchy and reflects the attributes of the bus elements.
A partial IC structure provides initial values for a subset of the elements of a bus signal. If you use a partial IC structure, during simulation, Simulink creates a full IC structure to represent all of the bus signal elements, assigning the respective ground value to each element for which the partial IC structure does not explicitly assign a value.
Specifying partial structures for block parameter values can be useful during the iterative process of creating a model. Partial structures enable you to focus on a subset of signals in a bus. When you use partial structures, Simulink initializes unspecified signals implicitly.
Specifying full structures during code generation offers these advantages:
Generates more readable code
Supports a modeling style that explicitly initializes all signals
The field that you specify in an IC structure must match the following data attributes of the bus element exactly:
Name
Data type
Dimension
Complexity
For example, if you define a bus element to be a real [2x2] double array, then in the IC structure, define the value to initialize that bus element to be a real [2x2] double array.
You must explicitly specify fields in the IC structure for every bus element that has an enumerated (enum) data type.
When you define a partial IC structure:
Include only fields that are in the bus.
You can omit fields that are in the bus.
Make the field in the IC structure correspond to the nesting level of the bus element.
Within the same nesting level in both the structure and the bus, you can specify the structure fields in a different order than the order of the elements in the bus.
Note The value of an IC structure must lie within the design minimum and maximum range of the corresponding bus element. Simulink performs this range checking during an update diagram and when you run the model. |
Suppose you have a bus, Top, composed of three elements: A, B, and C, with these characteristics:
A is a nested bus, with two signal elements.
B is a single signal.
C is a nested bus that includes bus A as a nested bus.
The following model, busic_example includes the nested Top bus. The screen capture below shows the model after it has been updated. (Open the model.)

The following diagram summarizes the Top bus hierarchy and the data type, dimension, and complexity of the bus elements .
Top
A (sub1)
A1 (double)
A2 (int8, 5x1, complex)
B (double)
C (sub2)
C1 (int16)
C2 (sub1)
A1 (double)
A2 (int8, 5x1, complex)Valid partial IC structures. In the following examples, K is an IC structure specified for the initial value of the Unit Delay block. The IC structure corresponds to the Top bus in the busic_example model.
The following table shows valid initial condition specifications.
| Valid Syntax | Description |
|---|---|
| K.A.A1 = 3 | Bus element Top.A.A1 is double; the corresponding structure field is 3, which is a double. |
| K = struct('C',struct('C1',int16(4))) | Matching data types can require you to cast types. Bus element Top.C.C1 is int16. The corresponding structure field explicitly specifies int16(4). |
| K = struct('B',3,'A',struct('A1',4)) | Bus element Top.B and Top.A are at the same nesting level in the bus. For bus elements at the same nesting level, the order of corresponding structure fields does not matter. |
Invalid partial IC structures. In the following examples, K is an IC structure specified for the initial value of the Unit Delay block. The IC structure corresponds to the Top bus in the busic_example model.
These three initial condition specifications are not valid:
| Invalid Syntax | Reason the Syntax Is Invalid |
|---|---|
| K.A.A2 = 3 | Value data type, dimension, and complexity do not match. Top.A.A2 is an int8, but K.A.A2 is a double; Top.A.A2 is 5x1, but K.A.A2 is 1x1; Top.A.A2 is complex, but K.A.A2 is real. |
| K.C.C2 = 3 | You cannot use a scalar to initialize IC substructures. |
| K = struct('B',3,'X',4) | You cannot specify fields that are not in the bus (X does not exist in the bus). |
Use the Simulink.Bus.createMATLABStruct function to streamline the process of creating a full MATLAB initial condition structure with the same hierarchy, names, and data attributes as a bus signal. This function fills all the elements that you do not specify with the ground values for those elements.
You can use several different kinds of input with the Simulink.Bus.createMATLABStruct function, including
A bus object name
An array of port handles
You can invoke the Simulink.Bus.createMATLABStruct function from the Bus Editor, using one of these approaches:
Select the File > Create a MATLAB structure menu item.
Select the bus object for which you want to create
a full MATLAB structure and click the Create a MATLAB
structure icon (
) from the toolbar.
You can then edit the MATLAB structure in the MATLAB Editor.
See the Simulink.Bus.createMATLABStruct documentation for details.
To detect when structure parameters are not consistent in shape (hierarchy and names) with the associated bus signal, in the Model Editor, use the Tools > Model Advisor > By Product > Simulink Check for partial structure parameter usage with bus signals check. This check identifies partial IC structures.
You initialize a bus signal by setting the initial condition parameter for a block that receive a bus signal as input and that supports bus initialization (see Blocks that Support Bus Signal Initialization).
For example, the Block Parameters dialog box for the Unit Delay block has an Initial conditions parameter.

For a block that supports bus signal initialization, you can replace the default value of 0 with:
A MATLAB structure that explicitly defines the initial conditions for the bus signal.
For example, in the Initial conditions parameter of the Unit Delay block, you could type in a structure such as shown below:

A MATLAB variable that you define as an IC structure with the appropriate values.
For example, you could define the following partial structure in the base workspace:
K = struct('A', struct('A1', 3), 'B', 4);You can then specify the K structure as the Initial conditions parameter of the Unit Delay block:

A Simulink.Parameter object that uses an IC structure for the Value property
For example, you could define the partial structure P in the base workspace (reflecting the busic model discussed in the previous section):
P = Simulink.Parameter;
P.Datatype = 'Bus: Top';
P.Value = Simulink.Bus.createMATLABStruct('Top');
P.Value.A.A1 = 3;
P.Value.B = 5; You can then specify the P structure as the Initial conditions parameter of the Unit Delay block:

All three approaches require that you define an IC structure (see Creating Initial Condition (IC) Structures). You cannot specify a nonzero scalar value or any other type of value other than 0, an IC structure, or Simulink.Parameter object to initialize a bus signal.
Defining an IC structure as a MATLAB variable, rather than specifying the IC structure directly in the block parameters dialog box offers several advantages, including:
Reuse of the IC structure for multiple blocks
Using the IC structure as a tunable parameter during simulation
You can tune the value of a Simulink.Parameter object during simulation.
To enable bus signal initialization, before you start a simulation, set the following two Configuration Parameter diagnostics as indicated:
In the Configuration Parameters > Diagnostics > Connectivity pane, set Mux blocks used to create bus signals to error.
Configuration Parameters > Diagnostics > Data Validity pane, set Underspecified initialization detection to simplified.
The documentation for these diagnostics explains how convert your model to handle error messages the diagnostics generate.
![]() | Connecting Buses to Inports and Outports | Combining Buses into an Array of Buses | ![]() |

Learn more about Simulink through this collection of videos, articles, technical literature and the Getting Started with Simulink Guide.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |