I am working with the state-space representation of a PI controller for a system with a 1-step delay. When the integral gain $K_I$ is set to zero, the controller effectively becomes proportional-only. Under these conditions, I notice that the state transition matrix always has a real eigenvalue at $1 + 0j$ even the $K_P$ lower than ultimate gain and the system do converge ($e$ converge to 0).
Base equation
$$ []=[−1]−[−2] $$ $$ []=[−1]+_0 []+_1 [−1] $$ $$ []=(_0+_1 )[−1]+[−1]−_0 [−2] $$
State vector:
$$ x[k] = \begin{bmatrix} e[k] \\ u[k] \\ u[k-1] \end{bmatrix} $$
State transition equation:
$$ x[k] = \mathbf{A} x[k-1] $$ where: $$ \mathbf{A} = \begin{bmatrix} 1 & 0 & -k \\ (b_0 + b_1) & 1 & -b_0 k \\ 0 & 1 & 0 \end{bmatrix} $$ $$ b_0 = K_P+K_iT/2 $$ $$ b_1 = -K_P+K_iT/2 $$ When $K_I = 0$, the coefficients simplify to $b_1 = 0$, and the eigenvalue $1$ always appears.
Why does this happen, and what is the mathematical or control-theoretic reasoning behind this eigenvalue being $1$ when there is no integral gain?
Pole location on z-plane
I used numpy.linalg.eig to find eigenvalue od state stransition matrix.
