DEV Community

Cover image for Organ Pipe Resonance: How Pipe Length and End Conditions Set the Note
NovaSolver
NovaSolver

Posted on Originally published at novasolver.jp

Organ Pipe Resonance: How Pipe Length and End Conditions Set the Note

Stand in front of a pipe organ and you are looking at acoustics made visible. The longest pipes growl at the bottom of hearing; the shortest whistle near the top. The organ builder chose every length deliberately, because a column of air, like a guitar string, can only resonate at a discrete set of frequencies fixed by its geometry. The same physics tunes a flute, a didgeridoo, and the exhaust note of an engine.

This article explains how an air column selects its resonant frequencies, why the open and closed ends behave so differently, and how to compute the harmonic series for either case with a worked example you can check by hand.

Why this calculation matters

The resonance of an air column is the foundation of every wind instrument and of a surprising amount of practical engineering acoustics. A flute, an organ pipe, and a trombone are all air columns whose length the player or builder controls to land specific pitches. Predicting the organ pipe resonance frequency from length and end conditions is the core design calculation behind the whole instrument.

It reaches well beyond music. HVAC ducts, exhaust systems, and long pipe runs all behave as air columns, and they can resonate loudly at frequencies set by their length — a phenomenon designers usually want to avoid rather than tune. Knowing the resonant series tells you which excitation frequencies to expect trouble at, and how trimming or terminating a duct will shift those frequencies. Whether you are tuning an instrument or hunting down a duct that hums, the starting point is the same short calculation.

The core method

A pipe resonates when the sound waves reflecting from its two ends reinforce one another to form a standing wave. The allowed frequencies depend entirely on what the wave finds at each end.

At a closed end, the air cannot move along the pipe, so the standing wave must have a displacement node there. At an open end, the air is free to move and the pressure is forced back to atmospheric, giving a displacement antinode. Different end conditions allow different standing-wave patterns to fit inside the same length, and that is the whole story.

For a pipe open at both ends, every whole number of half-wavelengths fits, and the resonant frequencies are:

f_n = n * c / (2 * L)     for n = 1, 2, 3, 4, ...
Enter fullscreen mode Exit fullscreen mode

The pipe supports the full harmonic series — fundamental, octave, octave-plus-a-fifth, and so on.

For a pipe closed at one end and open at the other, the standing wave must have a node at the closed end and an antinode at the open end. Only odd quarter-wavelength patterns fit:

f_n = n * c / (4 * L)     for n = 1, 3, 5, 7, ...
Enter fullscreen mode Exit fullscreen mode

Two consequences follow immediately. First, a closed pipe's fundamental is one octave lower than an open pipe of identical length, because the denominator is 4L instead of 2L. Second, a closed pipe produces only the odd harmonics — the even ones are simply not allowed — which gives it a distinctly hollow, reedy timbre compared with the fuller sound of an open pipe.

As with any air-column resonator, a real open end behaves as if the pipe were slightly longer than its physical length. This end correction, roughly 0.6 times the pipe radius per open end, lowers the predicted frequencies a little and matters most for short, wide pipes.

A worked example

Take an organ pipe of length L = 0.5 m. The air inside is at room temperature, so the speed of sound is c = 343 m/s. Compute the fundamental frequency for both end conditions.

Case 1 — pipe open at both ends. Use the open-pipe formula with n = 1:

f_1 = n * c / (2 * L)
f_1 = 1 * 343 / (2 * 0.5)
f_1 = 343 / 1.0
f_1 = 343 Hz
Enter fullscreen mode Exit fullscreen mode

The fundamental is 343 Hz, close to the F above middle C. The next resonances follow as 686 Hz, 1029 Hz, and so on — the complete harmonic series.

Case 2 — same pipe, closed at one end. Use the closed-pipe formula with n = 1:

f_1 = n * c / (4 * L)
f_1 = 1 * 343 / (4 * 0.5)
f_1 = 343 / 2.0
f_1 = 171.5 Hz
Enter fullscreen mode Exit fullscreen mode

The fundamental drops to 171.5 Hz — exactly one octave below the open pipe. Its higher resonances are 514.5 Hz, 857.5 Hz, and so on, climbing in odd multiples only.

The lesson is striking: two pipes of identical length, made of identical material, carrying identical air, sound an octave apart purely because one end is stopped. Length alone does not set the note — the boundary conditions are half the answer. This is why a stopped organ pipe can produce a deep tone from a physically short pipe, a trick organ builders use to save space and weight.

Common mistakes

Using 2L for a closed pipe. The single most common slip. A pipe closed at one end uses 4L in the denominator, not 2L. Apply the open-pipe formula to a closed pipe and every frequency you predict will be an octave too high.

Expecting all harmonics from a closed pipe. A closed pipe supports only odd harmonics — n = 1, 3, 5, and so on. Listing 2f, 3f, 4f for a stopped pipe is wrong; the series goes f, 3f, 5f.

Ignoring the end correction. The bare length formula slightly overestimates frequency because the effective acoustic length is a little longer than the physical pipe. For precise tuning, especially of short or wide pipes, add the end correction at each open end.

Forgetting that the speed of sound varies. The speed of sound depends on temperature, rising by roughly 0.6 m/s per degree Celsius. A pipe organ noticeably drifts in pitch as a hall warms up, which is why instruments are tuned at performance temperature.

Confusing a pipe with a Helmholtz resonator. A long, slender pipe resonates through standing waves and has a full harmonic series. A compact cavity with a narrow neck resonates as a lumped mass-spring system with a single isolated frequency. They are different mechanisms, and the length formulas here apply only to the standing-wave case.

Try the interactive NovaSolver calculator

The arithmetic above is quick, but seeing the standing-wave pattern shift as you change the geometry is what builds real intuition. The Acoustic Standing Wave Simulator on NovaSolver animates the modes of closed-closed, open-open, and half-open tubes; you set the tube length, air temperature, and boundary condition, choose the mode number, and it returns the natural frequency, the wavelength, the speed of sound, and a live picture of the nodes and antinodes inside the tube.

Related calculators

You can browse the rest in the acoustics tools hub.

Closing note

Air-column resonance comes down to a single question: what standing waves can fit between the two ends? Answer that, and the harmonic series follows from a one-line formula — 2L for an open pipe, 4L for a closed one. The open-versus-closed octave gap, the odd-only harmonics of a stopped pipe, and the pitch drift with temperature all fall out of the same simple picture. Compute the series first, mind the end conditions, and whether you are voicing an organ or chasing a resonant duct, the rest of the acoustics follows.

Top comments (0)