Packed Column Design Calculator Documentation

Note: This documentation is based on standard mass transfer principles for packed columns. The actual implementation in the code may vary.

1. Objective

The Packed Column Design Calculator is a tool for the preliminary design of packed columns used for gas absorption or stripping. It aims to calculate the required column diameter and packing height.

2. Design Basis & Methodology

The design is typically a two-step process: first determining the column diameter based on hydraulic constraints (pressure drop), and then determining the packing height based on mass transfer requirements.

Key Formulas:

  1. Column Diameter: The diameter is sized to avoid flooding. This is often done using a generalized pressure drop correlation (GPDC) chart (e.g., the Sherwood-Leva-Eckert correlation). The calculation involves the flow parameter FLV:

    FLV = (L/G) * sqrt(ρ_G / ρ_L)
    

    Using FLV and a target pressure drop, a capacity parameter Y is found from the chart, which allows calculation of the required gas mass velocity G. The diameter follows from G and the gas flow rate.

  2. Packing Height (Z): The height is calculated using the Height of a Transfer Unit (HTU) - Number of Transfer Units (NTU) method.

    Z = HTU * NTU
    
    • NTU (Number of Transfer Units): A measure of the difficulty of the separation. It is calculated by integrating over the change in composition.
    • HTU (Height of a Transfer Unit): A measure of the efficiency of the packing. It is determined from empirical correlations that depend on the packing type, fluid properties, and flow rates.

3. Input Parameters

  • Flow Rates: Gas and Liquid mass or molar flow rates.
  • Fluid Properties: Densities, viscosities, and diffusivities for both phases.
  • Equilibrium Data: Henry's Law constant or other equilibrium relationship (e.g., y* = mx).
  • Inlet/Outlet Compositions: The target concentrations for the separation.
  • Packing Type: To determine packing-specific parameters like the packing factor (Fp) and constants for HTU correlations.

4. Output Results

  • Column Diameter: The required internal diameter of the column.
  • Flooding Velocity: The gas velocity at which the column would flood, to ensure the design operates at a safe fraction (e.g., 60-80%) of this velocity.
  • Pressure Drop: The estimated pressure drop per unit height of packing.
  • Required Packing Height (Z): The total height of packing needed to achieve the separation.

5. Limitations and Assumptions

  • The accuracy heavily depends on the empirical correlations used for HTU and pressure drop, which are specific to the packing type.
  • Assumes plug flow for both gas and liquid phases.
  • Does not account for heat effects, which can be significant in some absorption processes.

6. Example Calculation (HTU-NTU Method)

Goal: Determine the required packing height for a gas absorption column.

Given:

  • Separation: Reduce a pollutant in a gas stream from y_in = 0.05 to y_out = 0.005.
  • Solvent: Pure solvent enters, so x_in = 0.
  • Equilibrium: y* = 1.5 * x.
  • Flow Rates: The operating liquid-to-gas ratio L/G is 1.89.
  • Mass Transfer Efficiency: The Height of a Transfer Unit (HTU) is known to be 0.5 m.

Calculation Steps:

  1. Calculate the Outlet Liquid Composition (x_out): From a mass balance around the column: G(y_in - y_out) = L(x_out - x_in) (L/G) = (y_in - y_out) / (x_out - x_in) 1.89 = (0.05 - 0.005) / (x_out - 0) => x_out = 0.045 / 1.89 ≈ 0.0238

  2. Calculate Driving Forces at Top and Bottom of Column: Δy_bottom = y_in - y*_in = y_in - (1.5 * x_out) = 0.05 - (1.5 * 0.0238) = 0.0143 Δy_top = y_out - y*_out = y_out - (1.5 * x_in) = 0.005 - (1.5 * 0) = 0.005

  3. Calculate Log Mean Driving Force (Δy_lm): Δy_lm = (Δy_bottom - Δy_top) / ln(Δy_bottom / Δy_top) Δy_lm = (0.0143 - 0.005) / ln(0.0143 / 0.005) = 0.0093 / 1.05 ≈ 0.00885

  4. Calculate Number of Transfer Units (NTU): NTU = (y_in - y_out) / Δy_lm = (0.05 - 0.005) / 0.00885 = 0.045 / 0.00885 ≈ 5.08

  5. Calculate Required Packing Height (Z): Z = HTU * NTU = 0.5 m * 5.08 = 2.54 m

Result: The required height of packing is 2.54 meters.


Reference Standards

  • Strigle, R.F.: Random Packings and Packed Towers (Gulf Publishing).
  • GPDC Chart Standards: Generalized Pressure Drop Correlation standards.