Engineering Math Series 5: Damping, Forced Oscillation, and Resonance
The second-order differential equation becomes most interesting when **an external force keeps shaking the system**. In this case, looking at the natural response alone is not enough; you must also examine the forced response to the external input.
Basic Model
The representative equation is
$$m x'' + c x' + kx = F_0 \cos \omega t$$
The left side contains the system's internal inertia, damping, and restoring force, while the right side is the external periodic input.
The three important questions here are:
1. How does it settle down when there is no input
2. At what amplitude does it respond when there is input
3. Why does it shake particularly hard at certain frequencies
The Role of Damping
In the case without input,
$$m x'' + c x' + kx = 0$$
the behavior varies depending on the magnitude of damping $c$.
- Underdamped: oscillates while slowly decreasing
- Critically damped: settles down the fastest without oscillation
- Overdamped: settles down slowly without oscillation
In other words, damping is not simply a term that reduces energy, but a key element that changes the character of the system response.
The Core of Forced Oscillation
When there is an external force, the solution is usually split into two parts.
$$x(t) = x_h(t) + x_p(t)$$
- $x_h(t)$: solution of the homogeneous equation, i.e., the natural response
- $x_p(t)$: particular solution maintained by the external input
As sufficient time passes, in systems with damping, the natural response usually decays, and the forced response eventually dominates.
Why Does Resonance Occur
In a simple equation assuming no damping,
$$x'' + \omega_0^2 x = \cos \omega t$$
when the input frequency $\omega$ approaches the natural frequency $\omega_0$, the response amplitude grows. This phenomenon is resonance.
Ideally, with no damping and exactly
$$\omega = \omega_0$$
a form appears where the amplitude keeps growing with time. Real systems have damping so it does not grow indefinitely, but the response is still greatly amplified near certain frequencies.
A Short Worked Example
Consider the following equation.
$$x'' + 4x = \cos t$$
The characteristic equation is
$$r^2 + 4 = 0$$
so the homogeneous solution is
$$x_h = C_1 \cos 2t + C_2 \sin 2t$$
Assuming the particular solution as
$$x_p = A\cos t + B\sin t$$
and substituting,
$$x_p'' + 4x_p = (-A\cos t - B\sin t) + 4(A\cos t + B\sin t)$$
which gives
$$3A \cos t + 3B \sin t = \cos t$$
so
$$A = \frac{1}{3}, \quad B = 0$$
Therefore the complete solution is
$$x = C_1 \cos 2t + C_2 \sin 2t + \frac{1}{3}\cos t$$
Here, because the input frequency 1 differs from the natural frequency 2, resonance does not occur.
Engineering Applications
Buildings and Bridges
Earthquakes and wind are external excitations. If a structure's natural frequency matches the excitation frequency, dangerous resonance can occur, making damping and stiffness adjustment very important in design.
Circuits
RLC circuits have a similar structure. The phenomenon where current or voltage is greatly amplified at certain frequencies is central to filter and resonant circuit design.
Control Systems
In servo motors or robotic arms, mishandling sensitivity to certain frequency inputs can cause vibrations to grow.
Common Mistakes
Mixing up natural response and forced response
When external input is present, you must separate the homogeneous solution and particular solution.
Understanding resonance as "always a dangerous phenomenon"
Resonance can be dangerous, but in wireless communications or sensor design, it can also be a desired effect.
Ignoring damping
In real systems, damping has a large impact on response magnitude and stability. If you removed it for model simplification, you should always be aware of that limitation.
One-Line Summary
In forced oscillation problems, the relationship between the external input frequency and the system's natural frequency determines the response magnitude, and the core phenomenon is resonance.
Next Post Preview
In the next post, we will go beyond second-order to look at **higher-order ODEs and initial value problems**, clarifying why the number of conditions matches the order.
References
- Erwin Kreyszig, _Advanced Engineering Mathematics_, 10th Edition
- Leonard Meirovitch, _Principles and Techniques of Vibrations_
- MIT OpenCourseWare, Mechanical Vibrations
현재 단락 (1/54)
The second-order differential equation becomes most interesting when **an external force keeps shaki...