How to Determine Damping Ratio and Pole Zeros from a Differential Equation?

Click For Summary
SUMMARY

The discussion focuses on determining the damping ratio and pole zeros from the differential equation d²y/dt² - 57dy/dt + 10y = 63x using the Laplace transform. The transformed equation yields Y(s) = 63/(s² - 57s + 10), from which the poles are calculated using the quadratic formula, resulting in s = 28.5 ± 56.648. The analysis emphasizes that the input magnitude does not affect pole/zero locations or the damping ratio, as these are intrinsic to the system's transfer function H(s). A pole-zero diagram is essential for assessing system stability.

PREREQUISITES
  • Understanding of differential equations and their applications in system dynamics.
  • Familiarity with Laplace transforms and their role in control theory.
  • Knowledge of the quadratic formula for solving polynomial equations.
  • Basic concepts of transfer functions in control systems.
NEXT STEPS
  • Learn how to plot pole-zero diagrams for system stability analysis.
  • Study the implications of damping ratios on system response and stability.
  • Explore advanced Laplace transform techniques for complex systems.
  • Investigate the relationship between impulse inputs and system behavior in control theory.
USEFUL FOR

Control engineers, system analysts, and students studying dynamic systems who need to understand the behavior of systems described by differential equations.

Steve Collins
Messages
45
Reaction score
0
The following diff. equation describes the functionality of a system with respect to time. However, it is not known how the system will behave when stimulated. Apply a forward Laplace transform to determine damping ratio and pole zeros. Plot a pole zero diagram and comment on stability.

d2y/dt2 + 6dy/dt + 10y = 63dy/dt + 63xPutting like terms on either side of the equation:

d2y/dt2 + 6dy/dt - 63dy/dt + 10y = 63x

= d2y/dt2 - 57dy/dt + 10y = 63x

Laplace transform:

s2Y(s) - 57sY(s) + 10Y(s) = 63 ... (63 because unit impulse used to stimulate?)

Simplify for Y(s):

Y(s).(s2 - 57s + 10) = 63

Solve for Y(s):

Y(s) = 63/(s2 - 57s + 10)

Using quadratic formula to find poles:

s= (57 +/- √572 - 4 x 1 x 10)/(2 x 1)

= (57 +/- 56.648)/2 = 28.5 +/- 56.648 (I was expecting a complex number!)

I think that I am nearly there, but I suspect that I have gone wrong.
 
Last edited:
Physics news on Phys.org
Steve Collins said:
The following diff. equation describes the functionality of a system with respect to time. However, it is not known how the system will behave when stimulated. Apply a forward Laplace transform to determine damping ratio and pole zeros. Plot a pole zero diagram and comment on stability.

d2y/dt2 + 6dy/dt + 10y = 63dy/dt + 63x


Putting like terms on either side of the equation:

d2y/dt2 + 6dy/dt - 63dy/dt + 10y = 63x

= d2y/dt2 - 57dy/dt + 10y = 63x

Laplace transform:

s2Y(s) - 57sY(s) + 10Y(s) = 63 ... (63 because unit impulse used to stimulate?)

Factor out Y(s)F(s) = X(s) from the above transformed equation with X(s) = 1 (unit impulse input).

Then Y(s)/X(s) = 1/F(s) and let H(s) = 1/F(s) so that now Y(s) = X(s)H(s). H(s) is now the system transfer function. Given any X(s) you can now compute Y(s) and consequently y(t).

Note that the magnitude of the input impulse has nothing to do with pole/zero location, nor damping ratio. You only use it if you want to compute Y(s) and y(t).

Note also that with an impulse input, all the poles & zeros of the output Y(s) are due to the system H(s) only.