Bypass Ratio Trade (propulsion/turbofan/bypass-ratio-trade)
Use when the task is the bypass ratio design trade for a turbofan:
the thrust split between the fan and core streams, the specific
thrust, and the TSFC across candidate bypass ratios at fixed core
conditions.
Domain quick reference
Units are SI, with TSFC in g/(kN*s):
- Bypass ratio B = mdot_fan / mdot_core, the fan stream mass flow
divided by the core stream mass flow; at fixed total mass flow the
split is mdot_fan = B/(1+B) * mdot_total and mdot_core =
mdot_total/(1+B).
- Net thrust per stream F = mdot*(Vj - V0), so total thrust is the
fan share plus the core share; the fan jet velocity runs well
below the core jet velocity.
- Specific thrust F/mdot_total in m/s (N per kg/s), a fan-size
loading measure: high specific thrust means a small, highly loaded
fan.
- Propulsive efficiency eta_p = 2/(1 + Vj/V0) for a stream at jet
velocity Vj in flight at V0; a lower average jet velocity raises
eta_p.
- TSFC = mdot_fuel/F with mdot_fuel = f * mdot_core (f = core
fuel/air ratio), reported in g/(kN*s); at fixed core conditions a
higher BPR lowers TSFC.
- The gain has a price: a larger fan, weight, and drag, and the fan
pressure ratio rise with fan jet velocity cuts the efficiency
gain. The trade sits in the FAR-33 engine design context.
Workflow
- Fix the core conditions: total mass flow, core and fan jet
velocities, flight velocity, and the core fuel/air ratio.
- Compute the stream split with thrust_split (mdot_fan, mdot_core,
F_core, F_fan, F_total).
- Normalize the thrust with specific_thrust (F_total / mdot_total).
- Compute the fuel burn per unit thrust with tsfc in g/(kN*s).
- Sweep the candidate bypass ratios with bpr_trend and read the
thrust split, specific thrust, and TSFC trend.
- Assess the fan with fan_pressure_ratio_note and fold the fan
loading penalty into the trade verdict.
Pitfalls
- Treating bypass ratio as a mass fraction: B is a ratio of two mass
flows, and the fan share of total flow is B/(1+B), not B.
- Mixing units in TSFC: fuel flow in kg/s and thrust in N must be
converted before quoting g/(kN*s).
- Forgetting the fixed-core caveat: the TSFC gain with BPR assumes
constant core and fan jet velocities, while real fans grow
diameter, weight, and drag as BPR rises.
- Ignoring the fan pressure ratio: a higher FPR raises fan jet
velocity, which erodes the propulsive efficiency gain.
- Comparing specific thrust across engines with different total mass
flows.
Behavior contract (gate 3)
The thrust split, specific thrust, TSFC, and fan pressure ratio logic
is exercised by the gate 3 contract test:
scripts/test_bypass_ratio_trade_logic.py against
scripts/bypass_ratio_trade_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_bypass_ratio_trade_logic.py
Compliance
- FAR-33 is referenced, not reproduced: US government work (public
domain); the trade model is common propulsion methodology, summary
only per standards-map.yaml.
- compliance: STANDARDS-REF, gated: false.
1---2name: bypass-ratio-trade3description: Use when you must size the bypass ratio design trade for a turbofan: compute the thrust split between the fan and core streams, the specific thrust, and the thrust-specific fuel consumption across candidate bypass ratios, and weigh them against the fan pressure ratio trend. Produces the per-stream mass flows and thrust shares, the TSFC versus bypass ratio trend, and the fan pressure ratio verdict that feed the engine trade study. Trigger: bypass ratio, bpr, specific thrust, tsfc, fan pressure ratio, turbofan trade.4license: Apache-2.05---67# Bypass Ratio Trade (propulsion/turbofan/bypass-ratio-trade)89Use when the task is the bypass ratio design trade for a turbofan:10the thrust split between the fan and core streams, the specific11thrust, and the TSFC across candidate bypass ratios at fixed core12conditions.1314## Domain quick reference1516Units are SI, with TSFC in g/(kN*s):1718- Bypass ratio B = mdot_fan / mdot_core, the fan stream mass flow19 divided by the core stream mass flow; at fixed total mass flow the20 split is mdot_fan = B/(1+B) * mdot_total and mdot_core =21 mdot_total/(1+B).22- Net thrust per stream F = mdot*(Vj - V0), so total thrust is the23 fan share plus the core share; the fan jet velocity runs well24 below the core jet velocity.25- Specific thrust F/mdot_total in m/s (N per kg/s), a fan-size26 loading measure: high specific thrust means a small, highly loaded27 fan.28- Propulsive efficiency eta_p = 2/(1 + Vj/V0) for a stream at jet29 velocity Vj in flight at V0; a lower average jet velocity raises30 eta_p.31- TSFC = mdot_fuel/F with mdot_fuel = f * mdot_core (f = core32 fuel/air ratio), reported in g/(kN*s); at fixed core conditions a33 higher BPR lowers TSFC.34- The gain has a price: a larger fan, weight, and drag, and the fan35 pressure ratio rise with fan jet velocity cuts the efficiency36 gain. The trade sits in the FAR-33 engine design context.3738## Workflow39401. Fix the core conditions: total mass flow, core and fan jet41 velocities, flight velocity, and the core fuel/air ratio.422. Compute the stream split with thrust_split (mdot_fan, mdot_core,43 F_core, F_fan, F_total).443. Normalize the thrust with specific_thrust (F_total / mdot_total).454. Compute the fuel burn per unit thrust with tsfc in g/(kN*s).465. Sweep the candidate bypass ratios with bpr_trend and read the47 thrust split, specific thrust, and TSFC trend.486. Assess the fan with fan_pressure_ratio_note and fold the fan49 loading penalty into the trade verdict.5051## Pitfalls5253- Treating bypass ratio as a mass fraction: B is a ratio of two mass54 flows, and the fan share of total flow is B/(1+B), not B.55- Mixing units in TSFC: fuel flow in kg/s and thrust in N must be56 converted before quoting g/(kN*s).57- Forgetting the fixed-core caveat: the TSFC gain with BPR assumes58 constant core and fan jet velocities, while real fans grow59 diameter, weight, and drag as BPR rises.60- Ignoring the fan pressure ratio: a higher FPR raises fan jet61 velocity, which erodes the propulsive efficiency gain.62- Comparing specific thrust across engines with different total mass63 flows.6465## Behavior contract (gate 3)6667The thrust split, specific thrust, TSFC, and fan pressure ratio logic68is exercised by the gate 3 contract test:69scripts/test_bypass_ratio_trade_logic.py against70scripts/bypass_ratio_trade_logic.py (stdlib unittest, offline). Run:71python3 scripts/test_bypass_ratio_trade_logic.py7273## Compliance7475- FAR-33 is referenced, not reproduced: US government work (public76 domain); the trade model is common propulsion methodology, summary77 only per standards-map.yaml.78- compliance: STANDARDS-REF, gated: false.