Inverse of State-space representation (control)

5.2k Views Asked by At

Ask two questions from a paper (2012 ACC):

Consider the plant:

enter image description here

Let X be the stabilizing solution of the Riccati equation:

enter image description here

where enter image description here.
Define the LQR gain by enter image description here.

The transfer matrix enter image description here has a left spectral factorization enter image description here,
where WL is given by

enter image description here

Questions:

  1. If I know the $W_L$, how to derive the $W_L^{-1}$, (bottom one)

  2. (Basic question) Why does the Riccati equation is $(A, B_2, C_1)$ not $(A, B_1, C_1)$ or $(A, B_2, C_2)$?

1

There are 1 best solutions below

1
On BEST ANSWER

First question is about inverting a state space system that represents the dynamics from $u$ to $y$ such that the representation is from $y$ to $u$.

If you write down the equations explicitly:

$$ \begin{align} \dot x &= Ax+Bu\\ y &= Cx+Du \end{align} $$ Now assuming $D$ is invertible, we get

$$ \begin{align} \dot x &= Ax+B(-D^{-1}Cx + D^{-1}y)\\ u &= -D^{-1}Cx + D^{-1}y \end{align} $$ So the state space from $y$ to $u$ is given by the realization $$ G^{-1}(s) = \begin{bmatrix}A-BD^{-1}C &BD^{-1}\\-CD^{-1}&D^{-1}\end{bmatrix} $$

Then you can see the similarity between this inverse and $W_L$.

For the second question, in Linear Quadratic Cost function you would like to add the cost of the input to your cost function. In this formulation, often $B_1$ is the disturbance input to the system and $B_2$ models the input matrix.

Hence you want the second input appearing on the performance channel.