LMIs in Control/Applications/Mixed H2 and Hinf Satellite Attitude Control

From testwiki
Jump to navigation Jump to search

The System

Using the same formulation of the problem as in the H2 and Hinf feedback applications (linked below) the system is of the form:

Ixϕ¨+4(IyIz)ω02ϕ+(IyIzIz)ω0ψ˙=Tcx+TdxIyθ¨+3(IxIz)ω02θ=Tcy+TdyIzψ¨+(Ix+IzIy)ω0ψ˙=Tcz+Tdz

This formulation comes from the process described in Duan, page 371-373, steps 12.1 to 12.8.

  • Tc and Td are the flywheel torque and the disturbance torque respectively.
  • Ix, Iy, and Iz are the diagonalized inertias from the inertia matrix Ib.
  • ω0 = 7.292115 x 10-5 rad/s is the rotational angular velocity of the Earth, and θ, Φ, and ψ are the three Euler angles.


The LMI below utilizes the state space representation of the above system, which is described on the H2 and Hinf pages as well:

{x˙=Ax+B1u+B2dz=C1x+D1u+D2dz2=C2x

A=[0001000000100000014ω02IyzIx0000ω0IyzxIx03ω02IxzIy000000ω02IyxIzω0IyzxIx00]B1=B2=[0000000001Ix0001Iy0001Iz]C1=103×[4ω02Iyz000ω0Iyxz03ω02Ixz000000ω02Iyxω0Iyxz00]C2=[I3x303x3]D1=103×L1,D2=103×L2

  • Iab = Ia - Ib, Iabc = Ia - Ib - Ic
  • q=[ϕθψ], x = [q q']T , M = diag(Ix, Iy, Iz), zinf = 10-3 M q''', z2 = q

These formulations are found in Duan, page 374-375, steps 12.10 to 12.15.

The Data

Data required for this problem include the moment of inertias and angular velocities of the system. Knowledge of expected disturbances d would be beneficial.

The Optimization Problem

There are two requirements of this problem:

  • Closed-loop poles are restricted to a desired LMI region
    • Where 𝔻={s|s,L+sM+s¯MT<0}, L and M are matrices of correct dimensions and L is symmetric
  • Minimize the effect of disturbance d on output vectors z2 and zinf.


Design a state feedback control law

u = Kx

such that

  1. The closed-loop eigenvalues are located in 𝔻,
    • λ(A+BK) 𝔻
  2. That the H2 and Hinf performance conditions below are satisfied with a small γ and γ2:
    • Gzd=(C1+N2K)(sI(A+B1K))1B2+N1γ
    • Gz2d2=C2(sI(A+B1K))1B2γ2

The LMI: Mixed H2/Hinf Feedback Control

min cγ+c2ρ

s.t.

  • [ZC2XXC2TX]<0
  • trace(Z) < ρ
  • AX + B1W + (AX + B1W)T + BBT < 0
  • LX+M(AX+B1W)+MT(AX+B1W)T<0
  • [(AX+B1W)T+AX+B1WB1(C1X+D2W)TBγID1T(C1X+D2W)D1γI]<0


Gives a set of solutions to γ,ρ, and W, Z and X > 0, where ρ is equal to γ22.

Conclusion

Once the solutions are calculated, the state feedback gain matrix can be constructed as K = WX-1, and γ2 = ρ

Implementation

This LMI can be translated into MATLAB code that uses YALMIP and an LMI solver of choice such as MOSEK or CPLEX.

Template:BookCat