Computational Combustion Methods

Computational combustion refers to the use of numerical techniques to model the physical and chemical processes that occur during the burning of fuels. The field combines fluid dynamics, heat and mass transfer, and detailed chemical kinetic…

Download PDF Free · printable · SEO-indexed
Computational Combustion Methods

Computational combustion refers to the use of numerical techniques to model the physical and chemical processes that occur during the burning of fuels. The field combines fluid dynamics, heat and mass transfer, and detailed chemical kinetics in a single framework that can predict flame structure, pollutant formation, and overall engine performance. Mastery of the terminology is essential for students to navigate the literature, develop models, and interpret simulation results. The following exposition defines the most frequently encountered terms, illustrates their practical relevance, and highlights common challenges that arise in computational practice.

Governing equations form the mathematical foundation of any combustion simulation. They consist of the conservation laws for mass, momentum, energy, and species. In a compressible reacting flow the continuity equation expresses mass conservation, while the momentum equations are a set of three coupled Navier‑Stokes equations that account for convective transport, pressure forces, and viscous stresses. The energy equation tracks the internal energy or total enthalpy of the mixture, including heat release from chemical reactions. Species transport equations describe the evolution of each chemical component and contain convective, diffusive, and source terms that represent reaction rates. These equations are typically written in a differential form and then discretized for numerical solution.

The term conservation law emphasizes that the integral of a conserved quantity over a control volume changes only due to fluxes across its boundaries and any internal production or consumption. For example, the mass of a reacting gas mixture inside a combustion chamber can increase only if fuel is injected through an inlet or decrease if exhaust leaves through an outlet. This principle guides the choice of numerical schemes that respect the physical balance and avoid spurious creation or loss of mass, energy, or species.

Species transport equations contain a diffusion term that can be modeled in several ways. The simplest approach is Fickian diffusion, where the diffusive flux of a species is proportional to its concentration gradient. More accurate models employ the multicomponent diffusion formulation, which accounts for interactions among all species and yields a diffusion matrix. The latter is computationally expensive, especially for mechanisms containing dozens of species, and often leads to stiff linear systems that require specialized solvers. In practice, many codes adopt the mixture‑averaged approximation, which reduces the diffusion matrix to a diagonal form while preserving the dominant physical effects.

Reaction mechanism is a collection of elementary chemical steps that together describe the conversion of reactants to products. A detailed mechanism may contain hundreds of species and thousands of reactions, each with its own Arrhenius parameters. For example, the oxidation of a simple hydrocarbon such as methane can be represented by the GRI‑3.0 mechanism, which includes 53 species and 325 reactions. Detailed mechanisms are essential for high‑fidelity predictions of flame speeds, ignition delays, and pollutant formation, but they impose a heavy computational burden.

To mitigate this cost, researchers develop reduced mechanisms that retain the most influential pathways while discarding less important reactions. Reduction techniques include sensitivity analysis, principal component analysis, and directed relation graph methods. A reduced mechanism for methane combustion might consist of 9 species and 30 reactions, offering a substantial speedup with a modest loss of accuracy for certain operating conditions. The trade‑off between fidelity and efficiency is a central theme in computational combustion.

Stiffness arises when the system of ordinary differential equations (ODEs) governing chemical kinetics contains widely separated time scales. Fast radical reactions can occur on the order of nanoseconds, while slower fuel consumption processes evolve over milliseconds. Explicit time integration methods, such as forward Euler, require a time step smaller than the fastest reaction time to maintain stability, leading to prohibitive computational cost. Implicit schemes, such as backward differentiation formulas (BDF), allow larger time steps by solving a nonlinear system at each step, but they demand the evaluation of the Jacobian matrix and its factorization.

The Jacobian matrix contains the partial derivatives of the reaction source terms with respect to the species concentrations and temperature. Its sparsity pattern reflects the connectivity of the reaction network; in a detailed mechanism many entries are zero because a given reaction involves only a subset of species. Efficient storage and factorization of the Jacobian are crucial for scalable implicit solvers. Techniques such as analytical Jacobian generation, automatic differentiation, and sparse linear algebra libraries (e.g., KLU, SuperLU) are routinely employed to accelerate stiff integration.

Operator splitting separates the treatment of advection, diffusion, and reaction processes. In a typical splitting scheme, the flow variables are first advanced through a convective step, then diffused, and finally reacted. This approach permits the use of specialized solvers for each sub‑process, such as high‑order upwind schemes for advection and dedicated stiff ODE integrators for chemistry. Strang splitting is a second‑order accurate variant that applies half a reaction step before and after the transport steps, thereby reducing splitting error. Despite its convenience, operator splitting can introduce artificial errors if the sub‑steps are not sufficiently resolved, especially in highly coupled flame regions where chemical and transport time scales are comparable.

Finite volume method (FVM) is the most widely used discretization technique for combustion simulations. The computational domain is divided into control volumes, and the integral form of the governing equations is applied to each volume. Fluxes across the faces are evaluated using reconstructed values of the primitive variables, and conservative properties are naturally preserved. In practice, fluxes can be approximated by central differencing for diffusion and upwind or high‑resolution schemes (e.g., MUSCL, WENO) for convection. The FVM framework readily accommodates unstructured meshes, which are essential for complex geometries such as turbine combustors and rocket nozzles.

An alternative is the finite element method (FEM), which employs basis functions to approximate the solution fields within each element. FEM offers flexibility in handling higher‑order approximations and complex boundary conditions, but its implementation for compressible reacting flows is more involved due to the need for consistent flux evaluations. Spectral methods, including spectral element and pseudo‑spectral approaches, achieve exponential convergence for smooth solutions but are limited to regular domains and can be sensitive to Gibbs phenomena near discontinuities such as flame fronts.

Direct numerical simulation (DNS) resolves all turbulent scales down to the Kolmogorov length and includes detailed chemistry without modeling. DNS provides the most accurate representation of turbulent combustion, serving as a benchmark for model development. However, the required grid resolution scales with Reynolds number to the power of 9/4, making DNS feasible only for low‑Reynolds‑number laboratory flames. For example, a DNS of a premixed turbulent flame with a Reynolds number of 100 may require on the order of 10^9 grid points and teraflop‑scale computing resources.

Because DNS is impractical for most engineering applications, researchers resort to modeling approaches such as large eddy simulation (LES) and Reynolds‑averaged Navier‑Stokes (RANS). LES resolves the large, energy‑containing eddies while modeling the sub‑grid‑scale (SGS) motions. The filtered governing equations contain SGS stress and scalar flux terms that must be closed using models such as the Smagorinsky‑type eddy viscosity or dynamic procedures. LES of combustion often couples the filtered flow equations with a combustion model, for example the flamelet progress variable (FPV) approach, to represent the interaction between turbulence and chemistry.

In contrast, RANS averages the governing equations over time or ensemble, yielding a set of equations for the mean flow quantities. Turbulence closure is achieved through Reynolds stress models (RSM) or the more common two‑equation models (k‑ε, k‑ω). When applied to combustion, RANS requires additional modeling for the turbulent scalar fluxes and reaction rates. The most popular RANS combustion models include the eddy dissipation model (EDM), eddy dissipation concept (EDC), and the flamelet generated manifold (FGM) method. Each model balances computational cost against the level of physical detail retained.

Flamelet models treat the thin reaction zone of a turbulent flame as a collection of locally one‑dimensional structures embedded in the turbulent flow. The flamelet equations solve the steady or unsteady diffusion–reaction balance in a mixture fraction coordinate, assuming that curvature and strain effects are secondary. The resulting flamelet library stores quantities such as temperature, species mass fractions, and heat release rate as functions of mixture fraction and scalar dissipation rate. During the CFD simulation, the local mixture fraction is interpolated from the library to obtain the thermochemical state. This approach dramatically reduces the cost of evaluating detailed chemistry while preserving the influence of local strain.

The flamelet progress variable (FPV) extension introduces a progress variable, often defined as a weighted sum of product species, to capture the state of reaction progress. By augmenting the flamelet library with the progress variable, the FPV model can represent partially premixed and non‑premixed flames within a unified framework. The model is widely used in LES of gas turbine combustors, where it captures flame stabilization, extinction, and re‑ignition phenomena.

