Rules For Making Bode Plots: Term Magnitude Phase
Rules For Making Bode Plots: Term Magnitude Phase
Notes:
* Rules for drawing zeros create the mirror image (around 0 dB, or 0 ) of those for a pole with the same 0.
† For underdamped poles and zeros peak exists only for 0
1 and peak freq. is typically very near
0.707 0.
2
‡ For underdamped poles and zeros If <0.02 draw phase vertically from 0 to -180 degrees at 0
For nth order pole or zero make asymptotes, peaks and slopes n times higher than shown (i.e., second order asymptote
is -40 dB/dec, and phase goes from 0 to –180o). Don’t change frequencies, only plot values and slopes.
© Copyright 2005-2009 Erik Cheever This page may be freely used for educational purposes.
Comments? Questions? Suggestions? Corrections?
Erik Cheever Department of Engineering Swarthmore College
Quick Reference for Making Bode Plots
If starting with a transfer function of the form (some of the coefficients bi, ai may be zero).
s n b1s b0
H(s) C m
s a1s a 0
Factor polynomial into real factors and complex conjugate pairs (p can be positive, negative, or zero; p is zero if a0 and b0 are both non-zero).
p
s z1 s z2 s2 2 z1 s
0z1
2
0z1 s2 2 z2 0z2s 2
0z2
H(s) C s
s p1 s p2 s2 2 p1 s
0p1
2
0p1 s2 2 p2 0p2 s 2
0p2
2 2
s s s s s s
1 2 z1 1 2 z2 1
z1 z2 0z1 0z1 0z2 0z2
K sp 2 2
s s s s s s
1 1 2 p1 1 2 p2 1
p1 p2 0p1 0p1 0p2 0p2
Take the terms (constant, real poles and zeros, origin poles and zeros, complex poles and zeros) one by one and plot magnitude and phase
according to rules on previous page. Add up resulting plots.
© Copyright 2005-2009 Erik Cheever This page may be freely used for educational purposes.
Comments? Questions? Suggestions? Corrections?
Erik Cheever Department of Engineering Swarthmore College
Matlab Tools for Bode Plots
>> n=[1 11 10]; %A numerator polynomial (arbitrary)
>> d=[1 10 10000 0]; %Denominator polynomial (arbitrary)
>> sys=tf(n,d)
Transfer function:
s^2 + 11 s + 10
----------------------
s^3 + 10 s^2 + 10000 s
>> abs(fr)
ans = 0.0014
>> %You can even find impulse and step response from transfer function.
>> step(sys)
>> impulse(sys)
© Copyright 2005-2009 Erik Cheever This page may be freely used for educational purposes.
Comments? Questions? Suggestions? Corrections?
Erik Cheever Department of Engineering Swarthmore College
>> [n,d]=tfdata(sys,'v') %Get numerator and denominator.
n =
0 1 11 10
d =
1 10 10000 0
© Copyright 2005-2009 Erik Cheever This page may be freely used for educational purposes.
Comments? Questions? Suggestions? Corrections?
Erik Cheever Department of Engineering Swarthmore College