Procedures
Procedures
May. 2025
1. Establish Design Basis
Vapor Liquid separators are one of the most common types of process equipment.
This article provides step-by-step procedure for two phase vertical vapor liquid
separator design. Vapor liquid separation occurs in three stages.
a. The first stage, primary separation uses an inlet diverter so that momentum of the
liquid entrained in the vapor causes the largest droplets to impinge on the diverter
and then drop by gravity.
b. The next phase, secondary separation is gravity separation of smaller droplets as
the vapor flows through the disengagement area.
c. The final stage is mist elimination where the smallest droplets are formed which
will separate by gravity.
For secondary separation, maximum allowable vapor velocity is calculated by using
the Souders-Brown equation.
• Procedure: Collect gas volumetric flow rate, operating pressure & temperature,
liquid density, and estimate the droplet size distribution (e.g. from downstream
cooler or compressor data). Choose the minimum droplet diameter you need to
remove with high efficiency.
• Example: Compressed air at 13900 Nm³/h (1.028 m³/s actual) at 3.5 barg and 50 °C;
water droplets with an assumed average of 2 µm to capture ≥99.9% of mist.
• Procedure: Compare gravity, vane, cyclone and mesh-pad separators. Use mesh
pads when you need high efficiency for droplets down to a few microns at moderate
velocities, and when liquid loads are modest.
• Example: A vertical knock-out drum with inlet diverter, 100 mm mesh pad near the
top, and bottom liquid sump—ideal for compact footprints and >99% removal of 2
µm droplets.
3. Determine Design Gas Velocity (Souders–Brown)
Calculate the maximum allowable superficial gas velocity to avoid entrainment.
• Procedure:
where ρL, ρG are liquid & gas densities, and K is an empirical capacity factor (mesh-pad
K≈0.05–0.107 m/s).
K=0.35−0.01(P−100)/100
where P is in psig, K is in feet/sec. K value is multiplied by a factor of 0.6 for Glycol or Amine
solution, 0.7 for compressor suction scrubber, 0.7 for expander inlet separators and 0.5
when there is no mist eliminator.
• Example:
• ρL=988 kg/m³ (water @50 °C), ρG≈4.8 kg/m³ (air @3.5 barg,50 °C)
• Choose K=0.07 m/s for 2 µm removal ⇒
• Procedure:
A = Q/Vmax
• Example:
• Procedure:
o Thickness: 100–150 mm
o Density: ~144 kg/m³ (9 lb/ft³) for general service; higher for finer droplets
Table 1.
•
Table 2.
• Procedure:
• Example:
• Inlet: NPS 10 (ID≈273 mm) ⇒ V=1.025/(!π·(0.273)²/4)≈18 m/s ⇒ ρV²≈4.8·18²≈1 555
kg/m·s²<2 100 ✔
• Outlet: NPS 8 (ID≈219 mm) ⇒ V≈25 m/s ⇒ ρV²≈4.8·25²≈3 000 kg/m·s²<4 500 ✔
• Procedure:
𝜌𝐺
𝛥𝑃 = 0.4 𝑉𝑑2 𝜌𝑤
𝜀 𝑔𝑐
• Example:
• Procedure:
h2=4 (Vholdup+Vslug)/πD**2
• Example:
Assume worst-case condensate of 0.1 m³ over 5 min ⇒ Vholdup=0.1 m³, negligible
slug ⇒
h2=4·0.1/(π·1.17²)≈0.093 m <0.45 m ⇒ use h2=0.45 m.
• Procedure: Sum all heights for total T/T length, then L/D should be 3–5. If outside,
adjust diameter or internals.
11. Result
Based on two values of k(0.07&0.107) , two scenario cases were examined, whose values
are as follows:
1.
Mesh Specification:
Mesh Specification:
import math
# 1. Input parameters
Q = 1.028 # Gas flow rate in m³/s (actual)
rho_L = 988 # Liquid density (water at 50°C) in kg/m³
rho_G = 4.8512 # Gas density (air at 3.5 barg, 50°C) in kg/m³
K = 0.07 # Souders–Brown capacity factor (m/s) ; k=
0.07~0.107 for metal wire mesh
inlet_OD = 273 # Inlet nozzle OD to mesh-pad support (mm)
target_LtoD = 3.0 # Desired L/D ratio (between 3 and 5)
C_wet = 0.25 # Pad wet pressure drop coefficient
t_pad = 150 / 1000 # Pad thickness in meters (150 mm); 100~150 mm
# 2. Calculate Vmax
Vmax = K * math.sqrt((rho_L - rho_G) / rho_G)
# 6. Freeboard calculation
required_total_m = target_LtoD * D_m # Required total height
in m
required_total_mm = required_total_m * 1000 # Required total height
in mm
freeboard_mm = required_total_mm - h_tt # Freeboard height in
mm
freeboard_m = freeboard_mm / 1000 # Freeboard height in m
# 9. Display results
print(f"Souders–Brown capacity factor K: {K:.3f} m/s")
print(f"Maximum allowable superficial gas velocity Vmax: {Vmax:.2f} m/s")
print(f"Estimated mesh pad pressure drop: {deltaP:.2f} Pa")
print(f"Raw vessel diameter: {D_m_raw:.2f} m")
print(f"Rounded vessel diameter: {D_m:.1f} m")
print(f"Raw diameter in inches: {D_in_raw:.2f} in")
print(f"Rounded diameter in inches: {D_in:.0f} in\n")
print("Mesh Specification:")
print("Mesh Style: 4CA")
print("Mesh Density: 144 kg/m3")
print("Mesh Diameter: 0.28 mm")
print("Mesh Voidage: 98.2%")
print(f"Mesh-pad Thickness: {h6} mm")
print("Mesh Material: SS304L")