Did you know that properly sized ducts can improve HVAC energy efficiency by 10–30%? That's not just a minor optimization—it's the difference between a system that silently delivers comfort and one that roars with turbulence while wasting significant energy. The physics behind this efficiency gain lies in the precise mathematical relationship between airflow, velocity, and duct cross-sectional area.
The Formula: Each Variable with Its Physical Meaning
The fundamental equation governing duct sizing is deceptively simple: Area = Airflow / Velocity. In metric units, this becomes A (m²) = Q (m³/s) / V (m/s), where Q represents the volumetric flow rate of air through the system and V is the air velocity within the duct. The division operation here isn't arbitrary—it directly expresses how duct area must increase proportionally with airflow while decreasing inversely with velocity. If you double the airflow, you need twice the duct area to maintain the same velocity; conversely, if you double the velocity, you can halve the duct area for the same airflow.
In practical implementation, we need to handle unit conversions and different duct shapes. The calculator's code reveals these transformations:
# Metric calculation example
airflow_m3h = 3600 # m³/h
velocity_ms = 6.0 # m/s
# Convert airflow from m³/h to m³/s
airflow_m3s = airflow_m3h / 3600 # = 1.0 m³/s
# Calculate area in square meters
area_m2 = airflow_m3s / velocity_ms # = 0.1667 m²
# Convert to square centimeters for practical use
area_cm2 = area_m2 * 10000 # = 1667 cm²
# Calculate round duct diameter in millimeters
diameter_mm = math.sqrt(4 * area_m2 / math.pi) * 1000 # ≈ 460.7 mm
# For rectangular ducts with given width
rect_width_mm = 400
rect_height_mm = (area_m2 / (rect_width_mm / 1000)) * 1000 # ≈ 416.7 mm
The 3600 divisor appears because we're converting from hours to seconds (1 hour = 3600 seconds). The 10000 multiplier converts square meters to square centimeters (1 m² = 10,000 cm²). For round ducts, we apply the circle area formula A = πr² rearranged to solve for diameter. The rectangular calculation divides the total area by width to find height, maintaining the crucial area-velocity relationship.
Worked Example 1: Commercial Office Ventilation
Let's calculate duct sizing for a medium-sized conference room requiring 1800 m³/h of fresh air at a velocity of 5 m/s—typical for commercial HVAC systems where noise control is important but space constraints exist.
First, convert airflow: 1800 m³/h ÷ 3600 = 0.5 m³/s
Calculate area: 0.5 m³/s ÷ 5 m/s = 0.1 m²
Convert to practical units: 0.1 m² × 10000 = 1000 cm²
For a round duct: diameter = √(4 × 0.1 ÷ π) × 1000 ≈ 357 mm
For a rectangular duct with 300 mm width: height = (0.1 ÷ (300/1000)) × 1000 ≈ 333 mm
Velocity verification: 0.5 m³/s ÷ 0.1 m² = 5 m/s ✓
This 357 mm round duct or 300×333 mm rectangular duct would provide balanced airflow without excessive noise or pressure drop for this conference room application.
Worked Example 2: Industrial Exhaust System
Now consider an industrial setting where higher velocities are acceptable: 7200 m³/h at 10 m/s for fume extraction.
Convert airflow: 7200 m³/h ÷ 3600 = 2.0 m³/s
Calculate area: 2.0 m³/s ÷ 10 m/s = 0.2 m²
Convert units: 0.2 m² × 10000 = 2000 cm²
Round duct: diameter = √(4 × 0.2 ÷ π) × 1000 ≈ 505 mm
Rectangular with 400 mm width: height = (0.2 ÷ (400/1000)) × 1000 = 500 mm
Velocity check: 2.0 m³/s ÷ 0.2 m² = 10 m/s ✓
Notice how doubling the velocity (from 5 to 10 m/s) while quadrupling the airflow (from 0.5 to 2.0 m³/s) only doubles the required area—this nonlinear relationship is why velocity selection dramatically impacts duct sizing decisions.
What Engineers Often Miss
First, many engineers overlook the friction loss implications of aspect ratio in rectangular ducts. While a 400×500 mm rectangular duct has the same area as a 505 mm round duct, its 1.25:1 aspect ratio creates different friction characteristics than a 4:1 duct would. The SMACNA manual shows that aspect ratios above 4:1 can increase friction losses by 40% or more, significantly impacting fan selection and energy consumption.
Second, the unit conversion trap catches even experienced engineers. Mixing m³/h with m/s without the 3600 divisor or confusing CFM with FPM leads to errors of three orders of magnitude. Always verify your units match before performing calculations—airflow in volume per time, velocity in distance per time, with consistent time units throughout.
Third, static pressure drop in long duct runs frequently gets underestimated. While the basic area calculation assumes ideal conditions, real ducts experience friction that increases with length and decreases with diameter. A 505 mm duct might work for a short run, but for a 50-meter run, you might need a 550 mm duct to maintain the same effective airflow at the terminal end, especially with multiple elbows and transitions.
Try the Calculator
For quick, accurate duct sizing without manual calculations, use the Duct Size Calculator. It handles both metric and imperial units, calculates round and rectangular dimensions, and includes velocity verification—saving time while ensuring your HVAC designs meet both performance and efficiency targets.

