Teg Circulation Rate Calculation

TEG Circulation Rate Calculator for Gas Dehydration body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px; } .calculator-container { background-color: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .calculator-header { text-align: center; margin-bottom: 25px; color: #2c3e50; } .input-group { margin-bottom: 20px; } .input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #495057; } .input-group input { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .input-group input:focus { border-color: #007bff; outline: none; box-shadow: 0 0 0 3px rgba(0,123,255,0.25); } .calc-btn { display: block; width: 100%; background-color: #0056b3; color: white; border: none; padding: 15px; font-size: 18px; font-weight: bold; border-radius: 4px; cursor: pointer; transition: background-color 0.2s; } .calc-btn:hover { background-color: #004494; } .results-section { margin-top: 30px; padding-top: 20px; border-top: 2px solid #e9ecef; display: none; } .result-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; } .result-row:last-child { border-bottom: none; } .result-label { color: #6c757d; font-weight: 500; } .result-value { font-weight: 700; color: #212529; font-size: 1.1em; } .main-result { background-color: #e8f4fd; padding: 20px; border-radius: 6px; text-align: center; margin-top: 20px; } .main-result .label { display: block; color: #0056b3; font-size: 0.9em; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; } .main-result .value { display: block; font-size: 2.5em; font-weight: 800; color: #0056b3; } .article-content { margin-top: 50px; } .article-content h2 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #eee; padding-bottom: 10px; } .article-content h3 { color: #34495e; margin-top: 25px; } .info-box { background-color: #fff3cd; border: 1px solid #ffeeba; color: #856404; padding: 15px; border-radius: 4px; margin: 20px 0; }

TEG Circulation Rate Calculator

Typical range: 2.5 to 5.0 gal/lb
Water Removed Rate: 0 lb/day
Total Daily TEG Flow: 0 gal/day
Required Circulation Rate 0.00 GPM

Understanding TEG Circulation Rate Calculation

In natural gas processing, dehydration is a critical step to prevent hydrate formation and corrosion in pipelines. Triethylene Glycol (TEG) is the industry standard liquid desiccant used for this purpose. The TEG Circulation Rate is the volume of glycol that must be circulated through the contactor tower to achieve a specific dew point depression.

Why is the Circulation Rate Important?

Calculating the correct circulation rate is a balance between efficiency and operating costs:

  • Under-circulation: If the rate is too low, the TEG becomes saturated with water too quickly at the bottom of the contactor. This results in the outlet gas failing to meet moisture specifications (e.g., 7 lb/MMSCF), leading to "wet gas" entering the sales line.
  • Over-circulation: If the rate is too high, it leads to excessive energy consumption in the reboiler (to regenerate the glycol) and larger pumping requirements. It can also increase hydrocarbon absorption (BTEX emissions) and glycol losses.

The Calculation Formula

The calculation is based on the mass balance of water entering and leaving the system. The fundamental steps are as follows:

Formula:
1. Water Removed (lb/day) = Gas Flow (MMSCFD) × (Inlet Water – Outlet Water)
2. TEG Rate (gal/day) = Water Removed × Circulation Ratio
3. Circulation Rate (GPM) = TEG Rate (gal/day) / 1,440 min/day

Key Input Parameters

  • Gas Flow Rate (MMSCFD): The volume of gas being processed in Million Standard Cubic Feet per Day.
  • Inlet Water Content (lb/MMSCF): The amount of water vapor in the gas stream entering the contactor. This is determined by the inlet pressure and temperature.
  • Outlet Water Specification (lb/MMSCF): The target maximum water content allowed in the sales gas. A common pipeline specification is 7 lb/MMSCF, though northern climates may require 4 lb/MMSCF.
  • Circulation Ratio (gal/lb): This is an engineering design factor. It represents how many gallons of TEG are circulated for every pound of water removed.
    • 2.0 – 3.0 gal/lb: Often used for standard dehydration where extreme dew points are not required.
    • 3.0 – 5.0 gal/lb: Standard industry practice for ensuring sufficient driving force for mass transfer.

Example Calculation

Let's consider a gas processing facility with the following parameters:

  • Gas Flow: 50 MMSCFD
  • Inlet Water Content: 60 lb/MMSCF (saturated at inlet conditions)
  • Outlet Specification: 7 lb/MMSCF
  • Design Ratio: 3.0 gal TEG / lb Water

Step 1: Calculate Water Load
Water Removed = 50 × (60 – 7) = 50 × 53 = 2,650 lb water/day.

Step 2: Calculate Daily TEG Volume
TEG Volume = 2,650 lb water × 3.0 gal/lb = 7,950 gallons/day.

Step 3: Convert to GPM
Circulation Rate = 7,950 / 1,440 minutes = 5.52 GPM.

Therefore, the glycol pump must be set to deliver at least 5.52 gallons per minute to meet the dehydration requirements.

function calculateTEGRate() { // Get input values using var var gasFlow = parseFloat(document.getElementById('gasFlowRate').value); var inletWater = parseFloat(document.getElementById('inletWaterContent').value); var outletWater = parseFloat(document.getElementById('outletWaterSpec').value); var circRatio = parseFloat(document.getElementById('circRatio').value); // Validation: Check for valid numbers if (isNaN(gasFlow) || isNaN(inletWater) || isNaN(outletWater) || isNaN(circRatio)) { alert("Please enter valid numeric values for all fields."); return; } // Logical Check: Inlet must be greater than outlet if (inletWater <= outletWater) { alert("Inlet water content must be higher than the outlet specification to require dehydration."); return; } // Step 1: Calculate Water Removed (lb/day) // Formula: Flow (MMSCFD) * (Inlet – Outlet) lb/MMSCF var waterDelta = inletWater – outletWater; var waterRemovedPerDay = gasFlow * waterDelta; // Step 2: Calculate Total TEG Required per Day (gal/day) // Formula: Water Removed (lb) * Ratio (gal TEG / lb Water) var totalTEGPerDay = waterRemovedPerDay * circRatio; // Step 3: Calculate GPM (Gallons Per Minute) // Formula: Gallons per Day / 1440 minutes var gpm = totalTEGPerDay / 1440; // Display Results document.getElementById('waterRemovedDisplay').innerText = waterRemovedPerDay.toLocaleString(undefined, {minimumFractionDigits: 1, maximumFractionDigits: 1}) + " lb/day"; document.getElementById('totalDailyTEGDisplay').innerText = totalTEGPerDay.toLocaleString(undefined, {minimumFractionDigits: 0, maximumFractionDigits: 0}) + " gal/day"; document.getElementById('gpmResult').innerText = gpm.toFixed(2) + " GPM"; // Show results section document.getElementById('resultsSection').style.display = "block"; }

Leave a Comment