Flow Measurement Devices
Flow Measurement Devices
Bernoulli's equation is the basis for many practical flow measurement instruments. By measuring the pressure difference between two points, the velocity or flow rate can be inferred.
Venturi Meter
A Venturi meter is a converging-diverging tube inserted in a pipe. Flow accelerates at the narrowest section (the throat), dropping the pressure. Applying Bernoulli and continuity between the inlet () and throat ():
where is the measured pressure difference.
The throat-to-inlet area ratio is typically 0.25–0.75. Smaller ratios give a larger signal but higher permanent pressure loss.
In practice a discharge coefficient accounts for viscous losses, but we omit it here for clarity.
Pitot Tube
A Pitot tube points directly into the flow. It measures the stagnation pressure at its tip (where the fluid is brought to rest) against the static pressure from a side port. Bernoulli gives:
Pitot tubes are used on aircraft to measure airspeed. The pressure difference for a 100 m/s aircraft in air ( kg/m³) is about 6 kPa.
Your Task
Implement:
venturi_flow(A1, A2, delta_P, rho)— volumetric flow rate (m³/s)pitot_velocity(P_stagnation, P_static, rho)— flow velocity (m/s)