LMIs in Control/pages/Quadratic DStabilization

From testwiki
Jump to navigation Jump to search

Continuous-Time D-Stability Controller

This LMI will let you place poles at a specific location based on system performance like rising time, settling time and percent overshoot, while also ensuring the stability of the system.



The System

Suppose we were given the continuous-time system

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

whose stability was not known, and where Amxm, Bmxn, Cpxm, and Dqxn for any t.

Adding uncertainty to the system

x˙(t)=(A+Ai)x(t)+(B+Bi)u(t)


The Data

In order to properly define the acceptable region of the poles in the complex plane, we need the following pieces of data:

  • matrices A, B, Ai, Bi
  • rise time (tr)
  • settling time (ts)
  • percent overshoot (Mp)

Having these pieces of information will now help us in formulating the optimization problem.

The Optimization Problem

Using the data given above, we can now define our optimization problem. In order to do that, we have to first define the acceptable region in the complex plane that the poles can lie on using the following inequality constraints:

Rise Time: ωn1.8tr

Settling Time: σ4.6ts

Percent Overshoot: σln(Mp)π|ωd|

Assume that z is the complex pole location, then:

ωn2=z2=z*zωd=Imz=(zz*)2σ=Rez=(z+z*)2

This then allows us to modify our inequality constraints as:

Rise Time: z*z1.82tr20

Settling Time: (z+z*)2+4.6ts0

Percent Overshoot: zz*+πln(Mp)|z+z*|0

which not only allows us to map the relationship between complex pole locations and inequality constraints but it also now allows us to easily formulate our LMIs for this problem.

The LMI: An LMI for Quadratic D-Stabilization

Suppose there exists X>0 and Z such that


[rPAP+BZ(AP+BZ)TrP]+[0AiP+BiZ(AiP+BiZ)T0]<0AP+BZ+(AP+BZ)T+AiP+BiZ+(AiP+BiZ)T+2αP<0,and
[AP+BZ+(AP+BZ)Tc(AP+BZ(AP+BZ)T)c((AP+BZ)T(AP+BZ))AP+BZ+(AP+BZ)T]+[AiP+BiZ+(AiP+BiZ)Tc(AiP+BiZ(AiP+BiZ)T)c((AiP+BiZ)T(AiP+BiZ))AiP+BiZ+(AiP+BiZ)T]<0

for i=1,...,k

Conclusion:

Given the resulting controller K=ZP1, we can now determine that the pole locations z of A(Δ)+B(Δ)K satisfies the inequality constraints |x|r, Re(x)α and z+z*c|zz*| for all ΔC0(Δ1,...,Δk)

Implementation

The implementation of this LMI requires Yalmip and Sedumi https://github.com/JalpeshBhadra/LMI/blob/master/quadraticDstabilization.m

  • [[../Continuous Time D-Stability Observer/]] - Equivalent D-stability LMI for a continuous-time observer.

Return to Main Page:

Template:BookCat