System Dynamics

Sketching Bode plots

We can use MATLAB’s bode command to create Bode plots from LTI system models. However, we must understand how these plots relate to their transfer functions. In this section, we learn to sketch Bode plots in order to deepen our intuition of this relationship.

Let \(H(s) = \prod_i H_i(s)\); that is, let \(H(s)\) be the product of several factors \(H_i(s)\). The magnitude and phase are \[\begin{aligned} \abs{H(s)} = \prod_i \abs{H_i(s)} && \text{and} && \angle{H(s)} = \sum_i \angle{H_i(s)}. \end{aligned}\] The Bode plot consists of plots of \(20 \log_{10} \abs{H(s)}\) and \(\angle{H(s)}\) with \(s\mapsto j\omega\). The magnitude and phase expressions, become \[\begin{aligned} 20 \log_{10} \abs{H(j\omega)} = \sum_i 20 \log_{10} \abs{H_i(j\omega)} && \text{and} && \angle{H(j\omega)} = \sum_i \angle{H_i(j\omega)}. \end{aligned}\] This result means we can graphically sum both the magnitude and phase Bode plots of the individual factors of \(H(s)\), as long as we are adding magnitudes in dB.

Example 13.3

Given the transfer function $$\begin{aligned} H(s) &= \frac{200000 (s+1)} {s^3+110 s^2+11000 s+100000} \end{aligned}$$ answer the following questions and imperatives.

  1. Sketch a Bode plot.

  2. Confirm the accuracy of the sketch in Matlab, using the functions bode and tf.

  3. If the input to a system with this transfer function is 5sin (ωt+π/7), what is the output amplitude and phase for

    1. ω = 1 rad/s,

    2. ω = 10 rad/s, and

    3. ω = 1000 rad/s?

    Use Matlab’s function evalfr to perform the calculations.

a

To sketch the transfer function, we must decompose the transfer function into multiple simple factors. First, we can find the poles: $$\begin{aligned} -10, -50+j 86.6, -50-j 86.6, \end{aligned}$$ which tells us we have a complex conjugate pair and a single real pole. Factoring, accordingly, $$\begin{aligned} H(s) &= 200000 (s+1) \cdot \frac{1} {s+1} \cdot \frac{1} {s^2+100 s+10000} \\ &= 2 (s+1) \cdot \frac{1} {s/10+1} \cdot \frac{100^2} {s^2+2 \cdot 0.5 \cdot 100 s+100^2}. \end{aligned}$$ The sketch is shown in .

b

See the code listing below.

sys = 2e5*...
tf(...
  [1,1],...
  [1,110,11000,1e5]...
);
bode(sys);

c

The output amplitude is always 5|H(jω)| and output phase is always π/7 + ∠H(jω). We could estimate them from the Bode plot sketch, but we instead choose to evaluate the Matlab transfer function, as in the listing below.

The output amplitudes are 14, 71, and 1 and the output phases are 1.1, 1,  − 2.6 rad.

Online Resources for Section 13.5

No online resources.