Main Content

Exact Linearization Algorithm

Simulink® Control Design™ software linearizes models using a block-by-block approach. The software individually linearizes each block in your Simulink model and produces the linearization of the overall system by combining the individual block linearizations.

The software determines the input and state levels for each block from the operating point, and requests the Jacobian for these levels from each block.

For some blocks, the software cannot compute an analytical linearization. For example:

  • Some nonlinearities do not have a defined Jacobian.

  • Some discrete blocks, such as state charts and triggered subsystems, tend to linearize to zero.

  • Some blocks do not implement a Jacobian.

  • Custom blocks, such as S-Function blocks and MATLAB Function blocks, do not have analytical Jacobians.

You can specify a custom linearization for any such blocks for which you know the expected linearization. If you do not specify a custom linearization, the software finds the linearization by perturbing the block inputs and states and measuring the response to these perturbations. For more information, see Perturbation of Individual Blocks.

Continuous-Time Models

Simulink Control Design software lets you linearize continuous-time nonlinear systems. The resulting linearized model is in state-space form.

In continuous time, the state space equations of a nonlinear system are:

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

where x(t) are the system states, u(t) are the input signals, and y(t) are the output signals.

To describe the linearized model, define a new set of variables of the states, inputs, and outputs centered about the operating point:

δx(t)=x(t)x0δu(t)=u(t)u0δy(t)=y(t)y0

The output of the system at the operating point is y(t0)=g(x0,u0,t0)=y0.

The linearized state-space equations in terms of δx(t), δu(t), and δy(t) are:

δx˙(t)=Aδx(t)+Bδu(t)δy(t)=Cδx(t)+Dδu(t)

where A, B, C, and D are constant coefficient matrices. These matrices are the Jacobians of the system, evaluated at the operating point:

A=fx|t0,x0,u0B=fu|t0,x0,u0C=gx|t0,x0,u0D=gu|t0,x0,u0

This linear time-invariant approximation to the nonlinear system is valid in a region around the operating point at t=t0, x(t0)=x0, and u(t0)=u0. In other words, if the values of the system states, x(t), and inputs, u(t), are close enough to the operating point, the system behaves approximately linearly.

The transfer function of the linearized model is the ratio of the Laplace transform of δy(t) and the Laplace transform of δu(t):

Plin(s)=δY(s)δU(s)

Multirate Models

Simulink Control Design software lets you linearize multirate nonlinear systems. The resulting linearized model is in state-space form.

Multirate models include states with different sampling rates. In multirate models, the state variables change values at different times and with different frequencies. Some of the variables might change continuously.

The general state-space equations of a nonlinear, multirate system are:

x˙(t)=f(x(t),x1(k1),,xm(km),u(t),t)x1(k1+1)=f1(x(t),x1(k1),,xm(km),u(t),t)xm(km+1)=fi(x(t),x1(k1),,xm(km),u(t),t)y(t)=g(x(t),x1(k1),,xm(km),u(t),t)

where k1,..., km are integer values and tk1,...,tkm are discrete times.

The linearized equations that approximate this nonlinear system as a single-rate discrete model are:

δxk+1Aδxk+BδukδykCδxk+Dδuk

The rate of the linearized model is typically the least common multiple of the sample times, which is usually the slowest sample time.

For more information, see Linearize Multirate Models.

Perturbation of Individual Blocks

Simulink Control Design software linearizes blocks that do not have a preprogrammed linearization using numerical perturbation. The software computes the block linearization by numerically perturbing the states and inputs of the block about the operating point of the block.

The block perturbation algorithm introduces a small perturbation to the nonlinear block and measures the response to this perturbation. The default difference between the perturbed value and the operating point value is 105(1+|x|), where x is the operating point value. The software uses this perturbation and the resulting response to compute the linear state-space of this block. For information on how to change perturbation levels for individual blocks, see Change Perturbation Level of Blocks Perturbed During Linearization.

In general, a continuous-time nonlinear Simulink block in state-space form is given by:

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

In these equations, x(t) represents the states of the block, u(t) represents the inputs of the block, and y(t) represents the outputs of the block.

A linearized model of this system is valid in a small region around the operating point t=t0, x(t0)=x0, u(t0)=u0, and y(t0)=g(x0,u0,t0)=y0.

To describe the linearized block, define a new set of variables of the states, inputs, and outputs centered about the operating point:

δx(t)=x(t)x0δu(t)=u(t)u0δy(t)=y(t)y0

The linearized state-space equations in terms of these new variables are:

δx˙(t)=Aδx(t)+Bδu(t)δy(t)=Cδx(t)+Dδu(t)

A linear time-invariant approximation to the nonlinear system is valid in a region around the operating point.

The state-space matrices A, B, C, and D of this linearized model represent the Jacobians of the block.

To compute the state-space matrices during linearization, the software performs these operations:

  1. Perturbs the states and inputs, one at a time, and measures the response of the system to this perturbation by computing δx˙ and δy.

  2. Computes the state-space matrices using the perturbation and the response.

    A(:,i)=x˙|xp,ix˙oxp,ixo,B(:,i)=x˙|up,ix˙oup,iuoC(:,i)=y|xp,iyoxp,ixo,D(:,i)=y|up,iyoup,iuo

where

  • xp,i is the state vector whose ith component is perturbed from the operating point value.

  • xo is the state vector at the operating point.

  • up,i is the input vector whose ith component is perturbed from the operating point value.

  • uo is the input vector at the operating point.

  • x˙|xp,i is the value of x˙ at xp,i, uo.

  • x˙|up,i is the value of x˙ at up,i, xo.

  • x˙o is the value of x˙ at the operating point.

  • y|xp,i is the value of y at xp,i, uo.

  • y|up,i is the value of y at up,i, xo.

  • yo is the value of y at the operating point.

User-Defined Blocks

All user defined blocks such as S-Function and MATLAB Function blocks, are compatible with linearization. These blocks are linearized using numerical perturbation.

User-defined blocks do not linearize when these blocks use non-floating-point precision data types. For more information, see Linearize Blocks with Non-Floating-Point Signals or States.

Look Up Tables

Regular look up tables are numerically perturbed. Pre-lookup tables have a preprogrammed (exact) block-by-block linearization.