Main Content

Check Dynamic Gap

Check that gap of possibly varying width occurs in range of signal's amplitudes

  • Check Dynamic Gap block

Libraries:
Simulink / Model Verification
HDL Coder / Model Verification

Description

The Check Dynamic Gap block checks that a signal falls outside a range of values at each time step and executes an assertion after comparison. The width of the gap can vary from time step to time step. The u port is the tested input signal. The inputs min and max specify the lower and upper bounds of the gap, respectively. If u falls outside of the gap defined by min and max, the assertion is true (1) and the block does nothing. If not, the block halts the simulation and returns an error message by default.

The input signals can be scalars, vectors, or matrices. All three input signals must be the same data type. The block compares the value of u to the bounds differently depending on the signal.

  • When comparing scalars to vectors or matrices, the block compares the scalar signal to each element of the non-scalar signal.

  • When comparing vectors or matrix signals to other vectors or matrices, the block compares the input to the bounds element-by-element.

  • For models with more than one vector or matrix input signal, the vectors or matrices must have the same dimensions.

Examples

expand all

This example shows how to check if an input signal falls inside a dynamic upper and lower bound using the Check Dynamic Gap block. In this example, the Check Dynamic Gap block compares the value of a tested input signal from a Sine Wave block at the u port to a Ramp block at the max port and a Step block at the min port.

The Check Dynamic Gap block checks if the value of the signal at the max port is less than the value of the test sigal, and if the value of the signal at the min port is greater than the value of the test signal. If it is, the block asserts true (1). Because the Output assertion signal parameter of the Check Dynamic Gap block is selected, the block outputs the assertion value. Run the simulation to observe the model output.

At the start of the simulation, the Check Dynamic Gap block output is 1. The output stays at 1 until the simulation time is 2.47, when the sine wave falls below the value of the Ramp block. The block output stays at 0 until the simulation time reaches 3.14, when the sine wave falls below the value of the Step block. The Step block activates when the simulation time reaches 3.5, placing the sine wave between the bounds. The Check Dynamic Gap block recognizes this change and sets the output to 0.

Ports

Input

expand all

Signal specifying the upper bound of the gap.

Data Types: half | single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | Boolean | fixed point | enumerated

Signal specifying the lower bound of the gap.

Data Types: half | single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | Boolean | fixed point | enumerated

Input signal checked for a gap of width specified by max and min.

Data Types: half | single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | Boolean | fixed point | enumerated

Output

expand all

Output signal that is true (1) if the assertion succeeds, and false (0) if the assertion fails. If, in the Configuration Parameters window, in the Math and Data Types section, under Advanced parameters, you select Implement logic signals as Boolean data, then the output data type is Boolean. Otherwise, the data type of the signal is double.

Dependencies

To enable this output port, select the Output assertion signal parameter check box.

Data Types: double | Boolean

Parameters

expand all

Clearing this parameter disables the block and causes the model to behave as if the block does not exist. To enable or disable all verification blocks, regardless of the setting of this option, go to the Configuration Parameters window, click Diagnostics > Data Validity, expand the Advanced parameters section, and set Model Verification block enabling to Enable all or Disable all.

Programmatic Use

Parameter: enabled
Type: string scalar or character vector
Values: "on" | "off"
Default: "on"

Specify a MATLAB® expression to evaluate when the assertion fails. Because the expression is evaluated in the MATLAB workspace, define all variables used in the expression in that workspace.

Dependencies

To enable this parameter, select the Enable assertion parameter.

Programmatic Use

Parameter: callback
Type: string scalar or character vector
Default: ""

Select this parameter to stop the simulation when the check fails. Clear this parameter to display a warning and continue the simulation.

Programmatic Use

Parameter: stopWhenAssertionFail
Type: string scalar or character vector
Values: "on" | "off"
Default: "on"

Select this parameter to enable the output port.

Programmatic Use

Parameter: export
Type: string scalar or character vector
Values: "on" | "off"
Default: "off"

Specify the style of the block icon. The graphic option displays a graphical representation of the assertion condition on the icon. The text option displays a mathematical expression that represents the assertion condition.

Programmatic Use

Parameter: icon
Type: string scalar or character vector
Values: "graphic" | "text"
Default: "graphic"

Block Characteristics

Data Types

Boolean | double | enumerated | fixed point | half | integer | single

Direct Feedthrough

no

Multidimensional Signals

yes

Variable-Size Signals

no

Zero-Crossing Detection

no

Extended Capabilities

PLC Code Generation
Generate Structured Text code using Simulink® PLC Coder™.

Fixed-Point Conversion
Design and simulate fixed-point systems using Fixed-Point Designer™.

Version History

Introduced before R2006a