Combustion Chemistry (Propulsion Bridge)
Level: 3 — Production (from-scratch derivations, code-from-memory, explain-out-loud) Time limit: 45 minutes Total marks: 60
Constants (use as needed): ; standard enthalpies of formation (298 K, kJ/mol): , , , , . Mean molar heat capacities (J/mol·K, treat constant): , , , . Air = , by mole.
Q1. Stoichiometry & equivalence ratio (10 marks)
Methane burns in air. (a) Write the balanced stoichiometric reaction with air, giving the moles of carried along. (3) (b) Define the equivalence ratio from scratch (in terms of actual and stoichiometric fuel/oxidiser ratios). State the sign of for fuel-rich and fuel-lean cases. (3) (c) A burner runs methane at . Compute the actual air-to-fuel molar ratio and state which major species (beyond ) will appear in the exhaust and why. (4)
Q2. Adiabatic flame temperature — from scratch (14 marks)
For stoichiometric –air combustion with reactants entering at 298 K: (a) State the energy-balance principle used to obtain the adiabatic flame temperature (constant pressure, no dissociation). (3) (b) Compute the total enthalpy released per mole of (i.e. ) using the given formation enthalpies. (4) (c) Set up the product-heating equation and solve for using the constant values. Include the carried by the air. (7)
Q3. High-temperature dissociation & equilibrium (10 marks)
At high , becomes significant. (a) Explain physically why dissociation lowers the true flame temperature relative to the value you computed in Q2. (3) (b) Write the equilibrium constant for this reaction in terms of partial pressures / mole fractions and total pressure . (4) (c) Explain qualitatively (Le Chatelier) how increasing chamber pressure affects the degree of dissociation, and why rocket chambers therefore run hotter at high pressure. (3)
Q4. Deflagration vs Detonation — Chapman–Jouguet (10 marks)
(a) Contrast deflagration and detonation in terms of propagation speed (relative to sound), pressure change across the wave, and the driving mechanism. (4) (b) State the Chapman–Jouguet condition and explain what it physically selects (which point on the Rayleigh line / Hugoniot). (3) (c) Explain why detonation is undesirable inside a liquid rocket engine chamber but is exploited in a pulse/rotating detonation engine. (3)
Q5. Solid propellants & Vieille's law — derivation + code (10 marks)
A composite AP/HTPB/Al propellant follows Vieille's (Saint-Robert's) law . (a) State what , , and represent and the physical role of each ingredient (AP, HTPB, Al). (4) (b) Two static-fire tests give at and at . Derive expressions for and and compute them. (4) (c) Write a short Python snippet (from memory) that, given the two data points, returns and . (2)
Q6. Explain-out-loud: CEA & pollutants (6 marks)
(a) In two or three sentences describe what NASA-CEA computes and the two key inputs you must supply to get , product mole fractions, and . (3) (b) Name the three main pollutant classes from hydrocarbon combustion and give the one combustion condition that most increases each. (3)
Answer keyMark scheme & solutions
Q1 (10)
(a) Stoichiometric with air (3): With air, each mole carries mol : Balanced eqn (1), air O₂ = 2 (1), N₂ = 7.52 (1).
(b) (3): . fuel-rich (excess fuel, ); fuel-lean (excess oxidiser). Definition (2), signs (1).
(c) (4): means less fuel than stoichiometric ⇒ excess air. Actual mol; air mol; A/F molar = 11.9 (per mol CH₄). Lean ⇒ excess appears in exhaust (there is leftover oxidiser). O₂ scaling (1), air ratio (2), excess O₂ identified (1).
Q2 (14)
(a) (3): Adiabatic, constant-P: . No heat lost. Enthalpy of reaction at 298 goes entirely into sensible heating of products from 298 to : . Principle (2), equation form (1).
(b) (4): So heat released . Products sum (2), subtract reactant (1), value (1).
(c) (7): Products per mol CH₄: 1 CO₂, 2 H₂O, 7.52 N₂. Heat capacity sum (3), rearrange (2), ΔT (1), T_ad (1). (Real value ~2230 K lower due to dissociation — see Q3.)
Q3 (10)
(a) (3): Dissociation reactions (CO₂→CO+½O₂, H₂O→OH+H) are endothermic; they absorb energy that would otherwise raise sensible temperature, so real < ideal no-dissociation value. Also they increase mole count/species. Endothermic (2), lowers T (1).
(b) (4): For , Net , hence the dependence. Correct ratio (2), pressure exponent ½ (2).
(c) (3): Increasing shifts equilibrium toward fewer gas moles (toward ), suppressing dissociation. Less dissociation ⇒ less endothermic loss ⇒ hotter chamber. Le Chatelier direction (2), hotter conclusion (1).
Q4 (10)
(a) (4): Deflagration: subsonic (relative to unburned gas), slight pressure drop/near-constant P, driven by thermal conduction + species diffusion. Detonation: supersonic (Mach 4–8), sharp pressure rise (5–30×), driven by a shock wave that compresses/ignites the mixture. 2 marks each mode covering speed+P+mechanism.
(b) (3): C–J condition: the detonation propagates at the minimum wave speed for which the Rayleigh line is tangent to the Hugoniot; at the C–J point the burned-gas velocity relative to the wave equals the local sound speed ( downstream). It uniquely selects the steady, self-sustaining detonation velocity. Tangency/sonic condition (2), self-sustaining (1).
(c) (3): In a steady liquid engine, detonation causes destructive pressure spikes/combustion instability that can rupture the chamber. In PDE/RDE the detonation is intentional and confined, giving near-constant-volume (pressure-gain) combustion with higher thermodynamic efficiency than deflagration. Undesirable reason (1.5), exploited efficiency (1.5).
Q5 (10)
(a) (4): = linear burn rate (mm/s); = burn-rate coefficient (depends on propellant/temperature); = pressure exponent (combustion stability requires ). AP = oxidiser (supplies O), HTPB = polymeric fuel/binder holding grain together, Al = metallic fuel raising flame temperature/ and damping instability. Symbols (2), ingredients (2).
(b) (4): Take ratio: n derivation (2), a (2).
(c) (2):
import math
def vieille(r1,P1,r2,P2):
n = math.log(r2/r1)/math.log(P2/P1)
a = r1/P1**n
return n, a
print(vieille(6.0,5.0,9.0,10.0)) # (0.585, 2.31)Correct n & a formulas (2).
Q6 (6)
(a) (3): CEA solves chemical equilibrium (minimising Gibbs free energy) for a given mixture to output equilibrium composition, , and rocket performance (, ). Required inputs: (1) propellant identities and O/F ratio (or ), (2) chamber pressure and problem type (e.g. rocket with an area/pressure ratio for nozzle expansion). What it does (1.5), two inputs (1.5).
(b) (3): NOₓ — increased by high flame temperature (thermal/Zeldovich mechanism, lean-hot zones); Soot — increased by fuel-rich, poorly-mixed (diffusion) combustion; Unburned hydrocarbons (UHC)/CO — increased by low temperature / incomplete combustion (over-lean or quenching). 1 mark each with correct condition.
[
{"claim":"Q2b heat of reaction magnitude 802.2 kJ/mol","code":"dHr=(-393.5+2*(-241.8))-(-74.9); result=abs(abs(dHr)-802.2)<0.1"},
{"claim":"Q2c cp sum 389.4 J/K","code":"s=1*54.3+2*41.2+7.52*33.6; result=abs(s-389.36)<0.1"},
{"claim":"Q2c T_ad approx 2358 K","code":"s=1*54.3+2*41.2+7.52*33.6; T=298+802200/s; result=abs(T-2358)<5"},
{"claim":"Q5 n=0.585 and a=2.31","code":"import sympy as sp; n=sp.log(sp.Rational(9,6))/sp.log(2); a=6/5**n; result=abs(float(n)-0.585)<0.005 and abs(float(a)-2.31)<0.02"},
{"claim":"Q1c air-fuel molar ratio 11.9","code":"AF=(2/0.8)*4.76; result=abs(AF-11.9)<0.05"}
]