Hydrostatic Level Sensor Pressure
Calculate tank fluid levels based on hydrostatic pressure sensor readings.
Hydrostatic Parameters
Calculated Fluid Level
Introduction to Hydrostatic Level Measurement
Hydrostatic pressure measurement is a cornerstone of level sensing in industrial automation. By measuring the pressure exerted by a fluid at the bottom of a tank, engineers can accurately determine the height of the fluid column. This method is highly reliable, unaffected by surface foam or turbulence, and remains a mainstay in Process Automation systems like PLCs and DCSs.
The Fundamental Hydrostatic Formula
The core principle governing hydrostatic level measurement states that the pressure at any given point in a static fluid is directly proportional to the depth of the fluid. The fundamental formula is:
P = ρ × g × h
Where:
- P: Hydrostatic pressure (typically in Pascals, Pa, or psi)
- ρ (rho): Density of the liquid (kg/m³ or lbs/ft³)
- g: Acceleration due to gravity (approx. 9.81 m/s² or 32.2 ft/s²)
- h: Height of the liquid column (meters or feet)
In automation, we are usually solving for the height (h), meaning the formula rearranges to:
h = P / (ρ × g)
Often, engineers use Specific Gravity (SG) to simplify the density factor relative to water. If the pressure sensor is calibrated in inches of water column (inH2O) or mmH2O, the level calculation simply becomes h = P / SG.
Open (Vented) vs. Closed (Pressurized) Tanks
Open Tanks
In an open or vented tank, the fluid surface is exposed to atmospheric pressure. A gauge pressure transmitter installed at the bottom of the tank naturally compensates for atmospheric pressure via a vent tube. The measured pressure is pure hydrostatic pressure exerted by the fluid, making the direct calculation straightforward.
Closed Tanks
Pressurized tanks or closed vessels introduce a challenge: the gas or vapor in the headspace exerts additional pressure on the fluid surface. A standard gauge pressure transmitter would read the combined hydrostatic and headspace pressure, resulting in an artificially high level reading.
To solve this, a Differential Pressure (DP) Transmitter is used. The high-pressure (HP) port connects to the bottom of the tank, while the low-pressure (LP) port connects to the vapor space at the top. The DP transmitter automatically subtracts the headspace pressure:
ΔP = Pbottom – Ptop = ρ × g × h
PLC Integration and Signal Scaling
In a standard control system architecture, the pressure transmitter outputs an analog signal (e.g., 4–20 mA) or communicates via an industrial protocol (e.g., IO-Link, HART, Profibus). Inside the PLC, this raw signal must be scaled into engineering units representing the tank level.
Key automation considerations include:
- Zero Elevation and Suppression: Transmitters are rarely installed exactly at the 0% level mark. If the sensor is mounted below the tank bottom, “zero suppression” must be applied. If mounted above via a dip tube, “zero elevation” is used.
- Density Compensation: Since density (ρ) changes with temperature, advanced PLC algorithms often incorporate a temperature sensor input to dynamically adjust the fluid density value, preventing level drift during temperature fluctuations.
- Filtering: While hydrostatic sensors are immune to surface foam, they can be sensitive to agitation. Applying a low-pass filter (smoothing block) in the PLC logic ensures stable level readings.
Conclusion
Mastering hydrostatic tank level calculations is essential for accurate process control. By understanding the underlying physics, accounting for tank types, and properly scaling signals within the PLC, automation engineers can ensure reliable and precise inventory management across diverse industrial applications.