Gas Lift Injection Rate Calculation

Gas Lift Injection Rate Calculator 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; box-shadow: 0 4px 6px rgba(0,0,0,0.1); margin-bottom: 40px; } .calculator-title { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; font-weight: 700; } .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; transition: border-color 0.15s ease-in-out; } .input-group input:focus { border-color: #007bff; outline: none; box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); } .input-help { font-size: 12px; color: #6c757d; margin-top: 5px; } .calculate-btn { display: block; width: 100%; padding: 14px; background-color: #0056b3; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: 600; cursor: pointer; transition: background-color 0.2s; margin-top: 10px; } .calculate-btn:hover { background-color: #004494; } .result-box { background-color: #ffffff; border: 1px solid #dee2e6; border-radius: 4px; padding: 20px; margin-top: 25px; text-align: center; display: none; } .result-box.active { display: block; animation: fadeIn 0.5s; } .result-label { font-size: 14px; color: #6c757d; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; } .result-value { font-size: 32px; color: #28a745; font-weight: 700; margin-bottom: 10px; } .result-sub { font-size: 16px; color: #495057; } .error-msg { color: #dc3545; text-align: center; margin-top: 10px; display: none; font-weight: 500; } .article-content { background: #fff; padding: 20px; border-top: 2px solid #eee; } .article-content h2 { color: #2c3e50; margin-top: 30px; } .article-content h3 { color: #34495e; margin-top: 20px; } .formula-box { background: #f1f3f5; padding: 15px; border-left: 4px solid #0056b3; font-family: monospace; margin: 15px 0; overflow-x: auto; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
Gas Lift Injection Rate Calculator
Unit: Stock Tank Barrels per Day (STB/d)
The required gas-liquid ratio to lift fluid (scf/STB)
Natural gas produced from the reservoir (scf/STB)
Please enter valid positive numbers. Target GLR must be greater than Formation GLR.
Required Gas Injection Rate ($q_{inj}$)
0 Mscf/d
(0 scf/day)

Understanding Gas Lift Injection Rates

Gas lift is one of the most common forms of artificial lift used in the oil and gas industry. It involves injecting high-pressure gas from the surface into the well stream to reduce the hydrostatic pressure of the fluid column. This reduction in bottom-hole pressure allows the reservoir fluids to flow to the surface at the desired production rate.

Why Calculate Injection Rate?

Determining the correct gas injection rate ($q_{inj}$) is critical for optimizing production and minimizing operating costs. If the injection rate is too low, the fluid column remains too heavy to flow efficiently. If the rate is too high, friction losses increase, reducing efficiency and wasting costly injection gas.

The Calculation Formula

The fundamental equation to calculate the required daily gas injection rate relies on the difference between the Total (Optimum) Gas-Liquid Ratio required to lift the fluid and the Formation Gas-Liquid Ratio naturally present in the reservoir fluid.

qinj = qL × (GLRopt – GLRf)

Where:

  • qinj = Gas Injection Rate (scf/day)
  • qL = Target Liquid Production Rate (STB/day)
  • GLRopt = Target/Optimum Total Gas-Liquid Ratio (scf/STB)
  • GLRf = Formation Gas-Liquid Ratio (scf/STB)

Example Scenario

Consider a well where the operator wants to produce 1,000 STB/day of liquid. Based on vertical lift performance curves (VLPC), the optimum GLR required to lift this fluid volume from the tubing depth is determined to be 800 scf/STB.

The reservoir naturally produces gas with the oil at a ratio of 200 scf/STB (Formation GLR).

Calculation:
qinj = 1,000 × (800 – 200)
qinj = 1,000 × 600
qinj = 600,000 scf/d

In industry standard reporting (Mscf = 1,000 standard cubic feet), the required injection rate is 600 Mscf/d.

Factors Influencing the Rate

While this calculator provides the theoretical requirement based on mass balance, the actual field injection rate may vary due to:

  • Injection Pressure: The surface casing pressure available to inject gas.
  • Valve Performance: The throughput capacity of the gas lift valves.
  • Temperature: Downhole temperatures affecting gas expansion.
  • Friction: High injection rates can cause excessive friction in the tubing, creating backpressure.
function calculateGasLift() { // Get input values using var var liquidRateInput = document.getElementById("liquidRate"); var targetGLRInput = document.getElementById("targetGLR"); var formationGLRInput = document.getElementById("formationGLR"); var errorMsg = document.getElementById("errorMsg"); var resultBox = document.getElementById("resultBox"); var resultMscf = document.getElementById("resultMscf"); var resultScf = document.getElementById("resultScf"); // Parse values var qL = parseFloat(liquidRateInput.value); var glrOpt = parseFloat(targetGLRInput.value); var glrF = parseFloat(formationGLRInput.value); // Reset display errorMsg.style.display = "none"; resultBox.classList.remove("active"); // Validation logic if (isNaN(qL) || isNaN(glrOpt) || isNaN(glrF)) { errorMsg.innerText = "Please fill in all fields with valid numbers."; errorMsg.style.display = "block"; return; } if (qL < 0 || glrOpt < 0 || glrF glrOpt) { errorMsg.innerText = "Formation GLR is higher than Target GLR. Artificial lift may not be required."; errorMsg.style.display = "block"; // We calculate anyway but warn, or stop. Typically we stop or show 0. // Let's show 0 injection required. var qInj = 0; var qInjMscf = 0; } else { // Main Calculation // Formula: q_inj = q_L * (GLR_opt – GLR_f) // Result is in scf/day var qInj = qL * (glrOpt – glrF); // Convert to Mscf/day (1 Mscf = 1000 scf) var qInjMscf = qInj / 1000; } // formatting numbers var displayMscf = qInjMscf.toLocaleString("en-US", { minimumFractionDigits: 2, maximumFractionDigits: 2 }); var displayScf = qInj.toLocaleString("en-US", { minimumFractionDigits: 0, maximumFractionDigits: 0 }); // Update DOM resultMscf.innerText = displayMscf + " Mscf/d"; resultScf.innerText = "(" + displayScf + " scf/day)"; // Show result resultBox.style.display = "block"; // Small timeout to allow display:block to apply before adding class for animation setTimeout(function() { resultBox.classList.add("active"); }, 10); }

Leave a Comment