Rate of Evaporation of Water Calculator

.evap-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); color: #333; } .evap-calc-header { text-align: center; margin-bottom: 30px; } .evap-calc-header h2 { color: #0056b3; margin-bottom: 10px; } .evap-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } .evap-calc-input-group { display: flex; flex-direction: column; } .evap-calc-input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #444; } .evap-calc-input-group input, .evap-calc-input-group select { padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; } .evap-calc-button { grid-column: span 2; background-color: #0056b3; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .evap-calc-button:hover { background-color: #004494; } .evap-calc-result { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; border-left: 5px solid #0056b3; display: none; } .evap-calc-result h3 { margin-top: 0; color: #0056b3; } .evap-result-item { font-size: 18px; margin: 10px 0; display: flex; justify-content: space-between; } .evap-result-value { font-weight: bold; color: #2c3e50; } .evap-article { margin-top: 40px; line-height: 1.6; color: #444; } .evap-article h3 { color: #222; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 25px; } @media (max-width: 600px) { .evap-calc-grid { grid-template-columns: 1fr; } .evap-calc-button { grid-column: span 1; } }

Water Evaporation Rate Calculator

Estimate the mass of water evaporating from a surface over time.

Calculation Results

Rate per Hour: 0 kg/h
Total Water Lost: 0 kg
Volume Equivalent: 0 Liters
Evaporation Depth: 0 mm

How the Evaporation Rate is Calculated

The rate of evaporation of water is a complex physical process influenced by temperature, humidity, wind, and surface area. This calculator utilizes a simplified version of the mass transfer formula (similar to the Carrier equation) used in engineering to estimate water loss from pools, tanks, and open containers.

The Core Formula:

The evaporation rate (E) is generally expressed as:
E = (a + b × v) × A × (Pw - Pa)

  • E: Evaporation rate (kg/h).
  • v: Wind velocity above the water surface (m/s).
  • A: Surface area of the water (m²).
  • Pw: Saturation vapor pressure at the water temperature (mmHg).
  • Pa: Actual vapor pressure of the ambient air (mmHg).
  • a & b: Constants (0.0175 and 0.02 respectively for standard applications).

Key Factors Affecting Evaporation

1. Water Temperature: Higher temperatures increase the kinetic energy of water molecules, allowing them to escape the surface more easily, increasing vapor pressure (Pw).

2. Air Humidity: The "Actual Vapor Pressure" (Pa) is determined by air temperature and relative humidity. High humidity reduces the "vapor pressure deficit," slowing down evaporation.

3. Wind Speed: Wind removes the saturated layer of air immediately above the water surface and replaces it with drier air, significantly accelerating the process.

4. Surface Area: Evaporation is a surface phenomenon. Doubling the surface area directly doubles the amount of water lost.

Example Calculation

Imagine a swimming pool with a surface area of 32m². If the water is 26°C, the air is 22°C with 40% humidity, and a light breeze of 2 m/s is blowing:

  • Saturation Pressure at 26°C (Pw) ≈ 25.2 mmHg
  • Saturation Pressure at 22°C ≈ 19.8 mmHg
  • Actual Air Pressure (Pa) = 19.8 × 0.40 = 7.92 mmHg
  • Evaporation Coefficient = 0.0175 + (0.02 × 2) = 0.0575
  • Rate = 0.0575 × 32 × (25.2 – 7.92) ≈ 31.8 kg per hour.

Over 10 hours, this pool would lose approximately 318 kg (or 318 liters) of water.

function calculateEvaporation() { // Get Input Values var Tw = parseFloat(document.getElementById('waterTemp').value); var Ta = parseFloat(document.getElementById('airTemp').value); var rh = parseFloat(document.getElementById('relHumidity').value) / 100; var v = parseFloat(document.getElementById('windSpeed').value); var A = parseFloat(document.getElementById('surfaceArea').value); var hours = parseFloat(document.getElementById('duration').value); // Validate if (isNaN(Tw) || isNaN(Ta) || isNaN(rh) || isNaN(v) || isNaN(A) || isNaN(hours)) { alert("Please enter valid numeric values for all fields."); return; } // Calculate Vapor Pressures using Magnus-Tetens Approximation (in hPa) // Formula: P = 6.112 * exp((17.67 * T) / (T + 243.5)) function getVaporPressure(temp) { var hPa = 6.112 * Math.exp((17.67 * temp) / (temp + 243.5)); return hPa * 0.750062; // Convert hPa to mmHg } var Pw = getVaporPressure(Tw); var Psat_air = getVaporPressure(Ta); var Pa = Psat_air * rh; // Mass Transfer Coefficient (k) // Using empirical constants for indoor/sheltered water (kg/h per m2 per mmHg) var a = 0.0175; var b = 0.02; var k = a + (b * v); // Evaporation Rate E (kg/h) var rate = k * A * (Pw – Pa); // If rate is negative (condensation), set to 0 if (rate < 0) rate = 0; var totalMass = rate * hours; var totalVolume = totalMass; // 1kg water approx 1 Liter var depthLoss = (totalVolume / A); // Liters per m2 is mm // Display Results document.getElementById('evapResult').style.display = 'block'; document.getElementById('ratePerHour').innerText = rate.toFixed(3) + " kg/h"; document.getElementById('totalMass').innerText = totalMass.toFixed(2) + " kg"; document.getElementById('totalVolume').innerText = totalVolume.toFixed(2) + " Liters"; document.getElementById('evapDepth').innerText = depthLoss.toFixed(2) + " mm"; // Smooth scroll to result document.getElementById('evapResult').scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment