Main Content

Model Bang-Bang Controller by Using a State Transition Table

A state transition table represents a finite state machine for sequential modal logic in tabular format. Instead of drawing states and transitions in a Stateflow® chart, you can use a state transition table to model a state machine in a concise, compact format that requires minimal maintenance of graphical objects. For more information, see Model Finite State Machines Using State Transition Tables.

Design Requirements

This example shows how to model a bang-bang controller for temperature regulation of a boiler, using a state transition table. The controller must turn the boiler on and off to meet the following design requirements:

  • High temperature cannot exceed 25 degrees Celsius.

  • Low temperature cannot fall below 23 degrees Celsius.

  • Steady-state operation requires a warm-up period of 10 seconds.

  • When the alarm signal sounds, the boiler must shut down immediately.

  • When the all-clear signal sounds, the boiler can turn on again.

Identify System Attributes

You can identify the operating modes and data requirements for the bang-bang controller based on its design requirements.

Operating Modes

The high-level operating modes for the boiler are:

  • Normal operation, when no alarm signal sounds.

  • Alarm state, during an alarm signal.

During normal operation, the boiler can be in one of three states:

  • Off, when the temperature is above 25 degrees Celsius.

  • Warm-up, during the first 10 seconds of being on.

  • On, steady-state after 10 seconds of warm-up, when the temperature is below 23 degrees Celsius.

Data Requirements

The bang-bang controller requires the following data.

ScopeDescriptionVariable Name
InputHigh temperature set pointreference_high
InputLow temperature set pointreference_low
InputAlarm indicatorALARM
InputAll-clear indicatorCLEAR
InputCurrent temperature of the boilertemp
LocalIndicator that the boiler completed warm-updoneWarmup
OutputCommand to set the boiler mode: off, warm-up, or onboiler_cmd

Add a New State Transition Table

In this exercise, you add a state transition table to a Simulink® model that contains the required Simulink blocks, except for the bang-bang controller.

To implement the model yourself, follow these steps. Otherwise, you can open the completed model.

1. Open the example.

2. Delete the five output ports and the single input port.

3. Add a State Transition Table block to the model.

Add States and Hierarchy

To represent the operating modes of the boiler, add states and hierarchy to the state transition table.

  1. Open the state transition table.

  2. Represent the high-level operating modes: normal and alarm.

    1. Double-click state1 and rename it Normal.

    2. Double-click state2 and rename it Alarm.

  3. Represent the three states of normal operation as substates of Normal:

    1. Right-click the Normal state, select Insert Row > Child State Row, and name the new state Off.

    2. Repeat step a two more times to create the child states Warmup and On, in that order.

    By default, when there is ambiguity, the top exclusive (OR) state at every level of hierarchy becomes active first. For this reason, the Normal and Off states appear with default transitions. This configuration meets the design requirements for this model. To set a default state, right-click the state and select Set to default.

Your state transition table looks like this table.

State transition table with two top-level states called Normal and Alarm. Normal has three substates called Off, Warmup, and On.

Now you are ready to specify actions for each state.

Specify State Actions

To describe the behavior that occurs in each state, specify state actions in the table. In this exercise, you initialize modes of operation as the boiler enters normal and alarm states, using the variables boiler_cmd and doneWarmup (described in Data Requirements).

  1. In the following states, click after the state name, press Enter, and type the specified entry actions.

    In State:Type:Resulting Behavior
    Off
    entry:
    boiler_cmd = 0;
    doneWarmup = false;
    Turns off the boiler and indicates that the boiler has not warmed up.
    Warmup
    entry:
    boiler_cmd = 2;
    Starts warming up the boiler.
    On
    entry:
    boiler_cmd = 1;
    Turns on the boiler.
    Alarm
    entry:
    boiler_cmd = 0;
    Turns off the boiler.
  2. Save the state transition table.

Your state transition table looks like this table.

State transition table with specified entry actions.

Now you are ready to specify the conditions and actions for transitioning from one state to another state.

Specify Transition Conditions and Actions

To indicate when to change from one operating mode to another, specify transition conditions and actions in the table. In this exercise, you construct statements using variables described in Data Requirements.

  1. In the Normal state row, enter:

    if
    [ALARM]
     
    Alarm

    During simulation:

    1. When first entered, the chart activates the Normal state.

    2. At each time step, normal operation cycles through the Off, Warmup, and On states until the ALARM condition is true.

    3. When the ALARM condition is true, the boiler transitions to the Alarm state and shuts down immediately.

  2. In the Off state row, enter:

    if
    [temp <= reference_low]
     
    Warmup

    During simulation, when the current temperature of the boiler drops below 23 degrees Celsius, the boiler starts to warm up.

  3. In the Warmup state row, enter:

    ifelse-if
    [doneWarmup]after(10, sec)
     {doneWarmup = true;}
    OnOn

    During simulation, the boiler warms up for 10 seconds and then transitions to the On state.

  4. In the On state row, enter:

    if
    [temp >= reference_high]
     
    Off

    During simulation, when the current temperature of the boiler rises above 25 degrees Celsius, the boiler shuts off.

  5. In the Alarm state row, enter:

    if
    [CLEAR]
     
    Normal

    During simulation, when the all-clear condition is true, the boiler returns to normal mode.

  6. Save the state transition table.

Your state transition table looks like this table.

State transition table with specified transition conditions and actions.

Now you are ready to add data definitions by using the Symbols Pane.

Define Data

Next, define the data for the state transition table. You can use data to explicitly define the size, type, and complexity of the MATLAB® variables in the table.

You can define data by using the Symbols pane. In the Modeling tab, click Symbols Pane. The Symbols pane displays data associated with the variables you assign in the table. Stateflow infers which data are input, output, and parameter data, but the data is undefined until you resolve it. In the Name column, the warning symbol indicates undefined data.

Symbols Pane showing unresolved symbols in state transition table.

  1. To resolve the undefined data, in the Symbols pane, click the Resolve undefined symbols icon . The Stateflow Editor assigns a scope to each symbol in the chart.

    SymbolScope
    reference_highInput Data
    reference_lowInput Data
    tempInput Data
    boiler_cmdOutput Data
    doneWarmupLocal Data
    ALARMParameter
    CLEARParameter

  2. Because the Stateflow Editor infers the scope based on context, it may not always assign the appropriate scope.

    Correct the scopes of ALARM and CLEAR. In the Type column, select the Parameter Data icon . In the drop-down menu, select Input Data.

  3. For each input, assign the correct value in the Port column:

    Assign:To Port:
    reference_low2
    reference_high1
    temp5
    ALARM3
    CLEAR4

  4. Save the state transition table.

In the Simulink model, the inputs and outputs that you defined appear as input and output ports on the State Transition Table block.

Connect the Transition Table and Run the Model

  1. In the Simulink model, connect the state transition table to the Simulink inputs and outputs:

    Completed Simulink model.

  2. Save the model.

  3. Reopen your state transition table.

  4. Start the simulation by selecting Run.

    As the simulation runs, you can watch the animation in the state transition table activate different states.

When performing interactive debugging, you can set breakpoints on different states and view the data values at different points in the simulation. For more information about debugging, see Set Breakpoints to Debug Charts.

See Also

Topics