Evaporation Rate Calculator Concrete

Concrete Evaporation Rate Calculator /* Scoped Styles for the Calculator */ .concrete-calc-container { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .concrete-calc-header { text-align: center; margin-bottom: 25px; color: #333; } .concrete-calc-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .concrete-calc-col { flex: 1; min-width: 250px; } .concrete-calc-label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; font-size: 0.95rem; } .concrete-calc-input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; box-sizing: border-box; transition: border-color 0.3s; } .concrete-calc-input:focus { border-color: #0073aa; outline: none; } .concrete-calc-btn { width: 100%; padding: 15px; background-color: #0073aa; color: white; border: none; border-radius: 4px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: background-color 0.3s; margin-top: 10px; } .concrete-calc-btn:hover { background-color: #005177; } .concrete-result-box { margin-top: 30px; padding: 20px; border-radius: 6px; background-color: #fff; border: 1px solid #ddd; text-align: center; display: none; } .concrete-result-value { font-size: 2.5rem; font-weight: 700; color: #333; margin: 10px 0; } .concrete-result-unit { font-size: 1rem; color: #666; font-weight: normal; } .concrete-risk-indicator { margin-top: 15px; padding: 10px; border-radius: 4px; font-weight: bold; color: white; } .risk-low { background-color: #46b450; /* Green */ } .risk-moderate { background-color: #ffb900; /* Yellow/Orange */ color: #333; } .risk-high { background-color: #dc3232; /* Red */ } /* Article Content Styles */ .calc-content-section { max-width: 800px; margin: 40px auto; font-family: inherit; line-height: 1.6; color: #333; } .calc-content-section h2 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #eee; padding-bottom: 10px; } .calc-content-section ul { margin-left: 20px; } .calc-content-section li { margin-bottom: 10px; } .info-box { background-color: #e8f4fc; padding: 15px; border-left: 5px solid #0073aa; margin: 20px 0; }

Concrete Evaporation Rate Calculator

Determine the risk of plastic shrinkage cracking based on ACI 305R guidelines.

Evaporation Rate

0.00
lb/ft² per hour

function calculateEvaporation() { // 1. Get Input Values var airTempF = parseFloat(document.getElementById('airTemp').value); var concTempF = parseFloat(document.getElementById('concTemp').value); var humidity = parseFloat(document.getElementById('relHumidity').value); var windSpeedMph = parseFloat(document.getElementById('windSpeed').value); // 2. Validation if (isNaN(airTempF) || isNaN(concTempF) || isNaN(humidity) || isNaN(windSpeedMph)) { alert("Please enter valid numbers for all fields."); return; } if (humidity 100) { alert("Relative Humidity must be between 0 and 100."); return; } // 3. Calculation Logic (Menzel Formula via Metric Conversion for Accuracy) // Formula: E (kg/m^2/h) = 5 * ([Tc + 18]^2.5 – r * [Ta + 18]^2.5) * (V + 4) * 10^-6 // Where Temps are Celsius, V is km/h. // Convert Inputs to Metric var airTempC = (airTempF – 32) * (5 / 9); var concTempC = (concTempF – 32) * (5 / 9); var windSpeedKmh = windSpeedMph * 1.60934; var r = humidity / 100; // Decimal humidity // Calculate Term A: (Tc + 18)^2.5 var termA = Math.pow((concTempC + 18), 2.5); // Calculate Term B: r * (Ta + 18)^2.5 var termB = r * Math.pow((airTempC + 18), 2.5); // Calculate Velocity Term: (V + 4) var termV = windSpeedKmh + 4; // Calculate Evaporation in Metric (kg/m^2/h) var evapMetric = 5 * (termA – termB) * termV * 0.000001; // Convert to Imperial (lb/ft^2/hr) // 1 kg/m^2 = 0.204816 lb/ft^2 var evapImperial = evapMetric * 0.204816; // Ensure result isn't negative (physically impossible for evaporation in this context usually, unless condensation) if (evapImperial 0.2) { riskClass = "risk-high"; riskText = "HIGH RISK"; recommendation = "Evaporation exceeds 0.2 lb/ft²/hr. Plastic shrinkage cracking is very likely. Implementing immediate evaporation control measures (fogging, wind breaks, cooling concrete) is mandatory."; } else if (evapImperial >= 0.1) { riskClass = "risk-moderate"; riskText = "MODERATE RISK"; recommendation = "Evaporation is between 0.1 and 0.2 lb/ft²/hr. Cracking is likely, especially for silica fume or low w/c ratio concrete. Precautionary measures are highly recommended."; } else { riskClass = "risk-low"; riskText = "LOW RISK"; recommendation = "Evaporation is below 0.1 lb/ft²/hr. Standard curing procedures are generally sufficient, but monitor conditions if weather changes."; } // 5. Update UI var resultBox = document.getElementById('resultBox'); var resultVal = document.getElementById('evapResult'); var riskIndicator = document.getElementById('riskLevel'); var recText = document.getElementById('recommendationText'); resultBox.style.display = "block"; resultVal.innerHTML = evapImperial.toFixed(3); riskIndicator.className = "concrete-risk-indicator " + riskClass; riskIndicator.innerHTML = riskText; recText.innerHTML = recommendation; }

Understanding Concrete Evaporation Rates

The evaporation rate of surface moisture from freshly placed concrete is a critical factor in the durability and aesthetic quality of the final slab. If water evaporates from the surface faster than it can be replenished by "bleeding" (the natural upward migration of water), the surface will dry out prematurely.

The Danger: When the evaporation rate exceeds the bleed rate, the concrete surface creates tensile stresses that lead to plastic shrinkage cracking. These are shallow, parallel cracks that appear before the concrete has hardened.

How the Menzel Formula Works

This calculator utilizes the standard equation derived by Menzel (1954), which is the basis for the widely used ACI 305R nomograph. The rate of evaporation depends on four primary environmental factors:

  • Air Temperature: Warmer air can hold more moisture but also increases the energy available for evaporation.
  • Concrete Temperature: This is often the most significant driver. Higher concrete temperatures increase the vapor pressure at the surface, accelerating evaporation.
  • Relative Humidity: Lower humidity increases the gradient between the saturated concrete surface and the air, speeding up moisture loss.
  • Wind Velocity: Wind removes the layer of saturated air directly above the concrete, allowing dry air to replace it and continuing the evaporation process.

ACI 305R Guidelines and Thresholds

According to the American Concrete Institute (ACI) Committee 305 regarding Hot Weather Concreting, specific thresholds warrant immediate action:

  • > 0.2 lb/ft²/hr (1.0 kg/m²/h): This is the classic danger zone. Probability of plastic shrinkage cracks is high. Protective measures are mandatory.
  • > 0.1 lb/ft²/hr (0.5 kg/m²/h): While historically considered safe for conventional concrete, this threshold is critical for modern mixes containing silica fume, fly ash, or fine cements which have lower bleed rates.

How to Prevent Plastic Shrinkage Cracking

If your calculation indicates a Moderate or High risk, consider the following mitigation strategies:

  1. Erect Wind Breaks: Reducing wind velocity significantly lowers the evaporation rate.
  2. Use Fogging Equipment: Misting water over the surface increases local humidity and lowers air temperature.
  3. Cool the Concrete: Using chilled water or ice in the mix, or shading aggregates, reduces the concrete temperature.
  4. Use Evaporation Retarders: Chemical films (monomolecular films) can be sprayed on the surface to reduce moisture loss during finishing.

Leave a Comment