| Robust Control Toolbox | |
| Provide feedback about this page |
Hankel minimum degree approximation (MDA) without balancing
Syntax
GRED = hankelmr(G) GRED = hankelmr(G,order) [GRED,redinfo] = hankelmr(G,key1,value1,...) [GRED,redinfo] = hankelmr(G,order,key1,value1,...)
Description
hankelmr
returns a reduced order model GRED of G and a struct array redinfo containing the error bound of the reduced model and Hankel singular values of the original system.
The error bound is computed based on Hankel singular values of G. For a stable system Hankel singular values indicate the respective state energy of the system. Hence, reduced order can be directly determined by examining the system Hankel SV's, 
.
With only one input argument G, the function will show a Hankel singular value plot of the original model and prompt for model order number to reduce.
This method guarantees an error bound on the infinity norm of the additive
error || G-GRED ||
for well-conditioned model reduced problems [1]:
This table describes input arguments for hankelmr.
A batch run of a serial of different reduced order models can be generated by specifying order = x:y, or a vector of integers. By default, all the anti-stable part of a system is kept, because from control stability point of view, getting rid of unstable state(s) is dangerous to model a system.
'MaxError' can be specified in the same fashion as an alternative for 'ORDER'. In this case, reduced order will be determined when the sum of the tails of the Hankel sv's reaches the 'MaxError'.
Weights on the original model input and/or output can make the model reduction algorithm focus on some frequency range of interests. But weights have to be stable, minimum phase and invertible.
This table describes output arguments.
| Argument |
Description |
|---|---|
GRED |
LTI reduced order model. Become multi-dimensional array when input is a serial of different model order array. |
REDINFO |
A STRUCT array with 4 fields: |
G can be stable or unstable, continuous or discrete.
Note
If size(GRED) is not equal to the order you specified. The optimal Hankel MDA algorithm has selected the best Minimum Degree Approximate it can find within the allowable machine accuracy.
|
Algorithm
Given a state-space (A,B,C,D) of a system and k, the desired reduced order, the following steps will produce a similarity transformation to truncate the original state space system to the kth order reduced model.
Take SVD of descriptor E and partition the result into kth order truncation form
The proof of the Hankel MDA algorithm can be found in [2]. The error system between the original system G and the Zeroth Order Hankel MDA G0 is an all-pass function [1].
Example
Given a continuous or discrete, stable or unstable system, G, the following commands can get a set of reduced order models based on your selections:
rand('state',1234); randn('state',5678);G = rss(30,5,4); [g1, redinfo1] = hankelmr(G); % display Hankel SV plot % and prompt for order (try 15:20) [g2, redinfo2] = hankelmr(G,20); [g3, redinfo3] = hankelmr(G,[10:2:18]); [g4, redinfo4] = hankelmr(G,'MaxError',[0.01, 0.05]); rand('state',12345); randn('state',6789); wt1 = rss(6,5,5); wt1.d = eye(5)*2; wt2 = rss(6,4,4); wt2.d = 2*eye(4); [g5, redinfo5] = hankelmr(G, [10:2:18], 'weight',{wt1,wt2}); for i = 1:5 figure(i); eval(['sigma(G,g' num2str(i) ');']); end
Figure 5-6, Singular Value Bode Plot of G (30-state, 5 outputs, 4 inputs) shows a singular value Bode plot of a random system G with 20 states, 5 output and 4 inputs. The error system between G and its Zeroth order Hankel MDA has it infinity norm equals to an all pass function, as shown in Figure 5-7, All-Pass Error System Between G and Zeroth Order G Anticausal (ref.: [5]).
The Zeroth order Hankel MDA and its error system sigma plot are obtained via commands
This interesting all-pass property is unique in Hankel MDA model reduction.
Figure 5-6: Singular Value Bode Plot of G (30-state, 5 outputs, 4 inputs)
Figure 5-7: All-Pass Error System Between G and Zeroth Order G Anticausal
Reference
[1] Glover, K., "All Optimal Hankel Norm Approximation of Linear
Multivariable Systems, and Their L
- error Bounds," Int. J. Control, vol. 39,
no. 6, pp. 1145-1193, 1984.
[2] Safonov, M.G., R.Y. Chiang, and D.J.N. Limebeer, "Optimal Hankel Model Reduction for Nonminimal Systems," IEEE Trans. on Automat. Contr., vol. 35, no. 4, April 1990, pp. 496-502.
See Also
reduce Top level model reduction routines
balancmr Balanced truncation via square-root method
schurmr Balanced truncation via Schur method
bstmr Balanced stochastic truncation via Schur method
ncfmr Balanced truncation for normalized coprime factors
hankelsv Hankel singular value
| Provide feedback about this page |
![]() | h2syn | hankelsv | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |