LMIs in Control/pages/KYP Lemma (Bounded Real Lemma)

From testwiki
Revision as of 22:52, 27 April 2022 by imported>ShakespeareFan00
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

KYP Lemma (Bounded Real Lemma)

The Kalman–Popov–Yakubovich (KYP) Lemma is a widely used lemma in control theory. It is sometimes also referred to as the Bounded Real Lemma. The KYP lemma can be used to determine the H norm of a system and is also useful for proving many LMI results.

The System

x˙(t)=Ax(t)+Bu(t)y(t)=Cx(t)+Du(t)x(0)=x0

where x(t)n, y(t)m, u(t)q, at any t.

The Data

The matrices A,B,C,D are known.

The Optimization Problem

The following optimization problem must be solved.

minimizeγ,XγsubjecttoX>0[ATX+XAXBBTXγI]+1γ[CTDT][CD]<0

The LMI: The KYP or Bounded Real Lemma

Suppose G^(s)(A,B,C,D) is the system. Then the following are equivalent.

1)GHγ
2)There exists aX>0such that
[ATX+XAXBBTXγI]+1γ[CTDT][CD]<0

Conclusion:

The KYP Lemma can be used to find the bound γ on the H norm of a system. Note from the (1,1) block of the LMI we know that A is Hurwitz.

Implementation

Since the KYP lemma shown above is nonlinear in gamma, in order to implement it in MATLAB we must first linearize it by using the Schur Complement to arrive at the dual formulation below:

[ATX+XAXBCTBTXγIDTCDγI]<0.

This dual KYP LMI is now linear in both X and γ.

This implementation requires the use of Yalmip and Sedumi.

https://github.com/eoskowro/LMI/blob/master/KYP_Lemma_LMI.m

Positive Real Lemma

A list of references documenting and validating the LMI.


Return to Main Page:

Template:BookCat