DEV Community

Evgenii Konkin
Evgenii Konkin

Posted on

The Engineering Math Behind Energy Recovery Wheels: Decoding ASHRAE Effectiveness Formulas

Energy recovery wheels can achieve up to 80% total effectiveness in ideal conditions, but that number hides complex thermodynamic interactions between temperature and humidity transfer that many engineers oversimplify.

The Formula

The ASHRAE effectiveness formulas for energy recovery wheels represent elegant applications of heat and mass transfer principles. The sensible effectiveness formula ε_s = |T_oa − T_sa| / |T_oa − T_ra| × 100 quantifies how efficiently the wheel transfers sensible heat between airstreams. Here, T_oa represents outdoor air temperature entering the supply side, T_sa is the supply air temperature leaving the wheel after heat exchange, and T_ra is return air temperature entering the exhaust side. The absolute value operations ensure positive effectiveness values regardless of whether the wheel is heating or cooling the supply air, while the denominator represents the maximum possible temperature difference that could theoretically be achieved.

The latent effectiveness formula ε_L = |W_oa − W_sa| / |W_oa − W_ra| × 100 follows similar logic but for moisture transfer. W_oa is outdoor air humidity ratio entering the supply side, W_sa is supply air humidity ratio leaving the wheel, and W_ra is return air humidity ratio entering the exhaust side. These humidity ratios are typically measured in grams of moisture per kilogram of dry air. The total effectiveness ε_total = (ε_s + ε_L) / 2 provides a weighted average that reflects the wheel's overall performance, though experienced engineers know this simplification has limitations when sensible and latent transfers differ significantly.

// Implementation of the effectiveness formulas
function calculateEffectiveness(T_oa, T_sa, T_ra, W_oa, W_sa, W_ra) {
    const sensibleEffectiveness = (T_oa !== T_ra) 
        ? Math.abs((T_oa - T_sa) / (T_oa - T_ra)) * 100 
        : 0;

    const latentEffectiveness = (W_oa !== W_ra) 
        ? Math.abs((W_oa - W_sa) / (W_oa - W_ra)) * 100 
        : 0;

    const totalEffectiveness = (sensibleEffectiveness + latentEffectiveness) / 2;

    return { sensibleEffectiveness, latentEffectiveness, totalEffectiveness };
}
Enter fullscreen mode Exit fullscreen mode

Worked Example 1

Let's calculate effectiveness for a cooling scenario in a commercial office building during summer. The outdoor air temperature T_oa is 35°C with a humidity ratio W_oa of 18 g/kg. The return air from the conditioned space is at T_ra = 24°C with W_ra = 9 g/kg. After passing through the energy recovery wheel, the supply air leaving temperature T_sa measures 28°C with W_sa = 12 g/kg. The supply airflow rate is 10,000 m³/h.

First, calculate sensible effectiveness: ε_s = |35 − 28| / |35 − 24| × 100 = 7/11 × 100 = 63.6%. This means the wheel transfers 63.6% of the maximum possible sensible heat from the hot outdoor air to the cooler exhaust stream.

Next, calculate latent effectiveness: ε_L = |18 − 12| / |18 − 9| × 100 = 6/9 × 100 = 66.7%. The wheel transfers 66.7% of the maximum possible moisture from the humid outdoor air to the drier exhaust stream.

Total effectiveness becomes: ε_total = (63.6 + 66.7) / 2 = 65.2%. We can also calculate energy recovered: sensible recovered = 10,000 × 0.3353 × |35 − 28| = 23,471 W, and latent recovered = 10,000 × 0.8337 × |18 − 12| = 50,022 W. The constants 0.3353 and 0.8337 convert airflow and property differences to power units.

Worked Example 2

Now consider a heating scenario in winter conditions. Outdoor air T_oa = -5°C with W_oa = 2 g/kg. Return air T_ra = 22°C with W_ra = 7 g/kg. After recovery, supply air T_sa = 12°C with W_sa = 5 g/kg. Supply airflow remains 10,000 m³/h.

Sensible effectiveness: ε_s = |-5 − 12| / |-5 − 22| × 100 = 17/27 × 100 = 63.0%. The wheel transfers heat from the warm exhaust to the cold incoming air.

Latent effectiveness: ε_L = |2 − 5| / |2 − 7| × 100 = 3/5 × 100 = 60.0%. Moisture transfers from the more humid exhaust to the drier incoming air.

Total effectiveness: ε_total = (63.0 + 60.0) / 2 = 61.5%. Energy recovered: sensible = 10,000 × 0.3353 × 17 = 57,001 W, latent = 10,000 × 0.8337 × 3 = 25,011 W. Notice how in heating mode, both sensible and latent transfers work in the same direction—adding heat and moisture to the supply air.

What Engineers Often Miss

First, many engineers overlook that effectiveness varies with face velocity. Manufacturer ratings typically specify effectiveness at a particular face velocity (often 2.5-3.0 m/s), but actual installations may operate at different velocities. At higher face velocities, air spends less time in the wheel matrix, reducing effectiveness. At 4.0 m/s, effectiveness can drop 10-15% compared to rated values.

Second, the assumption of equal supply and exhaust airflow is critical but often violated in practice. Even a 10% imbalance can reduce actual effectiveness by 5-8% because the wheel cannot transfer energy optimally when one airstream has significantly more mass flow than the other. This is particularly problematic in buildings with pressurization requirements or where exhaust fans operate at different speeds than supply fans.

Third, temperature and humidity conditions dramatically affect latent effectiveness due to the desiccant properties of enthalpy wheels. At very low humidity ratios (below 3 g/kg), many desiccant coatings become less effective at moisture transfer. Similarly, at high temperatures (above 40°C), some desiccants may release moisture rather than absorb it. These nonlinear behaviors mean that a wheel rated at 70% effectiveness at standard conditions might perform at 50% or 90% in extreme conditions.

Try the Calculator

For quick calculations without implementing the formulas yourself, you can use the Energy Recovery Wheel Efficiency Calculator. It handles both metric and imperial units, calculates all effectiveness measures, and includes energy recovery calculations. Simply input your measured or design conditions to get immediate results. Energy Recovery Wheel Efficiency Calculator

Top comments (0)