Lesson 5 of 16
Manometers
Manometers
A manometer is a device that uses a liquid column to measure pressure differences. The simplest form is the U-tube manometer, where a dense indicating fluid (often mercury, ) fills the bottom of a U-shaped tube.
Simple U-Tube Manometer
For a U-tube connecting a pressure source on one side to atmosphere on the other, the gauge pressure at the source equals:
where is the manometer fluid density and is the height difference between the two fluid columns.
Differential Manometer
When connecting two pipes at different elevations, the pressure difference accounting for both the manometer fluid and the pipe fluid is:
where:
- — manometer fluid density (kg/m³)
- — manometer reading (height difference, m)
- — pipe fluid density (kg/m³)
- — elevations of the two pipe centrelines (m)
When the pipes are at the same elevation (), this reduces to the simple formula .
Example: Mercury Manometer
A mercury manometer () reads :
Your Task
Implement:
manometer_pressure(rho_m, delta_h)— pressure difference for a simple U-tube (Pa)gauge_pressure_manometer(rho_m, h_m, rho_fluid, z1, z2)— differential manometer reading (Pa)
Python runtime loading...
Loading...
Click "Run" to execute your code.