How to Calculate Air Leakage Rate

Air Leakage Rate Calculator (ACH50) .alr-calculator-container { max-width: 800px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; line-height: 1.6; } .alr-calculator-box { background-color: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 40px; } .alr-form-group { margin-bottom: 20px; } .alr-label { display: block; font-weight: 600; margin-bottom: 8px; color: #2c3e50; } .alr-input { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: 4px; font-size: 16px; box-sizing: border-box; transition: border-color 0.2s; } .alr-input:focus { border-color: #007bff; outline: none; } .alr-btn { background-color: #007bff; color: white; border: none; padding: 14px 24px; font-size: 16px; font-weight: 600; border-radius: 4px; cursor: pointer; width: 100%; transition: background-color 0.2s; } .alr-btn:hover { background-color: #0056b3; } .alr-result-box { margin-top: 25px; padding: 20px; background-color: #ffffff; border-left: 5px solid #007bff; border-radius: 4px; display: none; } .alr-result-value { font-size: 28px; font-weight: 700; color: #007bff; margin-bottom: 10px; } .alr-result-text { font-size: 15px; color: #555; margin-bottom: 5px; } .alr-rating { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-top: 5px; } .rating-excellent { background-color: #d4edda; color: #155724; } /* Passive House */ .rating-good { background-color: #cce5ff; color: #004085; } /* Energy Efficient */ .rating-average { background-color: #fff3cd; color: #856404; } /* Standard Code */ .rating-poor { background-color: #f8d7da; color: #721c24; } /* Leaky */ .alr-content h2 { font-size: 24px; margin-top: 35px; margin-bottom: 15px; color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; } .alr-content p { margin-bottom: 15px; } .alr-content ul { margin-bottom: 20px; padding-left: 20px; } .alr-content li { margin-bottom: 8px; } .alr-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; } .alr-table th, .alr-table td { border: 1px solid #dee2e6; padding: 12px; text-align: left; } .alr-table th { background-color: #e9ecef; font-weight: 600; } .help-text { font-size: 12px; color: #6c757d; margin-top: 4px; }

Air Leakage Rate Calculator (ACH50)

Enter the CFM (Cubic Feet per Minute) measured at 50 Pascals pressure.
The total volume of air inside the conditioned space of the building.
Air Changes per Hour @ 50Pa (ACH50):
0.00
Airflow per minute: CFM
Efficiency Rating:

function calculateAirLeakage() { // Get inputs var cfmInput = document.getElementById('cfm50Input'); var volInput = document.getElementById('volumeInput'); var resultBox = document.getElementById('resultBox'); var achDisplay = document.getElementById('achResult'); var cfmDisplay = document.getElementById('cfmResult'); var ratingBadge = document.getElementById('ratingBadge'); var ratingDesc = document.getElementById('ratingDesc'); var cfm50 = parseFloat(cfmInput.value); var volume = parseFloat(volInput.value); // Validation if (isNaN(cfm50) || isNaN(volume) || volume <= 0 || cfm50 < 0) { alert("Please enter valid positive numbers for Fan Flow and Building Volume."); resultBox.style.display = "none"; return; } // Calculation Logic: ACH50 = (CFM50 * 60) / Volume var ach50 = (cfm50 * 60) / volume; // Round to 2 decimals var achFinal = Math.round(ach50 * 100) / 100; // Determine Rating var ratingText = ""; var ratingClass = ""; var descText = ""; if (achFinal <= 0.6) { ratingText = "Passive House Standard"; ratingClass = "rating-excellent"; descText = "Exceptional airtightness. Meets Passive House Institute standards. Requires mechanical ventilation (HRV/ERV)."; } else if (achFinal <= 3.0) { ratingText = "Energy Efficient"; ratingClass = "rating-good"; descText = "Good airtightness. Meets most modern energy codes (IECC 2015+ requires 3.0 or less in many zones)."; } else if (achFinal <= 5.0) { ratingText = "Average New Home"; ratingClass = "rating-average"; descText = "Standard construction. May have some drafts but meets older building codes."; } else { ratingText = "Leaky / Older Home"; ratingClass = "rating-poor"; descText = "Significant air leakage detected. High potential for energy loss and drafts. Air sealing recommended."; } // Update DOM achDisplay.innerHTML = achFinal + " ACH50"; cfmDisplay.innerHTML = cfm50; ratingBadge.innerHTML = ratingText; ratingBadge.className = "alr-rating " + ratingClass; ratingDesc.innerHTML = descText; resultBox.style.display = "block"; }

How to Calculate Air Leakage Rate (ACH50)

Understanding air leakage is critical for assessing a building's energy efficiency, durability, and indoor air quality. The standard metric used by energy auditors and HVAC professionals is ACH50, or Air Changes per Hour at 50 Pascals of pressure. This calculator helps you determine that rate based on Blower Door test results.

What is ACH50?

ACH50 measures how many times the entire volume of air inside a house is replaced by outside air in one hour, assuming the house is under a pressure difference of 50 Pascals (roughly equivalent to a 20 mph wind blowing against all sides of the house simultaneously). A lower number indicates a tighter, more energy-efficient home.

The Air Leakage Formula

To calculate the air leakage rate, you need two primary data points: the airflow measured by the Blower Door fan (CFM50) and the conditioned volume of the house.

ACH50 = (CFM50 × 60) / Building Volume
  • CFM50: Cubic Feet per Minute of airflow required to maintain a 50 Pascal pressure difference. This is read directly from the Blower Door manometer.
  • 60: Multiplier to convert "Minutes" (from CFM) into "Hours" (for ACH).
  • Building Volume: The total cubic footage of the conditioned space (Length × Width × Height of all rooms).

Example Calculation

Let's assume you are auditing a standard 2,000 square foot home with 8-foot ceilings. You perform a Blower Door test and the manometer reads 1,800 CFM50.

  1. Calculate Volume: 2,000 sq ft × 8 ft = 16,000 cubic feet.
  2. Get CFM50: 1,800 CFM.
  3. Apply Formula: (1,800 × 60) / 16,000
  4. Math: 108,000 / 16,000 = 6.75 ACH50

In this example, the result is 6.75, which indicates a moderately leaky home typical of older construction.

Interpreting Your Results

Once you have your ACH50 number, you can compare it against building standards to determine the "tightness" of the building envelope.

ACH50 Score Classification Notes
≤ 0.6 Passive House Extremely airtight. Mechanical ventilation is strictly required.
0.6 – 3.0 Energy Efficient Meets IECC 2015/2018 codes for most climate zones. Very good performance.
3.0 – 5.0 Standard New Home Acceptable for some codes, but leaves room for improvement in air sealing.
5.0 – 10.0 Average Existing Home Typical of homes built before 2000. Likely has drafts and higher utility bills.
> 10.0 Very Leaky Significant air infiltration. High priority for weatherization and air sealing.

Why Lower Isn't Always "Better" Without Ventilation

While a low ACH50 saves energy, a house that is too tight ("Build it tight, ventilate it right") must have a mechanical fresh air system, such as an ERV (Energy Recovery Ventilator) or HRV. If you seal an older home down below 3.0 ACH50 without adding ventilation, you risk indoor air quality issues and moisture buildup.

Leave a Comment