Damköhler number (Da) quantifies the ratio of the flow time scale to the chemical time scale. In a premixed flame, Da = (U/L)/(k exp(−Ea/RT)), where U is a characteristic velocity, L a characteristic length, k the pre‑exponential factor, Ea the activation energy, R the universal gas constant, and T the temperature. Large Da indicates that chemistry is fast compared to transport, leading to thin reaction zones and flamelet behavior. Small Da implies that transport dominates, producing distributed combustion where reaction and mixing are intertwined. Understanding Da helps select appropriate modeling strategies; for example, flamelet models are appropriate for high‑Da regimes, while thickened‑flame or probability‑density‑function (PDF) methods are better suited for low‑Da conditions.

Karlovitz number (Ka) measures the ratio of the flame time scale to the smallest turbulent time scale (the Kolmogorov time). Ka = (τ_f/τ_k), where τ_f = δ_L/U_L is the flame time based on laminar flame thickness δ_L and laminar flame speed S_L, and τ_k = (ν/ε)^{1/2} is the Kolmogorov time derived from kinematic viscosity ν and turbulent dissipation rate ε. Ka determines the regime of turbulent combustion: low Ka corresponds to the flamelet regime, intermediate Ka to the thin reaction zones, and high Ka to the distributed reaction regime. Accurate estimation of Ka guides the selection of combustion sub‑models and informs mesh resolution requirements.

Laminar flame speed (S_L) is a fundamental property of a fuel‑air mixture that denotes the speed at which a planar, one‑dimensional flame propagates into quiescent reactants under adiabatic, constant‑pressure conditions. S_L depends on mixture composition, temperature, pressure, and detailed chemistry. It is commonly measured experimentally and used to validate chemical mechanisms. In computational practice, S_L serves as a reference for defining turbulent flame speed models, such as the widely used correlation S_T = S_L (1 + C Re_t^{n}), where Re_t is the turbulent Reynolds number, C and n are empirical constants.

Turbulent flame speed (S_T) represents the average propagation speed of a turbulent flame front relative to the unburned mixture. Unlike S_L, S_T accounts for the enhancement of burning due to turbulence‑induced flame wrinkling and stretching. Various models predict S_T based on turbulence intensity, integral length scale, and flame properties. The wrinkled flame model treats the flame surface area increase as the primary mechanism, while the flamelet‑generated turbulence model incorporates the effect of strain on flame structure. Accurate prediction of S_T is critical for designing low‑emission combustors, where flame speed must be matched to the flow residence time.

Markstein length (L_M) characterizes the sensitivity of a premixed flame to curvature and stretch. Positive L_M indicates that curvature stabilizes the flame, while negative L_M implies destabilization. The Markstein number, Ma = L_M/δ_L, is often used as a nondimensional measure. In computational combustion, Markstein parameters appear in flame surface density models and influence the prediction of flame wrinkling, extinction, and blow‑off. Experimental determination of L_M for various fuels assists in calibrating flame‑stretch models.

Lewis number (Le) is the ratio of thermal diffusivity to mass diffusivity for a given species. In many hydrocarbon flames, Le ≈ 1 for the fuel, but deviations occur for light species such as hydrogen, where Le can be significantly less than unity. Non‑unity Lewis numbers affect flame structure, especially in diffusion flames, by altering the relative rates of heat and mass transport. Computational models that assume Le = 1 may mispredict flame thickness and soot formation; therefore, accurate specification of Le is important for high‑fidelity simulations.

Peclet number (Pe) measures the relative strength of convective transport to diffusive transport. Pe = UL/D, where U is a characteristic velocity, L a characteristic length, and D a diffusion coefficient. High Pe indicates advection‑dominated flow, while low Pe suggests diffusion dominates. In combustion, Pe influences flame shape and stability; for instance, a high Pe in a bluff‑body stabilizer promotes a attached flame, whereas low Pe can lead to vortex‑induced flame lift‑off.

Flame thickness denotes the characteristic width over which temperature and species gradients transition from reactants to products. It can be estimated as δ_L = α/S_L, where α is the thermal diffusivity. Accurate resolution of flame thickness is essential for capturing flame–turbulence interactions. In LES, the grid spacing is often chosen to be comparable to or larger than δ_L, and sub‑grid models must compensate for the unresolved flame structure.

Heat release rate (HRR) quantifies the rate at which chemical energy is converted to thermal energy per unit volume. HRR is computed from the sum of reaction rates multiplied by the enthalpy of formation of each species. Spatial distribution of HRR provides insight into flame location, intensity, and potential hotspots that could trigger thermo‑acoustic instability. In CFD post‑processing, contour plots of HRR are routinely used to assess combustion efficiency and locate regions of incomplete combustion.

Soot modeling involves predicting the formation, growth, and oxidation of carbonaceous particles. Soot arises from incomplete combustion of high‑molecular‑weight hydrocarbons, and its prediction requires a detailed representation of polycyclic aromatic hydrocarbon (PAH) chemistry, particle nucleation, surface growth, coagulation, and oxidation. Lumped models such as the two‑equation soot model (mass fraction and number density) provide a computationally tractable alternative to full sectional or moment methods. However, soot predictions remain challenging due to the stiff nature of PAH pathways and the sensitivity of soot to flame temperature and equivalence ratio.

Radiation modeling accounts for the emission, absorption, and scattering of thermal radiation within the flame and surrounding surfaces. Radiation can constitute a significant portion of heat loss, especially in high‑temperature diffusion flames. The radiative transfer equation (RTE) is an integro‑differential equation that is expensive to solve directly. Approximate methods such as the discrete ordinates method (DOM), the P‑1 approximation, and the optically thin limit are commonly employed. Accurate radiation modeling requires spectral data (e.g., from the HITRAN database) and may be coupled with soot models, since soot particles are strong radiators.

Adaptive mesh refinement (AMR) dynamically adjusts grid resolution based on solution features such as gradients of temperature, species, or HRR. By refining the mesh near flame fronts and coarsening it elsewhere, AMR reduces the total number of cells while preserving accuracy. Implementation of AMR requires error estimation criteria, load‑balancing strategies for parallel computation, and careful treatment of flux continuity across refinement boundaries. Challenges include maintaining conservation across mesh interfaces and avoiding spurious reflections at coarse‑fine transitions.

Boundary conditions specify the behavior of flow variables at domain edges. Common types include inlet (prescribed velocity, temperature, and species composition), outlet (often a pressure‑outlet or non‑reflecting condition), wall (no‑slip for velocity, adiabatic or prescribed heat flux for temperature), and periodic (used for statistically homogeneous turbulence). In combustion simulations, incorrect boundary specifications can lead to unphysical pressure oscillations, artificial flame anchoring, or loss of mass conservation. For example, a pressure‑outlet that does not allow backflow can cause numerical blow‑up when the flame induces a strong pressure rise.

Ignition delay is the elapsed time between the start of fuel‑oxidizer mixing and the onset of rapid heat release. In zero‑dimensional reactor models (e.g., constant‑volume or constant‑pressure reactors), ignition delay is computed as the time at which temperature rises by a specified amount (often 400 K) above the initial value. Ignition delay is a key metric for validating chemical mechanisms against shock‑tube experiments. In CFD, ignition delay can be estimated by monitoring temperature or HRR at a point of interest, but the spatial heterogeneity of real flows makes the concept more complex.

Flame extinction occurs when the local conditions no longer support sustained combustion. Extinction mechanisms include excessive stretch (high strain rate), insufficient residence time, or dilution by inert gases. In computational models, extinction is often captured by a flamelet library that includes extinguished branches, or by a progress‑variable model that allows the progress variable to fall below a critical threshold. Predicting extinction accurately is vital for safety analysis, as it governs flame stability limits in engines and industrial burners.

Flame stabilization refers to the mechanisms that keep a flame anchored in a desired location, such as a recirculation zone behind a bluff body, a cavity, or a slot in a combustor. Numerical simulations must resolve the flow structures that provide the necessary recirculation and mixing. For example, LES of a swirl‑stabilized combustor reveals a vortex breakdown that creates a low‑pressure core, which in turn draws fresh mixture into the reaction zone. Capturing such phenomena requires adequate grid resolution, appropriate turbulence modeling, and a combustion model capable of responding to local strain.

