Main Content

Choose a Jacobian Method for an Implicit Solver

For implicit solvers, Simulink® must compute the solver Jacobian, which is a submatrix of the Jacobian matrix associated with the continuous representation of a Simulink model. In general, this continuous representation is of the form:

x˙=f(x,t,u)y=g(x,t,u).

The Jacobian, J, formed from this system of equations is:

J=(fxfugxgu)=(ABCD).

In turn, the solver Jacobian is the submatrix, Jx.

Jx=A=fx.

Sparsity of Jacobian

For many physical systems, the solver Jacobian Jx is sparse, meaning that many of the elements of Jx are zero.

Consider the following system of equations:

x˙1=f1(x1,x3)x˙2=f2(x2)x˙3=f3(x2).

From this system, you can derive a sparsity pattern that reflects the structure of the equations. The pattern, a Boolean matrix, has a 1 for eachxi that appears explicitly on the right-hand side of an equation. Therefore, you obtain:

Jx,pattern=(101010010)

The sparse perturbation and the sparse analytical methods may be able to take advantage of this sparsity pattern to reduce the number of computations necessary and improve performance.

Solver Jacobian Methods

When you choose an implicit solver from the Solver pane of the configuration parameters dialog box, a parameter called Solver Jacobian method and a drop-down menu appear. This menu has five options for computing the solver Jacobian.

Note

If you set Automatic solver parameter selection to error in the Solver Diagnostics pane, and you choose a different solver than that suggested by Simulink, you may receive an error.

Limitations

The solver Jacobian methods have these limitations associated with them.

  • If you select an analytical Jacobian method, but one or more blocks in the model do not have an analytical Jacobian, then Simulink applies a perturbation method.

  • If you select sparse perturbation and your model contains data store blocks, Simulink applies the full perturbation method.

Heuristic 'auto' Method

The default setting for the Solver Jacobian method is auto. Selecting this choice causes Simulink to determine which of the remaining four methods best suits your model. This flowchart depicts the algorithm.

Sparse methods are beneficial for models that have a large number of states. If 50 or more states exist in your model, auto chooses a sparse method. Unlike other implicit solvers, ode23s is a sparse method because it generates a new Jacobian at every time step. A sparse analytical or a sparse perturbation method is, therefore, advantageous. Selecting auto also ensures that the analytical methods are used only if every block in your model can generate an analytical Jacobian.

Full and Sparse Perturbation Methods

The full perturbation method solves the full set of perturbation equations and uses LAPACK for linear algebraic operations. This method is costly from a computational standpoint, but remains a recommended method for establishing baseline results.

The sparse perturbation method attempts to improve the run-time performance by taking mathematical advantage of the sparse Jacobian pattern. Returning to the sample system of three equations and three states,

x˙1=f1(x1,x3)x˙2=f2(x2)x˙3=f3(x2).

The solver Jacobian is:

Jx=(f1x1f1x2f1x3f2x1f2x2f2x3f3x1f3x2f3x3)=(f1(x1+Δx1,x2,x3)f1Δx1f1(x1,x2+Δx2,x3)f1Δx2f1(x1,x2,x3+Δx3)f1Δx3f2(x1+Δx1,x2,x3)f2Δx1f2(x1,x2+Δx2,x3)f2Δx2f2(x1,x2,x3+Δx3)f2Δx3f3(x1+Δx1,x2,x3)f3Δx1f3(x1,x2+Δx2,x3)f3Δx2f3(x1,x2,x3+Δx3)f3Δx3)

It is, therefore, necessary to perturb each of the three states three times and to evaluate the derivative function three times. For a system with n states, this method perturbs the states n times.

By applying the sparsity pattern and perturbing states x1 and x 2 together, this matrix reduces to:

Jx=(f1(x1+Δx1,x2+Δx2,x3)f1Δx10f1(x1,x2,x3+Δx3)f1Δx30f2(x1+Δx1,x2+Δx2,x3)f2Δx200f3(x1+Δx1,x2+Δx2,x3)f3Δx20)

The solver can now solve columns 1 and 2 in one sweep. While the sparse perturbation method saves significant computation, it also adds overhead to compilation. It might even slow down the simulation if the system does not have a large number of continuous states. A tipping point exists for which you obtain increased performance by applying this method. In general, systems having a large number of continuous states are usually sparse and benefit from the sparse method.

The sparse perturbation method, like the sparse analytical method, uses UMFPACK to perform linear algebraic operations. Also, the sparse perturbation method supports both RSim and rapid accelerator mode.

Full and Sparse Analytical Methods

The full and sparse analytical methods attempt to improve performance by calculating the Jacobian using analytical equations rather than the perturbation equations. The sparse analytical method, also uses the sparsity information to accelerate the linear algebraic operations required to solve the ordinary differential equations.

For details on how to access and interpret the sparsity pattern in MATLAB®, see Exploring the Solver Jacobian Structure of a Model.

Code Generation Support

While the sparse perturbation method supports RSim, the sparse analytical method does not. Consequently, regardless of which sparse method you select, any generated code uses the sparse perturbation method. This limitation applies to rapid accelerator mode as well.