Problem 14.10 Leakage Rate Change in Vacuum Distillation When Lowering the Column Pressure

In sub-atmospheric pressure distillation columns, a vacuum system removes entering air by removing a vapor stream, usually near the top of the column. If air is not removed the pressure will continue to increase, as the air itself won’t condense through the condenser (unless it is cryogenic). Air can also pose a fire hazard in some cases.

How will the leakage rate into the column change if the pressure of the column is lowered from 0.4 bar to 0.1 bar? Assume the ambient pressure is 1.013 bar.

Solution

Leaks into a column are usually around flanges, through valve or pump packings, inspection or sampling ports, or manholes.

There are a variety of empirical correlations that can be used to estimate leakage depending on pressure. The first answer uses one of those. These are not truly mechanistic, however.

We can also imagine a single hole, and treat the flow as through an orifice. This is the second answer.

We can also treat the hole as an isothermal compressible gas flow problem. The third answer uses that.

[1]:
from math import pi
from scipy.constants import hour
from fluids import *
V = 10
P1 = 0.4*1e5
P2 = 0.1*1e5
P_ambient = 101325

rho = 1.2

D = .8
H = 15
V = pi/4*D**2*H

m1 = vacuum_air_leakage_Seider(V=V, P=P1)*hour
m2 = vacuum_air_leakage_Seider(V=V, P=P2)*hour
m_ratio = m2/m1
print(f'Using an emperical correlation, the ratio of air increase is {m_ratio: .3f}.')
Using an emperical correlation, the ratio of air increase is  1.029.
[2]:
# Imagine a 0.1 μm hole in the tower
D_hole = 1e-7
beta = D_hole/D

m1 = differential_pressure_meter_solver(D=D_hole/beta, D2=D_hole, P1=P_ambient, P2=P1,
                                        rho=rho, mu=1e-3, k=1.3, meter_type='ISO 5167 orifice', taps='D')
m2 = differential_pressure_meter_solver(D=D_hole/beta, D2=D_hole, P1=P_ambient, P2=P2,
                                        rho=rho, mu=1e-3, k=1.3, meter_type='ISO 5167 orifice', taps='D')
m_ratio = m2/m1
print(f'Using a flow meter correlation, the ratio of air increase is {m_ratio: .3f}.')
Using a flow meter correlation, the ratio of air increase is  1.031.
[3]:
t_hole = 0.008 # 0.8 mm thick wall
m1 = isothermal_gas(rho=rho, fd=0.01, P1=P_ambient, P2=P1, L=t_hole, D=D_hole)
m2 = isothermal_gas(rho=rho, fd=0.01, P1=P_ambient, P2=P2, L=t_hole, D=D_hole)
m_ratio = m2/m1
print(f'Using isothermal compressible gas flow, the ratio of air increase is {m_ratio: .3f}.')
Using isothermal compressible gas flow, the ratio of air increase is  1.081.