Combustion instability is the coupling between unsteady heat release and acoustic waves that can lead to large pressure oscillations. Thermo‑acoustic instability is a major concern in rocket engines and gas turbines. Computational analysis of instability often involves linearized perturbation methods or time‑accurate CFD that resolves pressure fluctuations. The Rayleigh criterion provides a theoretical condition: instability occurs if the heat release is in phase with pressure oscillations. Numerical challenges include the need for low‑dissipation discretization, accurate time stepping, and proper treatment of boundary reflections.

Probability density function (PDF) methods represent the statistical distribution of scalar quantities (e.g., mixture fraction, temperature, species) within a turbulent flow. The transport equation for the PDF avoids closure of the reaction term, because the chemical source appears as an ensemble average that can be computed directly from the known chemistry. However, the PDF equation introduces unclosed terms for convection and diffusion, which are modeled using stochastic particles or presumed PDF shapes (e.g., beta distribution for mixture fraction). PDF methods are highly accurate for non‑premixed flames but are computationally intensive.

Thickened‑flame model artificially increases the flame thickness by scaling the diffusion coefficients and reaction rates, allowing the flame to be resolved on a coarser grid. The scaling factor (often denoted F) must be chosen to preserve the laminar flame speed and flame structure. Sub‑grid models are applied to account for the unresolved flame–turbulence interaction, typically by incorporating a turbulent flame speed or a flame surface density term. Thickened‑flame approaches are popular in large‑eddy simulations of premixed combustion because they retain detailed chemistry while reducing grid requirements.

Flame surface density (Σ) quantifies the total flame area per unit volume. It appears in models that treat the flame as a thin interface, such as the G‑equation and flamelet‑generated turbulence models. Σ evolves according to production (by turbulent strain) and destruction (by flame propagation and curvature) terms. Accurate prediction of Σ is essential for estimating the overall HRR in premixed LES, where the HRR is often expressed as ρ S_L Σ. The evolution equation for Σ can be derived from geometric considerations or obtained from DNS data.

G‑equation is a level‑set formulation that describes the motion of an iso‑surface representing the flame front. The G‑equation takes the form ∂G/∂t + (u·∇)G = S_L|∇G|, where u is the flow velocity and S_L the laminar flame speed. Extensions include modeling flame stretch, curvature, and turbulent flame speed by adding correction terms. The G‑equation is computationally efficient for premixed flames because it reduces the problem to tracking a scalar field, but it does not directly provide species concentrations, which must be reconstructed from additional models.

Look‑up table techniques store precomputed thermochemical data on a multidimensional grid, typically in terms of mixture fraction, progress variable, and scalar dissipation rate. During a CFD run the local state is interpolated from the table, avoiding on‑the‑fly chemistry integration. This approach underpins flamelet and FGM methods. The main challenges lie in selecting the appropriate dimensions, ensuring sufficient resolution to capture steep gradients, and handling extrapolation when the simulation explores regions outside the table bounds.

Tabulated chemistry extends look‑up tables by including additional parameters such as pressure and strain rate, enabling the representation of pressure‑dependent reaction rates and high‑Mach‑number effects. Tabulated chemistry can also incorporate soot variables and radiation properties, providing a unified framework for multi‑physics coupling. However, the storage requirement grows exponentially with the number of dimensions, prompting the use of compression techniques (e.g., principal component analysis) or adaptive sampling strategies.

Pressure‑dependent reactions exhibit rate coefficients that vary with pressure due to fall‑off or chemically activated pathways. The Lindemann, Troe, and SRI formulations are common models for describing the pressure dependence. In computational combustion, these reactions introduce additional stiffness because the effective rate can change dramatically across the pressure range encountered in a combustor. Accurate implementation requires evaluation of the reduced pressure parameter and, often, the use of specialized ODE solvers that can adapt to rapid changes.

