LMIs in Control/pages/LQ Regulation via H2 Control

From testwiki
Jump to navigation Jump to search

LQ Regulation via H2 Control

Suppose people were interested in quadratic optimal regulation problem, where instead of the Ricatti equation approach (which is traditionally used in such situations), it is approached using LMI's instead (thereby making it a Linear Quadratic (LQ) problem). Such an approach would be possible by converting the LQ problem into a standard H2 problem.

The System

Consider, for example, constant linear multi-variable system in the form of:

x˙=Ax+Bu,x(0)=x0,

where

xn and ur are the state and input vectors, respectively, and A and B are the system coefficient matrices of appropriate dimensions,

Then the LQ optimal regulation problem for the given system is stated as described below.

The Data

In order to obtain the LMI, we need the following 3 matrices: A, B, Q, and R (the latter two of which are obtained as follows).

The Optimization Problem

Using the multi-variable system as described above, we can see that the optimal state feedback controller u=Kx is obtained where

J(x,u)=0(xTQx+uTRu)dt

is minimized where Q=QT0 and R=RT0. However, it is to be noted that in order for the problem to have a solution, two assumptions are made - both of which must be held true at all times:

1)(A,B) is stabilizable, and
2)(A,L) is observable, where L=Q1/2.

Relating this to H2 performance, let us now consider the auxiliary system:

{x˙=Ax+Bu+x0ωy=Cx+Du,

where ω represents an impulse disturbance, and

C=[Q1/20]D=[0R1/2]

Using the state feedback controller u=Kx and applying it on the above auxiliary system results in the closed-loop system:

{x˙=(A+BK)x+x0ωy=(C+DK)x,

and the resulting transfer function from disturbance ω to output y being:

Gyω=(C+DK)[sI(A+BK)]1x0

thereby resulting in J(x,u)=||Gyω||22.

The LMI: LQ Regulation via H2 Control

From the given pieces of information, and letting the 2 assumptions as described above hold, then there exist matrices X𝕊n, Y𝕊r and Wrxn satisfying:

(AX+BW)+(AX+BW)T+x0x0T<0trace(Q1/2X(Q1/2)T)+trace(Y)<γ[YR1/2W(R1/2W)TX]<0

Conclusion:

From the LMI, it can be seen that the state feedback control in the form of u=Kx (where K=WX1) exists such that J(x,u)<γ if and only if the matrices XY, and W are of the appropriate matrix sizes.

Implementation

  • Example Code - A GitHub link that contains code (titled "LQRegH2.m") that demonstrates how this LMI can be implemented using MATLAB-YALMIP.
  • [[../LMI for System H2 Norm/]] - LMI to determine the H2-norm of a system.

A list of references documenting and validating the LMI.

Return to Main Page:

Template:BookCat