LMIs in Control/pages/H2-OSE

From testwiki
Jump to navigation Jump to search

LMIs in Control/pages/H2-OSE

The H2 norm of a stable system H is the root-mean-square of the impulse response of the system. The H2 norm measures the steady-state covariance (or power) of the output response to unit noise input. In this module, the goal of H2 optimal state estimation is to design an observer that minimizes the H2 norm of the closed loop transfer matrix

The System

Consider the continuous-time generalized plant P with state-space realization

x˙(t)=Ax(t)+B1u(t)+B2w(t)x(0)=x0y(t)=C1x(t)+D1u(t)+D2w(t)z(t)=C2x(t)

where it is assumed that (A,C2) is detectable. An observer of the form

The Data

  • xn, yl , zm are respectively the state vector, the measured

output vector, and the output vector of interests

  • wp and ur are the disturbance vector and the control vector,

respectively

  • A, B1, B2, C1, C2, D1, and D2 are the system coefficient matrices of

appropriate dimensions

The Optimization Problem

Given the system and a positive scalar γ we have to find the matrix L such that

||Gzw(s)||2 < γ

An observer of the form

x˙(t)=Ax(t)+(LyLy)+B1u(t)+B2w(t)x˙(t)=(A+LC1)x(t)Ly+(B1+LD1)u(t)+(B2+LD2)w(t)

is to be designed, where L is the observer gain.
Defining the error state as
e=xx^
The break dynamics are found to be

e˙=(A+LC1)e+(B2+LD2)wz¯(t)=C2e


For the system we introduce a full state observer in the following form:
x^˙=(A+LC1)x^Ly+(B1+LD1)u x^,L are the observation vector and the observer gain.
The transfer function for this case is
Gzw(s)=C2(sIALC1)1(B2+LD2)
and thus the problem of H2 state observer design is to find L such that
||Gzs(s)||2<γ

The LMI: LMI for H2 Observer estimation

The H2 state observer problem has a solution if and only if there exists a matrix W, a symmetric matrix Q and a symmetric matrix X such that

[XA+WC1+(XA+WC1)TXB2+WD2(XB2+WD2)TI]<0


[QC2C2TX]<0


trace(Q)<γ2


and from the solution of the above LMIs we can obtain the observer matrix as

L=X1W

Conclusion

Thus by formulation, we have converted the problem of H2 state observer design into an LMI feasibility problem by optimizing the above LMIs. In application we are often concerned with the problem of finding the minimal attenuation level γ

On implementation and optimization of the above LMI using YALMIP and MOSEK (or) SeDuMi we get 3 matrices as output, X,WandQ and also ρ which is used to calculate γ which is the H2 norm of the system.



There exists another set of LMIs which holds true for the same optimization problem as above.

ATY+C1TVT+YA+VC1+C2TC2<0


[ZYB2+VD2(YB2+VD2)TY]<0


trace(Z)<γ2

When a minimal ρ is obtained, the minimal attenuation level is

γ=ρ

Implementation

A link to the Matlab code for a simple implementation of this problem in the Github repository:

https://github.com/yashgvd/ygovada

H State Observer Design
Discrete time H2 State Observer Design

Return to Main Page:

Template:BookCat