Calculate Condensate Flow Rate from Cooling Coil

Cooling Coil Condensate Flow Rate Calculator body { font-family: Arial, sans-serif; margin: 20px; } .calculator-container { border: 1px solid #ccc; padding: 20px; border-radius: 8px; max-width: 600px; margin: auto; } .calculator-input { margin-bottom: 15px; } .calculator-input label { display: block; margin-bottom: 5px; font-weight: bold; } .calculator-input input[type="number"] { width: calc(100% – 10px); padding: 8px; border: 1px solid #ccc; border-radius: 4px; } button { background-color: #4CAF50; color: white; padding: 10px 15px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; } button:hover { background-color: #45a049; } #result { margin-top: 20px; font-weight: bold; font-size: 1.1em; }

Cooling Coil Condensate Flow Rate Calculator

This calculator helps determine the rate at which condensate (water) is produced by a cooling coil based on the heat removed and the properties of water.

function calculateCondensateFlowRate() { var heatRemoved = parseFloat(document.getElementById("heatRemoved").value); var latentHeatOfVaporization = parseFloat(document.getElementById("latentHeatOfVaporization").value); var densityOfWater = parseFloat(document.getElementById("densityOfWater").value); var resultDiv = document.getElementById("result"); if (isNaN(heatRemoved) || isNaN(latentHeatOfVaporization) || isNaN(densityOfWater) || heatRemoved < 0 || latentHeatOfVaporization <= 0 || densityOfWater <= 0) { resultDiv.innerHTML = "Please enter valid positive numbers for all fields."; return; } // Calculate condensate mass flow rate (lb/hr) // Mass Flow Rate (lb/hr) = Heat Removed (BTU/hr) / Latent Heat of Vaporization (BTU/lb) var massFlowRateLbsPerHour = heatRemoved / latentHeatOfVaporization; // Calculate condensate volume flow rate (gallons/hr) // Volume Flow Rate (gal/hr) = Mass Flow Rate (lb/hr) / Density of Water (lb/gal) var volumeFlowRateGalsPerHour = massFlowRateLbsPerHour / densityOfWater; resultDiv.innerHTML = "Condensate Flow Rate: " + volumeFlowRateGalsPerHour.toFixed(2) + " gallons/hour"; }

Understanding Cooling Coil Condensate Flow Rate

When a cooling coil removes heat and moisture from the air, it causes the water vapor in the air to condense into liquid water. This condensate must be drained away to prevent issues like water damage, mold growth, and reduced cooling efficiency. The rate at which this condensate is produced is known as the condensate flow rate.

How it's Calculated

The calculation of condensate flow rate is fundamentally based on the principles of thermodynamics and fluid dynamics. The primary factors influencing condensate production are:

  • Heat Removed by the Coil (BTU/hr): This is the total amount of thermal energy the cooling coil extracts from the air. A significant portion of this heat is used to change the phase of water vapor into liquid water (latent heat).
  • Latent Heat of Vaporization of Water (BTU/lb): This is the amount of heat energy required to convert one pound of water into steam (or vice versa) at a specific temperature and pressure. For cooling coils, we are concerned with the reverse process – condensation, where this heat is released. The value for water is typically around 1061 BTU/lb at standard atmospheric pressure, but it can vary slightly with temperature.
  • Density of Water (lb/gallon): This is the mass of water per unit volume. It's used to convert the calculated mass of condensate into a more practical volumetric flow rate (e.g., gallons per hour). The density of water also varies with temperature, but a common approximation is 8.34 lb/gallon.

The calculation proceeds in two main steps:

  1. Calculate Mass Flow Rate: The total heat removed by the coil that is attributable to the phase change (latent heat) is divided by the latent heat of vaporization of water. This gives the mass of water that has condensed per unit of time.

    Mass Flow Rate (lb/hr) = Heat Removed (BTU/hr) / Latent Heat of Vaporization (BTU/lb)

  2. Calculate Volume Flow Rate: The mass flow rate is then divided by the density of water. This converts the mass of condensate into its equivalent volume per unit of time.

    Volume Flow Rate (gal/hr) = Mass Flow Rate (lb/hr) / Density of Water (lb/gal)

Example Calculation

Let's consider a scenario where a cooling coil removes 50,000 BTU/hr of heat and moisture from the air. We will use the standard values for the latent heat of vaporization of water (1061 BTU/lb) and the density of water (8.34 lb/gallon).

  • Heat Removed = 50,000 BTU/hr
  • Latent Heat of Vaporization = 1061 BTU/lb
  • Density of Water = 8.34 lb/gallon

Step 1: Calculate Mass Flow Rate

Mass Flow Rate = 50,000 BTU/hr / 1061 BTU/lb ≈ 47.12 lb/hr

Step 2: Calculate Volume Flow Rate

Volume Flow Rate = 47.12 lb/hr / 8.34 lb/gallon ≈ 5.65 gallons/hour

Therefore, in this example, the cooling coil is producing approximately 5.65 gallons of condensate per hour.

Importance of Accurate Drainage

Ensuring that the condensate drain line is properly sized and free from obstructions is critical. A condensate flow rate that exceeds the drain system's capacity can lead to water backing up onto the coil, into the air handler, or even into the building, causing significant damage and potential health hazards.

Leave a Comment