Main Content

Assess Temporal Logic by Using Temporal Assessments

Hybrid systems with discrete and continuous time behavior can require complex timing-dependent signal logic. Simulink® Test™ enables you to assess model timing and event ordering by authoring and including temporal assessments with test cases in the Test Manager.

To work with temporal assessments in the Test Manager:

  1. Select an assessment template.

  2. Enter the assessment conditions.

    • Map symbols to model elements, such as signals, time series, or constants.

    • View the assessment summary.

    You can copy, paste, and delete assessments by selecting the summary and right-clicking to display the context menu or by using keyboard shortcuts. When you copy and paste an assessment, it is added to the end of the assessments. If you delete an assessment, you cannot paste it even if you copied it before deleting it.

  3. Run the test case.

  4. Use the results to assess the system under test (SUT) against your requirements.

For example, consider a forced oscillation damping problem that has this requirement:

For a signal S, if the signal magnitude exceeds value P, then within d seconds, it must settle below value Q and stay below Q for u seconds.

Oscillation damping signal

Create a Temporal Assessment

To create a temporal assessment:

  1. Create or open a test case in the Test Manager.

  2. Navigate to the Logical and Temporal Assessments Editor.

  3. Click Add Assessment. These assessment templates are available:

    • Logical Assessment Templates

      • Bounds Check — Check maximum and minimum bounds for signals and expressions.

      • Custom — Check if a logical expression holds true for all time steps.

    • Temporal Assessment Template

      • Trigger-Response — Check for a signal response when a trigger is detected.

    Logical and Temporal Assessments menu options

    For this example, select Trigger-Response.

    Trigger response template

The Trigger-Response template appears. To finish creating the assessment, you define temporal assessment conditions in the context of the SUT.

Define Temporal Assessment Conditions

A Trigger-response assessment requires a:

  • Trigger parameter

  • Response parameter

  • Optional Delay parameter

For the forced oscillation damping problem:

  1. Select whenever is true as the trigger and enter abs(S) > P as the condition. The trigger condition is the condition pattern after which the response signal is evaluated. The response condition is triggered when the magnitude of signal S exceeds value P.

  2. Select must stay true for at least as the response and enter abs(S) < Q and u as the condition and min-time respectively. The response condition describes the behavior of the SUT in response to the trigger condition. The response condition is that the magnitude of signal S must settle below value Q and stay below Q for at least u seconds.

  3. Select with a delay of at most as the delay type and set d as the max-time parameter. The delay is an optional time interval that starts from a time reference parameter and continues to the point where the response condition is expected to be satisfied. The delay is at most d seconds.

All time units are seconds.

When you add a symbol as part of a temporal assessment parameter in the Logical and Temporal Assessments Editor, it is added to the list of symbols as an unresolved symbol. Resolve symbols by using the Symbols pane in the editor.

Resolve Assessment Parameter Symbols

To resolve a symbol, right-click the symbol. Two options are available:

  1. Map to model element – Use the mapping dialog box to map symbols to a signal, parameter, or block in the SUT.

    Selected signal and mapping dialog box

    Select a symbol to map from the drop-down list at the top of the mapping dialog box.

    After you finish mapping symbols to model elements, the Symbols pane displays metadata that corresponds to the model element.

    Mapped symbol name, path, port index, and field

    Signals that are mapped to a symbol used by an assessment in the editor are logged when you run the test case.

    If you map a bus or an array to a symbol, use the Field/Element row in the Symbols pane to select a scalar signal from the bus or array. For example:

    • To map a symbol to a bus signal containing a bus element fieldA, enter .fieldA.

    • To map a symbol to the signal element that corresponds to index (5,5) in a signal array, enter (5,5).

    • To combine both expressions, enter .fieldA(5,5).

  2. Map to expression – Assign a scalar constant value or variable to a symbol.

    When you select Map to expression, you must enter an expression in the Expression field. The expression must be in MATLAB® code and evaluate to a scalar literal or a timeseries object. If the expression is long or complicated, you can use the Assessment Callback section to write MATLAB code that retrieves the model, test, and simulation data and assigns the data to variables, then assign the variable to the symbol expression. See Define Variables in the Assessment Callback Section for more information on defining variables.

    To retrieve data stored in workspace variables, use the evalin function. For example, to assign the workspace variable var to a symbol, enter evalin("base","var") in the symbol expression directly, or enter v = evalin("base","var") in the Assessment Callback section and enter v in the symbol expression.

    Because the t symbol is automatically bound to the simulation time, you do not need to map it to an expression. t is not visible in the Symbols pane.

    Tip

    Entering sig = sltest_simout.logsout.get('mySignal') in the Assessment Callback section and using Map to expression to map a symbol to the sig variable is equivalent to using Map to model element to map a symbol to the mySignal signal.

If you map a symbol to a discrete data signal that is linearly interpolated, the interpolation is automatically changed to zero-order hold during the assessment evaluation. Additionally, an information icon () appears next to the symbol name in the Symbols pane. Point to the icon and a tooltip appears which indicates that the linear interpolation was overridden.

Review the Temporal Assessment Summary

After you enter the assessment parameters, click the arrow to the left of the assessment description to view the assessment summary.

The Visual Representation pane provides a graphical illustration of a passing case for the assessment.

View passing and failing cases for the assessment by clicking the Explore Pattern icon. Select the type of case you want to view from the drop-down list and click to view different passing and failing cases.Triggers versus time for passing and failing cases

Evaluate the SUT

Run the test case to evaluate the SUT. Temporal assessments are evaluated after simulation by using logged signal data. Use the test case results to review the SUT against your requirements.

You can run test cases that contain logical or temporal assessments in multiple releases. For more information, see Assess Temporal Logic in Multiple Releases.

View Assessment Results

View the results of the assessment evaluation from the Results and Artifacts pane of the Test Manager. Select the test case and click the assessment in the Results tree to open a new Assessment Result tab. Simulink Test evaluates the assessment and displays the expected behavior and the actual result of the assessment execution with a description of the assessment failures at different time steps.

Expected results and actual results

Note

The assessment result figures cannot be exported to a Simulink Test report.

Investigate the SUT behavior using the and buttons and the textual descriptions at points of failure.

For a more detailed investigation, expand the Expression Tree to view results for every individual element of the assessment.

Expanded expression tree with results for all assessments

Use the zoom, pan, and data cursor functionalities to analyze assessment evaluation results in the Expression Tree.

Link Temporal Assessments to Requirements

If you have a Requirements Toolbox™ license, you can establish traceability between temporal assessments and requirements by linking assessments to requirements. To create links to requirements, select the assessment in the Logical and Temporal Assessments Editor and click the Requirements column to open the Requirement Editor dialog box. See Link to Requirements for more information.

See Also

| |

Related Topics