Strain rate measures the rate at which fluid elements are stretched or compressed. In a flame, strain influences the balance between reaction and diffusion, affecting flame thickness and extinction limits. The scalar strain rate is often expressed as the magnitude of the velocity gradient tensor projected onto the flame normal. In modeling, strain rate appears in the flamelet equations as the scalar dissipation rate χ, defined as χ = 2 D |∇Z|², where Z is the mixture fraction. High χ values correspond to strong strain and can drive flame extinction.

Scalar dissipation rate (χ) quantifies the rate at which fluctuations of a scalar (such as mixture fraction) are smoothed by molecular diffusion. χ is a key parameter in flamelet models because it directly controls the thickness of the flamelet and the probability of extinction. In turbulent flows, χ is not uniform; it varies with local turbulence intensity and scalar gradients. Accurate estimation of χ can be obtained from DNS data, modeled using turbulence quantities (e.g., ε and ν), or derived from presumed probability density functions.

Damköhler number and Karlovitz number together define the combustion regime diagram, which guides the selection of appropriate modeling techniques. For instance, a point lying in the “thin reaction zones” region suggests that a flamelet model with a modified scalar dissipation rate may be sufficient, whereas a point in the “distributed reaction” region indicates the need for a model that resolves chemistry and turbulence simultaneously, such as a filtered‑density‑function approach.

Filtered density function (FDF) extends PDF methods to LES by defining a probability density function conditioned on the filtered velocity field. The FDF evolves according to a transport equation that includes modeled sub‑grid terms. Monte‑Carlo particle methods are often used to solve the FDF equation, providing a statistically exact representation of the filtered chemistry. While highly accurate, FDF methods are computationally demanding and are typically applied to benchmark cases rather than full‑scale engine simulations.

Preconditioning techniques accelerate the convergence of iterative solvers for the linear systems arising from implicit time stepping. By transforming the original system into a more favorable one, preconditioners reduce the number of iterations required for convergence. Common preconditioners include incomplete LU factorization (ILU), algebraic multigrid (AMG), and physics‑based block diagonal approaches that treat the stiff chemistry block separately from the transport block. Effective preconditioning is essential for large‑scale combustion simulations where the Jacobian matrix can be extremely ill‑conditioned.

Time integration schemes determine how the solution advances in time. For stiff reacting flows, implicit schemes such as BDF2 or Rosenbrock‑Wanner methods are preferred because they allow larger time steps without sacrificing stability. However, implicit methods require solving a nonlinear system at each step, which can dominate the computational cost. Explicit schemes, such as Runge‑Kutta, are simpler to implement but are constrained by the Courant–Friedrichs–Lewy (CFL) condition and the fastest chemical time scales. Hybrid methods, like semi‑implicit or additive Runge‑Kutta, attempt to balance stability and efficiency by treating the stiff chemistry implicitly while handling convection explicitly.

Courant number (C) expresses the ratio of the physical distance a wave travels during a time step to the grid spacing. For explicit schemes, stability typically requires C ≤ 1 for convection and C ≤ 0.5 for diffusion. In reacting flows, an additional constraint arises from chemical stiffness, leading to a “chemical Courant number” based on the smallest reaction time scale. Choosing an appropriate time step therefore involves evaluating both fluid and chemical constraints.

Mesh quality influences numerical accuracy and convergence. Elements with high aspect ratio, skewness, or non‑orthogonality can degrade solution fidelity, especially for high‑order discretizations. In combustion, where sharp gradients exist, a well‑structured mesh that aligns with the flame front can reduce numerical diffusion and improve the prediction of flame position. Mesh generation tools often provide metrics to assess quality, and automated mesh refinement algorithms can be employed to improve problematic regions.

Parallel computing is indispensable for modern combustion simulations. Domain decomposition splits the computational domain among multiple processors, each handling a subset of cells. Communication between processors is required for flux evaluation at shared faces and for global reductions (e.g., residual norms). Load balancing ensures that each processor receives a comparable amount of work; otherwise, idle time can dominate the runtime. Scalability is measured by strong scaling (fixed problem size) and weak scaling (proportional increase in problem size). Achieving near‑linear scaling demands careful attention to communication patterns, memory access, and algorithmic design.

