Effects
Tips

Extras: Digital Steady-State Error

Contents

For a continuous-time system design, we often use the Final Value Theorem

(1)$$ \lim_{t \rightarrow \infty}{x(t)} = x_{ss} = \lim_{s \rightarrow 0}{sX(s)}$$

to find the steady-state error for a given system and input. Recall that this theorem only holds if the poles of $sX(s)$ have negative real part. There is also a version of the Final Value Theorem for discrete-time systems. The discrete version of the Final Value Theorem is defined as follows

(2)$$ \lim_{k \rightarrow \infty}{x(k)} = x_{ss} = \lim_{z \rightarrow 1}{(1-z^{-1})X(z)}$$

where it is necessary that all poles of $(1- z ^{-1})X(z)$ are inside the unit circle.

For example, suppose we have the following discrete transfer function.

(3)$$ \frac{X(z)}{U(z)} = \frac{z + 0.5}{z^{2} - 0.6z + 0.3}$$

First, let's obtain the poles of this transfer function and see if they are located inside the unit circle. We can find the poles by hand or by employing the following MATLAB commands.

z = tf('z',-1);
sys_d = (z + 0.5)/(z^2 - 0.6*z + 0.3);
[p,z] = pzmap(sys_d)
p =
   0.3000 + 0.4583i
   0.3000 - 0.4583i
z =
   -0.5000

Since both poles are inside the unit circle, the Final Value Theorem will hold.

Finding steady-state error to the unit step input

Let the input $U(z)$ be the unit step input as shown below.

(4)$$ U(z) = \frac{1}{(1-z^{-1})} $$

The output $X(z)$ then is the following.

(5)$$ X(z) = \frac{(z+0.5)}{(z^{2}-0.6z+0.3)}\frac{1}{(1-z^{-1})}$$

Applying the Final Value Theorem yields the following.

(6)$$ x_{ss} = \lim_{z \rightarrow 1}(1-z^{-1})\frac{(z+0.5)}{(z^{2}-0.6z+0.3)}\frac{1}{(1-z^{-1})} = 2.14 $$

Therefore, the steady-state output of the above discrete-time system to a unit step input is 2.14. This corresponds to a steady-state error of 114%.

Let's confirm this by obtaining a step response plot of the system. Create a new m-file and enter the following commands. Running this m-file in the command window generates the step response shown below.

Ts = .05;
z = tf('z',Ts);
sys_d = (z + 0.5)/(z^2 - 0.6*z + 0.3);

step(sys_d,5);
grid
title('Discrete-Time Step Response')

The steady-state value is 2.14 as we expected.

Finding steady-state error to the impulse input

Now change the input $U(z)$ from a unit step to a unit impulse.

(7)$$ U(z) = 1 $$

Applying the Final Value Theorem again yields the following.

(8)$$ x_{ss} = \lim_{z \rightarrow 1}(1-z^{-1})\frac{(z+0.5)}{(z^{2}-0.6z+0.3)}(1) = 0 $$

Therefore, the steady-state output of the above system to a unit impulse input is 0.

Change the step command in the above m-file to the impulse command and rerun it in the MATLAB command window. You should see the following response.

Ts = .05;
z = tf('z',Ts);
sys_d = (z + 0.5)/(z^2 - 0.6*z + 0.3);

impulse(sys_d,5);
grid
title('Discrete-Time Impulse Response')

From this plot we see that the steady-state output to a unit impulse input is 0 as was predicted.