DEV Community

Cover image for CFM Calculation: Why Floor Area Is Not Enough to Size Ventilation
Evgenii Konkin
Evgenii Konkin

Posted on

CFM Calculation: Why Floor Area Is Not Enough to Size Ventilation

The CFM formula for room ventilation:

CFM = (L × W × H × ACH) / 60
Enter fullscreen mode Exit fullscreen mode

Where:

L = room length, ft
W = room width, ft
H = ceiling height, ft
ACH = air changes per hour
60 = minutes per hour (converts ft³/hr to ft³/min)
Enter fullscreen mode Exit fullscreen mode

The metric version:

Airflow (m³/hr) = L × W × H × ACH
Enter fullscreen mode Exit fullscreen mode

The volume mistake

The most common error: using floor area instead of volume.

Room: 20 ft × 15 ft
Floor area: 300 ft²

With 9 ft ceilings:
Volume = 300 × 9 = 2,700 ft³
CFM = 2,700 × 6 / 60 = 270 CFM

With 12 ft ceilings:
Volume = 300 × 12 = 3,600 ft³
CFM = 3,600 × 6 / 60 = 360 CFM
Enter fullscreen mode Exit fullscreen mode

Same footprint. 33% more air required. If you sized the fan for 270 CFM in the 12-foot room, the actual air change rate drops to 4.5 ACH instead of 6.

ACH requirements by space type

Space type                ACH
────────────────────────────────
Residential living room   4–6
Office, retail            6–8
Kitchen, restaurant       8–12
Laboratory, hospital      10–20+
Clean room                20–60+
Industrial, welding       15+
Enter fullscreen mode Exit fullscreen mode

Choosing the wrong ACH is worse than getting the volume wrong. An office at 6 ACH is comfortable. A lab at 6 ACH violates ASHRAE 62.1.

Worked example

Office space:

Room: 20 × 15 × 9 ft
ACH: 6 (standard office)

Volume = 20 × 15 × 9 = 2,700 ft³
CFM = 2,700 × 6 / 60
CFM = 270
Enter fullscreen mode Exit fullscreen mode

The room needs 270 CFM of delivered air.

Fan selection: add system losses

The 270 CFM is room demand. The fan must overcome:

Duct friction
Filter pressure drop
Damper resistance
Fitting losses
Enter fullscreen mode Exit fullscreen mode

Rule of thumb: add 10–20% to calculated CFM for fan selection.

Room demand:     270 CFM
System margin:   +15%
Fan selection:   270 × 1.15 = 311 CFM
Enter fullscreen mode Exit fullscreen mode

Select a fan rated at 310+ CFM at the design static pressure. Not 270.

CFM vs FPM

These are different measurements:

CFM = volume flow rate (ft³/min)  → how much air
FPM = velocity (ft/min)           → how fast the air moves
Enter fullscreen mode Exit fullscreen mode

They are related through duct area:

CFM = FPM × Duct Area (ft²)
Enter fullscreen mode Exit fullscreen mode

Example:

270 CFM through a 12-inch round duct:
Area = π × (12/24)² = 0.785 ft²
FPM = 270 / 0.785 = 344 FPM
Enter fullscreen mode Exit fullscreen mode

Specifying 270 FPM instead of 270 CFM is a completely different number. One is volume. The other is velocity.

What the CFM calculation does not cover

It does not account for:
  Outdoor air ventilation requirements (ASHRAE 62.1)
  Exhaust makeup air
  Pressurization requirements
  Duct static pressure budget
  Noise criteria
  Thermal load matching
  Humidity control
Enter fullscreen mode Exit fullscreen mode

The volume × ACH method is a screening estimate. It tells you approximately how much air the room needs. Full ventilation design requires ASHRAE procedures, duct sizing, and fan curve analysis.

Top comments (0)