Verification and validation (V&V) are systematic processes that assess the correctness of a computational model (verification) and its agreement with physical reality (validation). Verification involves checking that the numerical solution converges to the exact solution of the governing equations as the mesh is refined (grid convergence study) and that the code correctly implements the intended algorithms (method of manufactured solutions). Validation compares simulation results against experimental data, such as flame speed measurements, ignition delay times, or pressure oscillations in an engine test. Uncertainty quantification, sensitivity analysis, and error propagation are increasingly integrated into V&V to provide confidence intervals for predictions.

Uncertainty quantification (UQ) addresses the impact of input uncertainties (e.g., kinetic parameters, boundary conditions, material properties) on simulation outputs. Monte‑Carlo sampling, polynomial chaos expansion, and stochastic collocation are common UQ techniques. In combustion, the high dimensionality of kinetic mechanisms makes UQ particularly challenging; however, reduced‑order models and surrogate models can be employed to explore the parameter space efficiently. UQ results inform design margins and risk assessments for safety‑critical applications.

Sensitivity analysis identifies which parameters have the greatest influence on a quantity of interest, such as flame temperature or pollutant emissions. Local sensitivity can be computed by finite differences, while global sensitivity uses variance‑based methods (Sobol indices). In kinetic mechanism development, sensitivity analysis guides the selection of reactions to retain in reduced mechanisms and highlights which rate constants need more accurate experimental determination. Sensitivity information is also valuable for constructing surrogate models that approximate the full chemistry with a limited set of basis functions.

Hybrid combustion models combine features of different approaches to capture a broader range of phenomena. For example, a partially premixed flame can be modeled using a flamelet library for the premixed portion and a diffusion flamelet for the non‑premixed portion, with a blending function based on the local mixture fraction variance. Another hybrid strategy couples a thickened‑flame model in regions where the flame is under‑resolved with a flamelet model where the grid is fine enough. Hybrid models aim to retain accuracy while reducing computational cost, but they introduce additional complexity in defining transition criteria and ensuring consistency across model interfaces.

Combustion chemistry reduction techniques extend beyond simple species elimination. Quasi‑steady‑state approximation (QSSA) treats certain intermediate species as rapidly equilibrating, allowing their concentrations to be expressed algebraically in terms of other variables. The method of intrinsic low‑dimensional manifolds (ILDM) projects the high‑dimensional kinetic system onto a low‑dimensional manifold that captures the slow dynamics, providing a compact representation of the reaction progress. More recent approaches, such as the computational singular perturbation (CSP) method, decompose the dynamics into fast and slow modes, enabling systematic removal of negligible modes. These reduction strategies are integrated into CFD codes to accelerate simulations without sacrificing essential chemical pathways.

Combustion in multiphase flows introduces additional complexity due to droplet evaporation, particle combustion, and interphase mass transfer. In spray combustion, the liquid fuel is discretized into parcels, each representing a collection of droplets. Evaporation models compute the mass transfer rate based on the d²‑law, accounting for ambient temperature, pressure, and species concentrations. The evaporated vapor is then mixed with the oxidizer and burned according to the gas‑phase chemistry. Accurate modeling of droplet breakup, spray plume development, and secondary atomization is crucial for predicting flame lift‑off, flame length, and emissions in aviation turbine engines.

Non‑premixed combustion is characterized by the presence of a mixing layer where fuel and oxidizer meet. The mixture fraction Z is a conserved scalar that tracks the proportion of fuel in a given location. In the flamelet framework, Z serves as the independent variable, and the flame structure is solved as a function of Z and χ. The flamelet equations yield temperature and species profiles that are then mapped onto the CFD solution. Non‑premixed flames often produce high soot levels due to rich fuel pockets, making soot modeling particularly important in this regime.

Premixed combustion involves a homogeneous mixture of fuel and oxidizer before ignition. The flame propagates as a thin front, and its speed is primarily determined by the laminar flame speed and the turbulence intensity. Premixed flame models frequently use a progress variable c, defined as c = (Y_product – Y_product,0)/(Y_product,max – Y_product,0), where Y_product denotes the mass fraction of a selected product species. The reaction rate is then expressed as a function of c, turbulent mixing parameters, and possibly curvature. Premixed models are widely applied in low‑emission combustors, such as lean‑burn gas turbines, where precise control of equivalence ratio is essential for reducing NOx.

