DEV Community

Evgenii Konkin
Evgenii Konkin

Posted on

The Engineering Math Behind Fan Laws: Decoding the Affinity Laws for HVAC System Analysis

A 20% increase in fan speed doesn't just add 20% more power—it multiplies power consumption by 1.728, nearly doubling energy requirements while airflow increases only linearly. This cubic relationship between speed and power is why variable frequency drives (VFDs) can achieve such dramatic energy savings in HVAC systems, and understanding the mathematical foundation behind these relationships separates engineers who guess from those who calculate with precision.

The Formula: Each Variable with Its Physical Meaning

The fan laws, also known as affinity laws, are expressed through three distinct mathematical relationships that govern how centrifugal machines behave when operating conditions change. The core formula uses exponent relationships where CFM represents airflow in cubic feet per minute, SP stands for static pressure measured in inches of water gauge, and BHP indicates brake horsepower. The ratio variable equals newValue divided by knownValue, serving as the scaling factor that drives all calculations. What makes these formulas particularly elegant is how they encode physical principles: airflow scales linearly with speed because each revolution moves approximately the same volume of air, pressure scales with the square of speed due to the kinetic energy imparted to the air molecules, and power scales with the cube because it must overcome both the increased airflow and the squared pressure increase.

In code form, the relationships become explicit through conditional exponents:

ratio = newValue / knownValue;
cfmExp = (fanLaw == 1) * 1 + (fanLaw == 2) * 3 + (fanLaw == 3) * 0;
spExp = (fanLaw == 1) * 2 + (fanLaw == 2) * 2 + (fanLaw == 3) * 1;
bhpExp = (fanLaw == 1) * 3 + (fanLaw == 2) * 5 + (fanLaw == 3) * 1;
newCFM = (fanLaw == 3) * knownCFM + (fanLaw != 3) * knownCFM * Math.pow(ratio, cfmExp);
newSP = knownSP * Math.pow(ratio, spExp);
newBHP = knownBHP * Math.pow(ratio, bhpExp);
Enter fullscreen mode Exit fullscreen mode

The exponents change based on which fan law applies: Fan Law 1 for speed changes uses exponents 1, 2, and 3; Fan Law 2 for diameter changes uses 3, 2, and 5; and Fan Law 3 for density changes uses 0, 1, and 1. These exponents aren't arbitrary—they derive from fundamental fluid dynamics principles. The cubic relationship for airflow with diameter (Fan Law 2) comes from the fact that airflow depends on the swept volume, which scales with diameter cubed for geometrically similar fans. The fifth-power relationship for power with diameter emerges because power equals torque times speed, and both torque and speed have diameter dependencies that multiply together.

Worked Example 1: Speed Reduction for Energy Savings

Let's calculate the effects of reducing fan speed by 15% using Fan Law 1. Starting with a known operating point: CFM₁ = 12,000 CFM, SP₁ = 2.5 in. w.g., BHP₁ = 25 HP, and RPM₁ = 1,200. The new speed will be RPM₂ = 1,020 (15% reduction). First, calculate the ratio: ratio = 1,020 / 1,200 = 0.85. Now apply the formulas: newCFM = 12,000 × 0.85 = 10,200 CFM (15% reduction). newSP = 2.5 × 0.85² = 2.5 × 0.7225 = 1.80625 in. w.g. (approximately 27.75% reduction). newBHP = 25 × 0.85³ = 25 × 0.614125 = 15.353125 HP (approximately 38.6% reduction). The percentage changes confirm the relationships: airflow decreased linearly by 15%, pressure decreased by the square (0.85² = 0.7225, or 27.75% reduction), and power decreased by the cube (0.85³ = 0.614125, or 38.6% reduction). This demonstrates why even modest speed reductions yield substantial energy savings—the power drops faster than the airflow.

Worked Example 2: Impeller Diameter Increase for System Upgrade

Now consider upgrading a fan by increasing impeller diameter from 24 inches to 26 inches using Fan Law 2. Known values: CFM₁ = 8,500 CFM, SP₁ = 1.8 in. w.g., BHP₁ = 15 HP, D₁ = 24 in. New diameter D₂ = 26 in. Calculate ratio: 26 / 24 = 1.08333. Apply Fan Law 2 exponents: newCFM = 8,500 × 1.08333³ = 8,500 × 1.271 = 10,803.5 CFM (27.1% increase). newSP = 1.8 × 1.08333² = 1.8 × 1.1736 = 2.11248 in. w.g. (17.36% increase). newBHP = 15 × 1.08333⁵ = 15 × 1.483 = 22.245 HP (48.3% increase). Notice how diameter changes create different scaling than speed changes: airflow increases with the cube of diameter ratio, making diameter modifications extremely effective for increasing capacity but requiring careful motor sizing since power increases with the fifth power. The 8.33% diameter increase generated a 48.3% power increase—a critical consideration for electrical system design.

What Engineers Often Miss: Three Practical Insights Experienced Engineers Overlook

First, many engineers forget that fan laws assume the system curve remains unchanged. In reality, when you change fan speed or diameter, the operating point moves along the system curve, which itself may not be perfectly quadratic. For changes beyond 30%, the actual performance may deviate from predictions because the fan efficiency changes at different operating points. Second, the cubic power relationship with speed means that small speed increases above design can quickly overload motors. A fan running at 110% of design speed doesn't use 10% more power—it uses 33% more (1.1³ = 1.331). This oversight leads to motor failures when operators tweak VFD settings without recalculating power requirements. Third, Fan Law 2 applies only to geometrically similar fans. Changing diameter while maintaining geometric similarity requires proportional changes to all dimensions, not just the impeller diameter. Many retrofit projects violate this assumption, leading to performance that deviates significantly from calculations.

Try the Calculator

Manually calculating fan law relationships with proper exponent handling can be error-prone, especially when working with multiple scenarios or converting between units. The Fan Law Calculator automates these calculations while ensuring you apply the correct exponents for each scenario. Whether you're analyzing VFD energy savings, planning fan upgrades, or troubleshooting system performance, this tool provides instant results with percentage changes that help you make informed engineering decisions.

Top comments (0)