DEV Community

Cover image for The Venturi Flow Meter: Measuring Flow With Nothing But a Pressure Drop
NovaSolver
NovaSolver

Posted on Originally published at novasolver.jp

The Venturi Flow Meter: Measuring Flow With Nothing But a Pressure Drop

A water utility needs to know how many liters per second move through a buried pipe, but it cannot put a paddle wheel in the stream and it cannot stop the flow to weigh it. What it can do is install a smooth constriction, drill two small tappings, and connect a pressure gauge across them. From the pressure difference alone, the flow rate falls out. That device is the venturi flow meter, and the same logic drives orifice plates, flow nozzles, and the airspeed sensors on aircraft.

The appeal is that there are no moving parts in the flow path. A venturi meter is a shaped piece of pipe and two pressure taps. Its accuracy comes not from mechanism but from a piece of physics that has held up for two centuries. This article explains that physics, works a full numerical example, and points out where the method goes wrong in practice.

Why this calculation matters

Flow measurement underpins an enormous amount of industrial life: dosing chemicals, billing for water and gas, balancing HVAC systems, controlling combustion, and protecting pumps from running dry. A meter that drifts or reads wrong propagates that error into every decision downstream.

Differential-pressure meters such as the venturi remain widely used because they are robust, have no parts to wear out in the flow, and rest on a transparent physical principle rather than a black-box calibration. They handle high temperatures and pressures that would destroy more delicate instruments. The trade-off is that they do not measure flow directly. They measure a pressure drop, and you convert. Understanding that conversion is the difference between trusting the number and merely reading it.

The core method

When a fluid flows through a narrowing pipe, it must speed up in the throat, because the same volume per second passes through a smaller area. Speeding up costs energy, and by Bernoulli's principle that energy is drawn from the fluid's pressure. So the throat sits at lower pressure than the wide section upstream. The faster the flow, the larger that pressure drop.

Combining the continuity equation with Bernoulli's equation and rolling the real-world losses into a single correction factor gives the working formula for a differential-pressure flow meter:

Q = Cd * A * sqrt( 2 * delta_p / rho )
Enter fullscreen mode Exit fullscreen mode

Here Q is the volumetric flow rate, Cd is the discharge coefficient, A is the throat cross-sectional area, delta_p is the measured pressure drop across the constriction, and rho is the fluid density.

The discharge coefficient Cd is the honest part of the formula. Ideal frictionless theory would predict slightly too much flow; Cd corrects for viscosity, the velocity profile, and small flow separations. A well-made venturi is gentle on the flow and runs at Cd around 0.95 to 0.99. A sharp-edged orifice plate disturbs the flow far more and sits closer to 0.60 to 0.65. That spread is the price of the orifice plate's simplicity and lower cost.

Notice that Q depends on the square root of the pressure drop. This is the defining feature of every differential-pressure meter and it has a practical sting: to halve the flow you only drop delta_p to a quarter, so the signal becomes weak and noisy at low flow. The usable range, or turndown, of a simple DP meter is therefore limited.

A worked example

Suppose a venturi meter carries water and you want the flow rate from a measured pressure drop.

The known quantities are: fluid density rho = 1000 kg/m^3 for water, discharge coefficient Cd = 0.97, throat area A = 0.001 m^2, and a measured pressure drop delta_p = 5000 Pa.

Step 1 — evaluate the velocity term inside the square root.

2 * delta_p / rho = 2 * 5000 / 1000 = 10
sqrt(10) = 3.162
Enter fullscreen mode Exit fullscreen mode

This number, 3.162 m/s, is the ideal velocity that pressure drop would produce.

Step 2 — multiply by the throat area and the discharge coefficient.

Q = Cd * A * sqrt(2 * delta_p / rho)
Q = 0.97 * 0.001 * 3.162
Q = 0.00307 m^3/s
Enter fullscreen mode Exit fullscreen mode

Step 3 — convert to convenient units.

Q = 0.00307 m^3/s = 3.07 L/s
Enter fullscreen mode Exit fullscreen mode

So a 5000 Pa pressure drop across this venturi corresponds to a flow rate of about 3.07 liters per second. To appreciate the square-root behavior, notice that if the flow rose to double this value, the required pressure drop would not double but quadruple, to 20,000 Pa. That is exactly why these meters lose resolution as the flow slows down.

Common mistakes

Using the pipe area instead of the throat area. The A in the formula is the cross-section of the constriction, the throat, not the full pipe bore. Substituting the upstream area inflates the answer by a large factor. The pipe diameter only enters through the area ratio that helps fix Cd.

Applying the wrong discharge coefficient. A venturi's Cd near 0.97 and an orifice plate's Cd near 0.61 are not interchangeable. Borrowing one for the other geometry can throw the flow rate off by more than a third. When precision matters, use the coefficient for your specific meter, ideally from its calibration certificate.

Forgetting that density depends on conditions. For liquids, rho is fairly stable, but for gases it changes strongly with pressure and temperature. A gas flow meter that assumes a fixed density will misread whenever line conditions move. Compressible flow may also need an expansibility factor that this incompressible formula omits.

Trusting the meter at very low flow. Because the signal scales with the square root of delta_p, a small flow produces a tiny, noisy pressure drop. Near the bottom of the range the reading degrades. If you need wide turndown, the geometry or the meter type may need rethinking.

Ignoring upstream disturbances. Bends, valves, and pumps just before the meter distort the velocity profile and shift the effective Cd. Standards call for straight runs of pipe ahead of the meter for good reason; skipping them quietly biases every reading.

Try the interactive NovaSolver calculator

Running the square root once is straightforward; building a feel for how diameter, pressure drop, and fluid choice interact is easier when the numbers move together. The Flow Meter Calculator — Orifice, Venturi, Pitot Tube & Electromagnetic on NovaSolver lets you select the meter type and fluid, adjust pipe diameter, throat diameter, and differential pressure, and instantly returns the volumetric flow rate, the mass flow rate, the throat velocity, the Reynolds number, and the diameter ratio beta.

Related calculators

You can browse the rest in the fluid dynamics tools hub.

Closing note

The venturi flow meter is a fine example of physics doing the work of mechanism. There is nothing to spin, nothing to wear, just a shaped pipe and the willingness to convert a pressure drop into a flow rate. The conversion hinges on three things: use the throat area, use the right discharge coefficient, and remember the square-root response that softens the signal at low flow. Keep those in mind, give the meter clean straight pipe to work with, and a simple pressure reading becomes a flow measurement you can defend.

Top comments (0)