Partial premixing occurs when the fuel and oxidizer are not completely mixed before ignition, leading to regions of varying equivalence ratio within the flame. This situation is common in practical combustors that employ staged injection or swirl to promote mixing. Modeling partial premixing requires capturing both premixed and non‑premixed combustion characteristics. The flamelet‑generated manifold method handles this by constructing a multidimensional manifold that includes mixture fraction, progress variable, and pressure as independent variables, allowing the model to interpolate between pure premixed and pure non‑premixed limits.

NOx formation is a major environmental concern. Thermal NOx arises from high temperatures via the Zeldovich mechanism, which involves the reactions N₂ + O → NO + N and N + O₂ → NO + O. Prompt NOx forms through early‑stage hydrocarbon reactions, while fuel‑bound NOx originates from nitrogen present in the fuel molecules. Accurate NOx prediction demands detailed mechanisms that include nitrogen chemistry, as well as precise temperature fields. Combustion models often employ a reduced NOx sub‑mechanism or empirical correlations (e.g., the extended Zeldovich formulation) to estimate emissions while keeping computational cost manageable.

Soot formation pathways are initiated by the formation of PAHs, which serve as the building blocks for soot particles. The HACA (hydrogen abstraction‑carbon addition) mechanism describes the growth of PAHs by successive addition of acetylene (C₂H₂) to aromatic radicals. Oxidation of PAHs occurs via reactions with OH, O₂, and other oxidants, leading to soot burnout. In CFD, soot models may track a few moments (mass, number, surface area) or employ a sectional approach that resolves a distribution of particle sizes. Coupling soot models with radiation transport is essential because soot radiates strongly, influencing flame temperature and heat transfer.

Radiative heat transfer in combustion is governed by the radiative transfer equation (RTE), which balances emission, absorption, and scattering along a line of sight. Solving the RTE directly (e.g., using the discrete ordinates method) is computationally expensive due to the angular discretization. Approximate methods, such as the P‑1 model, treat radiation as a diffusion process, suitable for optically thick media. The optically thin approximation assumes negligible re‑absorption, simplifying the source term to pure emission. Selecting an appropriate radiation model depends on the optical thickness of the flame, presence of soot, and required accuracy.

Acoustic coupling in combustors can lead to limit‑cycle oscillations that degrade performance and cause structural fatigue. Computational analysis of acoustic coupling often employs a linearized approach, where the unsteady heat release is represented as a source term in the acoustic wave equation. The Rayleigh index quantifies the net energy transfer between heat release and acoustic pressure. In CFD, time‑accurate simulations that resolve both the flow and acoustic field can predict the frequency and amplitude of thermo‑acoustic instabilities, provided that the numerical scheme has low artificial damping.

Mesh refinement criteria for combustion typically involve monitoring gradients of temperature, species, HRR, or scalar dissipation rate. A common practice is to refine cells where the magnitude of ∇T

Key takeaways

  • The field combines fluid dynamics, heat and mass transfer, and detailed chemical kinetics in a single framework that can predict flame structure, pollutant formation, and overall engine performance.
  • Species transport equations describe the evolution of each chemical component and contain convective, diffusive, and source terms that represent reaction rates.
  • The term conservation law emphasizes that the integral of a conserved quantity over a control volume changes only due to fluxes across its boundaries and any internal production or consumption.
  • The latter is computationally expensive, especially for mechanisms containing dozens of species, and often leads to stiff linear systems that require specialized solvers.
  • Detailed mechanisms are essential for high‑fidelity predictions of flame speeds, ignition delays, and pollutant formation, but they impose a heavy computational burden.
  • A reduced mechanism for methane combustion might consist of 9 species and 30 reactions, offering a substantial speedup with a modest loss of accuracy for certain operating conditions.
  • Implicit schemes, such as backward differentiation formulas (BDF), allow larger time steps by solving a nonlinear system at each step, but they demand the evaluation of the Jacobian matrix and its factorization.
August 2026 intake · open enrolment
from £99 GBP
Enrol