MEASUR-Tools-Suite v1.2.4
The MEASUR Tools Suite is a collection of industrial efficiency calculations written in C++ and with bindings for compilation to WebAssembly.
Loading...
Searching...
No Matches

The excess air is determined from the oxygen concentration in the flue gas using stoichiometric relationships. The calculation accounts for the fact that excess oxygen in flue gas indicates incomplete combustion air utilization. The formula uses empirical factors derived from combustion stoichiometry for typical fuels.

This calculation is a fundamental component used throughout process heat calculations, including:

The formula provides a quick estimate of excess air based on measured flue gas oxygen content. For more complex fuel compositions, iterative refinement may be applied (as in solid_liquid_flue_gas_material::calculateExcessAirFromFlueGasO2).

\begin{equation}\label{eq:process-heat-excess-air} EA = \frac{8.52381 \cdot O_{2,flue}}{2 - 9.52381 \cdot O_{2,flue}}\end{equation}

Symbols
\(EA\)Excess air \([\unit{ \unitless}]\)
\(O_{2,flue}\)Oxygen in flue gas \([\unit{ \unitless}]\)
\(8.52381\)Stoichiometric air factor \([\unit{ \unitless}]\)
\(9.52381\)Oxygen flue gas factor \([\unit{ \unitless}]\)
Note
Input oxygen should be provided as a fraction (not percentage). For example, 3% O2 should be passed as 0.03.