AC1 (Air Changes Per Hour) Calculator
Air Changes Per Hour (AC1):
What is AC1 (Air Changes Per Hour)?
AC1, commonly referred to in the HVAC industry as ACH (Air Changes per Hour), is a measure of how many times the total volume of air in a specific room or space is replaced with new air within one hour. This metric is critical for ensuring proper ventilation, maintaining indoor air quality, and controlling humidity or airborne contaminants.
The AC1 Formula
AC1 = (CFM × 60) / (Length × Width × Height)
Where:
- CFM: Cubic Feet per Minute (airflow rate of your fan/vent).
- 60: Minutes in an hour.
- Volume: Length × Width × Height of the room in cubic feet.
Recommended AC1 Rates by Room Type
| Room Type | Recommended AC1 (ACH) |
|---|---|
| Kitchens | 15 – 60 |
| Bathrooms | 8 – 15 |
| Bedrooms/Living Rooms | 5 – 10 |
| Classrooms | 4 – 6 |
Example Calculation
If you have a bedroom that is 12 feet long, 10 feet wide, and 8 feet high, your total volume is 960 cubic feet. If you install a bathroom fan rated at 80 CFM, the calculation would be:
(80 CFM × 60 minutes) / 960 cubic feet = 4,800 / 960 = 5.0 AC1.
function calculateAC1() {
var length = parseFloat(document.getElementById(‘roomLength’).value);
var width = parseFloat(document.getElementById(‘roomWidth’).value);
var height = parseFloat(document.getElementById(‘roomHeight’).value);
var cfm = parseFloat(document.getElementById(‘fanCFM’).value);
var resultDiv = document.getElementById(‘ac1-result’);
var valueDiv = document.getElementById(‘ac1-value’);
var interpretationDiv = document.getElementById(‘ac1-interpretation’);
if (isNaN(length) || isNaN(width) || isNaN(height) || isNaN(cfm) || length <= 0 || width <= 0 || height <= 0 || cfm < 0) {
alert("Please enter valid positive numbers for all fields.");
return;
}
var volume = length * width * height;
var ac1 = (cfm * 60) / volume;
valueDiv.innerHTML = ac1.toFixed(2);
resultDiv.style.display = 'block';
var interpretation = "";
if (ac1 = 4 && ac1 10 && ac1 <= 30) {
interpretation = "High Ventilation Rate: Ideal for bathrooms, laundry rooms, or commercial spaces.";
} else {
interpretation = "Very High Ventilation Rate: Typical for professional kitchens, laboratories, or high-moisture areas.";
}
interpretationDiv.innerHTML = interpretation;
}