LMIs in Control/pages/H-infinity filtering

From testwiki
Jump to navigation Jump to search

LMIs in Control/pages/H-infinity filtering

For systems that have disturbances, filtering can be used to reduce the effects of these disturbances. Described on this page is a method of attaining a filter that will reduce the effects of the disturbances as completely as possible. To do this, we look to find a set of new coefficient matrices that describe the filtered system. The process to achieve such a new system is described below. The H-infinity-filter tries to minimize the maximum magnitude of error.

The System

For the application of this LMI, we will look at linear systems that can be represented in state space as

x˙=Ax+Bw,x(0)=x0y=Cx+Dwz=Lx

where xRn,yRl,zRm represent the state vector, the measured output vector, and the output vector of interest, respectively, wRp is the disturbance vector, and A,B,C,D and L are the system matrices of appropriate dimension.

To further define: x is Rn and is the state vector, A is Rn*n and is the state matrix, B is Rn*r and is the input matrix, w is Rr and is the exogenous input, C is Rm*n and is the output matrix, D and L are Rm*r and are feedthrough matrices, and y and z are Rm and are the output and the output of interest, respectively.

The Data

The data are w (the disturbance vector), and A,B,C,D and L (the system matrices). Furthermore, the A matrix is assumed to be stable

The Optimization Problem

We need to design a filter that will eliminate the effects of the disturbances as best we can. For this, we take a filter of the following form:

σ˙=Afσ+Bfσ,σ(0)=σ0z^=Cfσ+Dfy,

where σRn is the state vector, z^Rm is the estimation vector of z, and Af,Bf,Cf,andDf are the coefficient matrices of appropriate dimensions.

Note that the combined complete system can be represented as

x˙e=A~xe+B~w,xe(0)=xe0z~=C~xe+D~w,

where z~=zz^Rm is the estimation error,

xe=[xσ]

is the state vector of the system, and A~,B~,C~,D~ are the coefficient matrices, defined as:

A~=[A0BfCAf],B~=[BBfD],C~=[LDfCCf],D~=DfD

In other words, for the system defined above we need to find Af,Bf,Cf,andDf such that

|Gz~w(s)|inf<γ,

where γ is a positive constant, and

Gz~w(s)=C~(sIA~)1B~+D~.

The LMI: H-inf Filtering

The solution can be obtained by finding matrices R,X,M,N,Z,Df that obey the following LMIs:

X>0RX>0[RA+ATR+ZC+CTZT***MT+ZC+XAMT+M**BTR+DTZTBTX+DTZTγI*LDfCNDfDγI]<0

Conclusion:

To find the corresponding filter, use the optimized matrices from the solution to find:

Af=X1M,Bf=X1Z,Cf=N,Df=Df

These matrices can then be used to produce A~,B~,C~,D~ to construct the filter described above, that will best eliminate the disturbances of the system.

Implementation

This implementation requires Yalmip and Sedumi.

https://github.com/rezajamesahmed/LMImatlabcode/blob/master/hinf_filtering.m

H-2_filtering

This LMI comes from

  • [1] - "LMIs in Control Systems: Analysis, Design and Applications" by Guang-Ren Duan and Hai-Hua Yu

Other resources:


References

Duan, G. (2013). LMIs in control systems: analysis, design and applications. Boca Raton: CRC Press, Taylor & Francis Group.

Return to Main Page:

Template:BookCat