DEV Community

Cover image for Natural Frequency and Resonance: Why Structures Have a Frequency They Hate
NovaSolver
NovaSolver

Posted on • Originally published at novasolver.jp

Natural Frequency and Resonance: Why Structures Have a Frequency They Hate

In 1831, a column of soldiers marched across the Broughton Suspension Bridge near Manchester and the bridge collapsed. The cadence of the march happened to match a frequency the structure responded to strongly, and each footfall added a little more energy than the bridge could shed. Armies have broken step on bridges ever since. The physics behind that order is the same physics that makes a wine glass shatter to a held note and a car mirror blur at one specific engine speed: every structure has a natural frequency, and feeding it energy at that frequency is dangerous.

This article explains where natural frequency comes from, what resonance actually does to the response amplitude, works a concrete example, and lists the traps that catch engineers when they ignore it.

Why this calculation matters

Resonance is not a rare failure mode reserved for textbooks. Rotating machinery sweeps through a range of speeds and crosses structural natural frequencies on the way. Pumps, fans, and compressors run at fixed speeds that may sit uncomfortably close to a resonance of their support frame. Electronic enclosures on vehicles see broadband vibration that excites whatever frequency the board happens to have. In each case the question is the same: how close is the forcing to a natural frequency, and how much will the response grow if they coincide?

The reason this deserves a calculation rather than a guess is that the penalty for getting it wrong is not linear. Away from resonance, a structure responds roughly in proportion to the force. At resonance the response can be many times larger, set by the damping alone. A design that looks comfortable on a static check can still fail because a modest dynamic input arrived at exactly the wrong frequency.

The core formula

Natural frequency is a property of mass and stiffness. For a simple oscillator of stiffness k and mass m:

omega_n = sqrt(k / m)        (rad/s)
f_n     = omega_n / (2*pi)   (Hz)
Enter fullscreen mode Exit fullscreen mode

Resonance is what happens when the forcing frequency approaches f_n. The steady response of a damped system to a harmonic force is governed by the dynamic magnification factor, which compares the vibration amplitude to the deflection the same force would cause if applied slowly (statically). Writing r for the frequency ratio (forcing frequency divided by f_n) and zeta for the damping ratio:

M(r) = 1 / sqrt( (1 - r^2)^2 + (2*zeta*r)^2 )
Enter fullscreen mode Exit fullscreen mode

When the forcing is slow, r is near zero and M is near 1 — the structure simply follows the force. When the forcing is fast, r is large and M falls toward zero — the mass cannot keep up. The interesting region is r near 1, where the response peaks. At resonance the magnification reaches its maximum value, the quality factor:

Q = 1 / (2 * zeta)
Enter fullscreen mode Exit fullscreen mode

This single result is the heart of the matter. The peak amplification depends only on damping. Halve the damping and you double the resonant response. A lightly damped structure with zeta = 0.01 amplifies a resonant input fiftyfold; a heavily damped one with zeta = 0.5 barely amplifies at all.

A worked example

Consider a lightly damped structure with a natural frequency f_n = 5 Hz and a damping ratio zeta = 0.05.

Step 1 — the quality factor.

Q = 1 / (2 * zeta)
Q = 1 / (2 * 0.05)
Q = 1 / 0.10 = 10
Enter fullscreen mode Exit fullscreen mode

The structure amplifies a resonant input by a factor of about 10.

Step 2 — translate that into displacement. Suppose a force applied slowly would push the structure 1 mm to one side — its static deflection. At resonance the same force, applied harmonically at 5 Hz, produces:

amplitude at resonance = Q * static deflection
amplitude at resonance = 10 * 1 mm = 10 mm
Enter fullscreen mode Exit fullscreen mode

A 1 mm static problem has become a 10 mm vibration problem, purely because the forcing found the natural frequency.

Step 3 — identify a realistic source. A rotating machine produces a once-per-revolution force from any residual imbalance. A machine running at 300 rpm turns 300/60 = 5 times per second, so its excitation frequency is exactly 5 Hz. That machine, mounted on this structure, drives it right at resonance. The fix is not to make the force smaller — it is to move either the machine speed or the structural frequency so the two no longer coincide.

Common mistakes

Treating a static check as sufficient. A structure can carry a load comfortably yet fail under a far smaller dynamic load that happens to be resonant. The static result and the resonant result differ by the factor Q, and Q is often 10 or more.

Designing a natural frequency to sit right at the operating speed. Coincidence of f_n and the running speed is the worst case, not a neutral one. Aim to keep the natural frequency well above or well below the excitation, with a clear margin — a frequency ratio comfortably away from 1 in either direction.

Assuming more stiffness is always safer. Stiffening a structure raises its natural frequency. That helps if the resonance was below the operating speed, but it can drag a previously safe frequency down onto the excitation. The right move depends on which side of resonance you start from.

Forgetting that real systems have many natural frequencies. A structure does not have one resonance but a series of them. Clearing the first does not guarantee the second, third, and higher modes are also clear of the excitation and its harmonics.

Try the interactive NovaSolver calculator

Resonance is far easier to feel than to read about. The Resonance Frequency Simulator on NovaSolver lets you tune mass, spring stiffness, and damping ratio and watch the resonance curve reshape in real time, with the natural frequency, Q factor, amplitude ratio, and half-power bandwidth reported instantly. Drop the damping and you can see the peak shoot up exactly as 1/(2*zeta) predicts.

Related calculators

Browse the complete collection in the vibration tools hub.

Closing note

Natural frequency and resonance reward a small amount of arithmetic with a large amount of insight. Remember the chain: natural frequency comes from stiffness over mass, the danger is forcing the structure at that frequency, and the size of the danger is the quality factor Q = 1/(2*zeta), which depends on damping alone. Find your structure's natural frequencies early, compare them honestly against every excitation in the design, and keep a margin. Most resonance failures are not subtle — they are simply unchecked.

Top comments (0)