Main Content

Projection

Perturb the solver's solution of a system's states to better satisfy time-invariant solution relationships

Required

No

Language

MATLAB®

Syntax

Projection(s)

Arguments

s

Instance of Simulink.MSFcnRunTimeBlock class representing the Level-2 MATLAB S-Function block.

Description

This method is intended for use with S-functions that model dynamic systems whose states satisfy time-invariant relationships, such as those resulting from mass or energy conservation or other physical laws. The Simulink® engine invokes this method at each time step after the model's solver has computed the S-function's states for that time step. Typically, slight errors in the numerical solution of the states cause the solutions to fail to satisfy solution invariants exactly. Your Projection method can compensate for the errors by perturbing the states so that they more closely approximate solution invariants at the current time step. As a result, the numerical solution adheres more closely to the ideal solution as the simulation progresses, producing a more accurate overall simulation of the system modeled by your S-function.

Your Projection method's perturbations of system states must fall within the solution error tolerances specified by the model in which the S-function is embedded. Otherwise, the perturbations may invalidate the solver's solution. It is up to your Projection method to ensure that the perturbations meet the error tolerances specified by the model. See Perturbing a System's States Using a Solution Invariant for a simple method for perturbing a system's states. The following articles describe more sophisticated perturbation methods that your mdlProjection method can use.

  • C.W. Gear, “Maintaining Solution Invariants in the Numerical Solution of ODEs,” Journal on Scientific and Statistical Computing, Vol. 7, No. 3, July 1986.

  • L.F. Shampine, “Conservation Laws and the Numerical Solution of ODEs I,” Computers and Mathematics with Applications, Vol. 12B, 1986, pp. 1287–1296.

  • L.F. Shampine, “Conservation Laws and the Numerical Solution of ODEs II,” Computers and Mathematics with Applications, Vol. 38, 1999, pp. 61–72.

Examples

collapse all

Here is a simple, Taylor-series-based approach to perturbing a system's states. Suppose your S-function models a dynamic system having a solution invariant, g(X,t), i.e., g is a continuous, differentiable function of the system states, X, and time, t, whose value is constant with time. Then

Here is a simple, Taylor-series-based approach to perturbing a system's states. Suppose your S-function models a dynamic system having a solution invariant, g(X,t), i.e., g is a continuous, differentiable function of the system states, X, and time, t, whose value is constant with time. Then

XnXn*+JnT(JnJnT)1Rn

where

  • Xn is the system's ideal state vector at the solver's current time step

  • Xn* is the approximate state vector computed by the solver at the current time step

  • Jn is the Jacobian of the invariant function evaluated at the point in state space specified by the approximate state vector at the current time step:

    Jn=gX(Xn*,tn)

  • tn is the time at the current time step

  • Rn is the residual (difference) between the invariant function evaluated at Xn and Xn* at the current time step:

    Rn=g(Xn,tn)g(Xn*,tn)

    Note

    The value of g(Xn,tn) is the same at each time step and is known by definition.

Given a continuous, differentiable invariant function for the system that your S-function models, this formula allows your S-function's mdlProjection method to compute a perturbation

JnT(JnJnT)1Rn

of the solver's numerical solution, Xn*, that more closely matches the ideal solution, Xn, keeping the S-function's solution from drifting from the ideal solution as the simulation progresses.

This example opens up a directory containing the following files required for this example.

  1. mdlProjectionEx1.slx

  2. mdlProjectionEx2.slx

  3. predprey_noproj.m

  4. predprey.m

This example opens up a directory containing the following files required for this example.

  1. mdlProjectionEx1.slx

  2. mdlProjectionEx2.slx

  3. predprey_noproj.m

  4. predprey.m

This example illustrates how the perturbation method outlined in the previous section can keep a model's numerical solution from drifting from the ideal solution as a simulation progresses. Consider the following model, mdlProjectionEx1:

The PredPrey block references an S-function that uses the Lotka-Volterra equations:

 predprey_noproj.m

x˙=ax(1y)y˙=cy(1x)

to model predator-prey population dynamics, where x(t) is the population density of the predators and y(t) is the population density of prey. The ideal solution to the predator-prey ODEs satisfies the time-invariant function

xcecxyaeay=d

where a, c, and d are constants. The S-function assumes a = 1, c = 2, and d = 121.85.

The Invariant Residual block in this model computes the residual between the invariant function evaluated along the system's ideal trajectory through state space and its simulated trajectory:

Rn=dxncecxnynaeayn

where xnand ynare the values computed by the model's solver for the predator and prey population densities, respectively, at the current time step. Ideally, the residual should be zero throughout simulation of the model, but simulating the model reveals that the residual actually strays considerably from zero:

Now consider the following model, mdlProjectionEx2:

This model is the same as the previous model, except that its S-function, predprey.m, includes a mdlProjection method that uses the perturbation approach outlined in Perturbing a System's States Using a Solution Invariant to compensate for numerical drift. As a result, the numerical solution more closely tracks the ideal solution as the simulation progresses as demonstrated by the residual signal, which remains near or at zero throughout the simulation:

 predprey.m

Version History

Introduced in R2012b