4. Nozzle Losses¶
The ideal thrust coefficient \(C_f\) derived in ยง1.8 assumes isentropic, perfectly expanded, single-phase, axially directed flow. Real nozzles deviate from this ideal due to four independent loss mechanisms. Each is expressed as a percentage loss and combined into an overall nozzle efficiency \(\eta_{nozzle}\).
All empirical correlations are from: Coats et al. (1975). A Computer Program for the Prediction of Solid Propellant Rocket Motor Performance, Vol. I. AFRPL-TR-75-36 (DTIC AD-A015 140).
4.1 Divergent Loss¶
A conical nozzle exhausts gas over a range of directions from \(0\) to the half-angle \(\alpha\) relative to the thrust axis. The axial momentum fraction is computed by integrating over the cone surface, assuming uniform flow across the exit plane:
The divergence loss is \(1 - \lambda\), expressed as a fraction in [0, 1]:
Applicable to conical nozzles only. Contoured (bell) nozzles can achieve near-zero
divergence loss by design. Implemented in
get_nozzle_divergent_loss_fraction.
Applies to: solid and liquid motors.
4.2 Kinetics Loss¶
In the ideal \(C_f\) derivation, the combustion products are assumed to remain in shifting chemical equilibrium as they expand through the nozzle. In reality, finite-rate chemistry "freezes" the composition at some point, leaving unreacted species that carry energy out of the nozzle without contributing to thrust.
The magnitude is proportional to the gap between CEA-predicted frozen and equilibrium (shifting) specific impulses:
where the pressure correction factor accounts for the fact that higher chamber pressures accelerate reactions toward equilibrium:
Implemented in
get_kinetics_loss_fraction.
Applies to: solid and liquid motors.
4.3 Boundary Layer Loss¶
Viscous effects near the nozzle wall create a low-velocity boundary layer that reduces the effective flow area and transfers heat from the gas to the wall. The governing parameter group emerges from Blasius flat-plate boundary-layer theory: the displacement thickness scales as \(\delta^* \propto P_0^{0.8} / D_t^{0.2}\) (from a Reynolds-number argument with viscosity \(\propto T^{0.7}\)).
The loss is also time-dependent: the wall heats up during the burn, reducing the heat-flux driving force and therefore the loss:
with pressures in psi and diameter in inches. The 0.01 factor converts the
classical percent-form expression to the fraction convention used here.
\(C_1\) and \(C_2\) are nozzle-material constants (e.g. \(C_1=0.003650\),
\(C_2=0.000937\) for a standard graphite/phenolic nozzle). Implemented in
get_boundary_layer_loss_fraction.
Applies to: solid motors only (the empirical constants \(C_1, C_2\) are calibrated against a BATES motor; the LRE state passes \(\eta_{BL} = 0\)).
4.4 Two-Phase Flow Loss¶
Solid and hybrid propellants produce condensed-phase particles (e.g. alumina \(\text{Al}_2\text{O}_3\)) in the combustion products. These particles cannot expand isentropically through the nozzle and lag behind the gas, transferring momentum and heat imperfectly to the surrounding gas.
Step 1 โ Average particle size (condensation in chamber + coagulation in nozzle):
where \(\xi\) is the condensed-phase mass fraction, \(L^*\) is the characteristic chamber length [in], and \(D_t\) is the throat diameter [in].
Step 2 โ Two-phase loss (tabulated power-law fit):
Coefficients \(C_3\)โ\(C_6\) depend on \(\xi\), \(D_t\), and \(d_p\) ranges
(tabulated in AFRPL-TR-75-36; the 0.01 factor converts the percent-form
expression to the fraction convention used here). Implemented in
get_two_phase_flow_loss_fraction.
Applies to: solid motors only. Liquid bipropellants typically produce gas-phase products with no condensed phase, so the LRE state passes \(\eta_{2p} = 0\).
4.5 Overall Nozzle Efficiency¶
The four loss fractions are additive, giving the overall efficiency applied to the ideal thrust coefficient:
Implemented in
get_overall_nozzle_efficiency
and applied via
apply_thrust_coefficient_correction.
References¶
- Coats, D. E., Levine, J. N., Nickerson, G. R., Tyson, T. J., Cohen, N. S., Harry, D. P. III, & Price, C. F. (1975). A Computer Program for the Prediction of Solid Propellant Rocket Motor Performance, Volume I. Technical Report AFRPL-TR-75-36 (DTIC Accession AD-A015 140). Air Force Rocket Propulsion Laboratory.
- Sutton, G. P., & Biblarz, O. (2017). Rocket Propulsion Elements (9th ed.). Wiley. Ch. 3.