LMIs in Control/pages/Optimal Output Feedback H2 LMI: Difference between revisions

From testwiki
Jump to navigation Jump to search
imported>Eoskowro
 
(No difference)

Latest revision as of 02:02, 8 December 2019

Optimal Output Feedback H2 LMI

Similar to state feedback, output feedback is necessary when information about the output is not known. Often techniques such as Kalman filtering are implemented to tackle this problem. The method below, however, does not use a filtering technique and instead uses a combination of LMI constraints to perform the output feedback as well as find the minimal bound on the H2 norm of the system. H2 is often done using more classical tools such as Riccati equations. More recently LMI techniques have been created to solve problems such as full state feedback or output feedback as seen below.

The System

The system is represented using the 9-matrix notation shown below.

[x˙zy]=[AB1B2C1D11D12C2D21D22][xwu]

where x(t)n is the state, z(t)p is the regulated output, y(t)q is the sensed output, w(t)r is the exogenous input, and u(t)m is the actuator input, at any t.

The Data

A, B1, B2, C1, C2, D11, D12, D21, D22 are known.

The LMI: Optimal Output Feedback H2 Control LMI

The following are equivalent.

1) There exists a K^=[AKBKCKDK] such that ||S(K,P)||H2<γ

2) There exists X1, Y1, Z, An, Bn, Cn, Dn such that

[AY1+Y1AT+B2Cn+CnB2T*T*TAT+An+(B2DnC2)TX1A+AT+BnC2+C2TBnT*T(B1+B2DnD21)T(X1B1+BnD21)TγI]<0
[Y1*T*TIX1*TC1Y1+D12CnC1+D12DnC2Z]>0
D11+D12DnD21=0
trace(Z)<γ2

Conclusion:

The above LMI determines the the upper bound γ on the H2 norm. In addition to this the controller K^(AK,BK,CK,DK) can also be recovered.

DK=(I+DK2D22)1DK2
BK=BK2(I+D22DK)
CK=(I+DKD22)CK2
AK=AK2BK(I+D22DK)1D22CK

where,

[AK2BK2CK2DK2]=[X2X1B20I]1[[AnBnCnDn][X1AY1000]][Y2T0C2Y1I]1

for any full-rank X2 and Y2 such that

[X1X2X2TX3]=[Y1Y2B2Y2TY3]1.

Implementation

This implementation requires Yalmip and Sedumi. https://github.com/eoskowro/LMI/blob/master/OF_H2.m

Optimal Output Feedback Hinf


A list of references documenting and validating the LMI.


Return to Main Page:

Template:BookCat