Control System Toolbox Previous page   Next Page
hsvd

Computes the Hankel singular values of an LTI model

Syntax

hsv = hsvd(sys)
hsvd(sys)
[hsv,baldata] = hsvd(sys)

Description

hsv = hsvd(sys) computes the Hankel singular values hsv of the LTI model sys. In state coordinates that equalize the input-to-state and state-to-output energy transfers, the Hankel singular values measure the contribution of each state to the input/output behavior. Hankel singular values are to model order what singular values are to matrix rank. In particular, small Hankel singular values signal states that can be discarded to simplify the model (see balred).

For models with unstable poles, hsvd only computes the Hankel singular values of the stable part and entries of hsv corresponding to unstable modes are set to Inf. Use

to specify additional options for the stable/unstable decomposition, see STABSEP for details. The default values are ATOL=0, RTOL=1e-8, and ALPHA=1e-8.

hsvd(sys) displays a plot of the Hankel singular values.

[hsv,baldata] = hsvd(sys) returns additional data to speed up model order reduction with balred. For example

computes 3 approximations of sys of orders 8, 9, 10.

There is more than one hsvd available. Type

for more information.

Algorithm

The AbsTol, RelTol, and ALPHA parameters are only used for models with unstable or marginally stable dynamics. Because Hankel singular values are only meaningful for stable dynamics, hsvd must first splitsuch models into the sum of their stable and unstable parts:

This decomposition can be tricky when the model has modes close to the stability boundary (e.g., a pole at s=-1e-10), or clusters of modes on the stability boundary (e.g., double or triple integrators).While hsvd is able to overcome these difficulties in most cases, it sometimes produces unexpected results such as

  1. Large Hankel singular values for the stable part.
  1. This happens when the stable part G_s contains some poles very close to the stability boundary. To force such modes into the unstable group, increase the 'Offset' option to slightly grow the unstable region.

  1. Too many modes are labeled "unstable." For example, you see 5 red bars in the HSV plot when your model had only 2 unstable poles.
  1. The stable/unstable decomposition algorithm has built-in accuracy checks that reject decompositions causing a significant loss of accuracy in the frequency response. Such loss of accuracy arises, e.g., when trying to split a cluster of stable and unstable modes near s=0. Because such clusters are numerically equivalent to a multiple pole at s=0, it is actually desirable to treat the whole cluster as unstable. In some cases, however, large relative errors in low-gain frequency bands can trip the accuracy checks and lead to a rejection of valid decompositions. Additional modes are then absorbed into the unstable part G_ns, unduly increasing its order.

    Such issues can be easily corrected by adjusting the AbsTol and RelTol tolerances. By setting AbsTol to a fraction of smallest gain of interest in your model, you tell the algorithm to ignore errors below a certain gain threshold. By increasing RelTol, you tell the algorithm to sacrifice some relative model accuracy in exchange for keeping more modes in the stable part G_s.

Examples

These examples illustrate the use of AbsTol and offset.

Example 1: Large Hankel singular values for the stable part.

First, create a system with a stable pole very near to 0, then calculate the Hankel singular values.

Notice the dominant Hankel singular value with 1e5 magnitude, due to the mode s=-1e-7 near the imaginary axis. Set the offset=1e-6 to treat this mode as unstable

The dominant Hankel singular value is now shown as unstable.

Example 2: Too many modes are labeled as unstable.

Create a system with three unstable modes. Then calculate the Hankel singular values.

There are 3 unstable modes, but there are 7 "unstable" Hankel singular values on the plot.

Note the low gain of -400 dB near to pole s=1e3 (w=1e3 rad/s). Try increasing the absolute tolerance to AbsTol = 1e-16 (= -320 dB).

This fixed the problem, as this figure shows.

There are now only three unstable modes, the corrrect number for the system sys.

See Also
balred Model order reduction

balreal Gramian-based balancing of state-space realizations


Previous page  hasdelay hsvplot Next page

© 1994-2005 The MathWorks, Inc.