Rocket Flight Mechanics
Level 4 (Application: novel problems, no hints) Time limit: 60 minutes Total marks: 60
Use , Earth radius , where needed. State all assumptions.
Question 1 — Stability of a finned sounding rocket [12 marks]
A single-stage rocket has a body diameter . Barrowman analysis gives the following component normal-force derivatives (referenced to the nose tip) and centres of pressure:
| Component | (from nose tip, m) | |
|---|---|---|
| Nose cone | 2.0 | 0.35 |
| Body/shoulder | 0.0 | — |
| Fins (4) | 12.5 | 2.10 |
(a) Compute the total and the overall centre of pressure from the nose. [4]
(b) At burnout the centre of gravity is at from the nose. Compute the static margin in calibers. Is the rocket statically stable? [4]
(c) The engineer wishes the static margin to be exactly calibers at burnout without moving the fins. State two distinct physical modifications that achieve this and, for one of them, quantify the required change. [4]
Question 2 — Gravity-turn pitch rate [12 marks]
During a gravity turn the thrust is aligned with the velocity vector (angle of attack ), so pitch is driven only by gravity. The flight-path angle (measured from local horizontal) evolves as
for a flat-Earth, no-lift model.
(a) A vehicle passes through at . Compute the instantaneous pitch rate in deg/s. [4]
(b) Explain physically why a higher velocity at pitch-over reduces gravity-turn losses, and why launching too shallow early causes excessive drag. [4]
(c) For a constant-speed approximation , integrate the equation to find the time taken to rotate from to . [4]
Question 3 — Max-Q determination [12 marks]
A rocket climbs vertically. Its speed and the local air density are approximated over the lower atmosphere by
with , scale height , and altitude .
(a) Write dynamic pressure as an explicit function of . [3]
(b) Find the time of maximum dynamic pressure (Max-Q) by setting . [5]
(c) Compute the altitude, speed, and value of at Max-Q. [4]
Question 4 — Reentry ballistic coefficient & heating [14 marks]
A capsule has mass , drag coefficient , and frontal area .
(a) Compute the ballistic coefficient . State its physical significance for deceleration altitude. [4]
(b) Two capsules with different enter identically. Explain which decelerates higher in the atmosphere and why a lower is favourable for peak deceleration but not necessarily for total heat load. [4]
(c) The stagnation-point convective heat flux follows a Chapman-type relation . If, during descent, the velocity halves while density increases by a factor of 40, by what factor does change? Comment on where along the trajectory peak heating occurs relative to peak deceleration. [6]
Question 5 — Suicide burn (terminal landing) [10 marks]
A lander descends vertically under gravity (Mars). At the ignition altitude it has downward speed . Its engine provides a constant net (thrust − gravity) deceleration once lit, and the burn must bring it to rest exactly at the ground.
(a) Derive the required ignition altitude in terms of and , and evaluate it. [4]
(b) Explain why igniting late (below the ideal ) is catastrophic while igniting early merely wastes propellant, and relate this to why the suicide burn is control-sensitive. [3]
(c) If actuator delay causes ignition late (vehicle keeps falling at constant during the delay before decel begins), find the residual impact speed. [3]
Answer keyMark scheme & solutions
Question 1
(a) Total normal-force derivative (body contributes 0): CP is the -weighted mean of component CPs:
(b) Static margin: Since (and caliber), the rocket is statically stable — CP is aft of CG so a disturbance produces a restoring moment (weathercocking). [1]
(c) Need , i.e. , so target (must move CG aft by ). [2] Two valid modifications (any two): (i) add ballast mass near the tail to move CG aft; (ii) lengthen the body/add nose mass reduction; (iii) increase fin size to move CP aft (raising SM). Quantify (i): adding mass at distance aft of current CG shifts CG by ; choose to give 9 mm shift. [2]
Question 2
(a) :
(b) Since , a higher velocity at pitch-over means gravity turns the vehicle slowly, so less thrust is spent fighting gravity while nearly vertical — but the key: gravity loss is reduced by turning downrange sooner at adequate speed. Launching too shallow early puts the vehicle into denser atmosphere at high speed → high dynamic pressure → large drag losses and structural loads. [4]
(c) With constant: . Evaluate:
- at : ,
- at : ,
Question 3
(a) , so (using , and ).
(b) Differentiate :
(c)
- Altitude: (= scale height, as expected). [1]
- Speed: . [1]
- . [2]
Question 4
(a) Physical significance: measures the ratio of inertia to drag; higher → the body penetrates deeper before decelerating (deceleration occurs lower/denser). A "heavy, small-area, slippery" body has high . [2]
(b) Lower- capsule decelerates higher in the atmosphere (less mass per unit drag area), so it experiences peak deceleration at higher altitude / lower density → lower peak . However total integrated heat load can be larger for low because it spends longer decelerating in the atmosphere (longer exposure time), even though peak heat flux is lower. [4]
(c) . Ratio: So heat flux decreases to about (a ~21% drop). Because but only , velocity dominates: peak heating occurs earlier (higher, faster) than peak deceleration, which is set by and occurs deeper. [1]
Question 5
(a) Constant deceleration from to rest over distance :
(b) Igniting late means the vehicle is below the minimum stopping distance; even at full deceleration it cannot arrest before ground contact → crash (no recovery, since thrust is already maxed). Igniting early leaves excess altitude when velocity reaches zero — vehicle hovers/wastes propellant but lands safely. This asymmetry (catastrophic vs merely wasteful) makes the suicide burn extremely timing/control-sensitive. [3]
(c) During delay it falls at , losing of margin, so only remains for braking. Residual speed at ground: (Impact at ~55 m/s — destructive.)
[
{"claim":"Q1 CP location = 1.859 m and static margin = 2.06 cal","code":"CN=2.0+12.5; XCP=(2.0*0.35+12.5*2.10)/CN; SM=(XCP-1.55)/0.15; result = (abs(XCP-1.85862)<1e-3) and (abs(SM-2.057)<1e-2)"},
{"claim":"Q2c gravity-turn time approx 63.4 s","code":"import sympy as sp; g=sp.Function; sec=lambda x: 1/sp.cos(x); tan=sp.tan; a=sp.log(1/sp.cos(sp.rad(80))+sp.tan(sp.rad(80))); b=sp.log(1/sp.cos(sp.rad(45))+sp.tan(sp.rad(45))); t=float((a-b)*400/9.81); result = abs(t-63.4)<0.5"},
{"claim":"Q3 Max-Q at t=26.08s, h=8500m, qmax approx 95.7 kPa","code":"import sympy as sp; t=sp.sqrt(680); h=12.5*680; v=25*float(t); q=382.8*680*sp.exp(-1); result = (abs(float(t)-26.077)<1e-2) and (h==8500) and (abs(float(q)-95740)<300)"},
{"claim":"Q4c heat flux ratio = 0.7906","code":"import sympy as sp; r=sp.sqrt(40)*sp.Rational(1,8); result = abs(float(r)-0.79057)<1e-3"},
{"claim":"Q5 ignition altitude 2083.3 m and delayed impact speed 54.8 m/s","code":"h=250**2/(2*15); hp=h-100; vf=(62500-2*15*hp)**0.5; result = (abs(h-2083.33)<0.1) and (abs(vf-54.77)<0.1)"}
]