Orbital Mechanics & Astrodynamics
Level 5 — Mastery (cross-domain: analysis + physics + computation) Time limit: 2 hours 30 minutes Total marks: 60
Constants (use where needed): Earth , , .
Question 1 — Vis-viva, Kepler's equation, and a numerical propagator (24 marks)
A spacecraft is in an Earth orbit with perigee altitude and apogee altitude (a GTO-like ellipse).
(a) From conservation of energy and angular momentum, derive the vis-viva equation . Start from the specific orbital energy and show it equals by evaluating at perigee/apogee. (6)
(b) Compute the semi-major axis , eccentricity , orbital period , and the perigee speed for this orbit. (5)
(c) Derive Kepler's equation starting from Kepler's second law (areal velocity constant) and the geometry relating true anomaly to eccentric anomaly . State clearly the mean anomaly definition . (6)
(d) For this orbit, find the true anomaly exactly after perigee passage. Carry out at least two Newton–Raphson iterations for Kepler's equation (show iteration formula and each iterate), then convert . (7)
Question 2 — Transfer optimization: Hohmann vs bi-elliptic, with plane change (20 marks)
Consider transfers between two coplanar circular Earth orbits: inner radius , outer radius .
(a) Derive the total Hohmann as a function of , giving both burn magnitudes. (5)
(b) For a bi-elliptic transfer via an intermediate apoapsis radius , write the three contributions and state the limiting total as . Show that the ratio above which bi-elliptic (in the limit) beats Hohmann is approximately . (8)
(c) Now suppose the outer orbit at (GEO) also requires a plane change of . Using the combined-maneuver formula argue why performing the plane change at apoapsis of the transfer (rather than at the inner orbit) is far cheaper, and estimate the plane-change if done entirely at GEO circular speed vs at the transfer apoapsis speed. (7)
Question 3 — J₂ nodal precession and Sun-synchronous design (16 marks)
The oblateness perturbation causes secular drift of the right ascension of the ascending node (RAAN):
(a) Explain physically the origin of the dependence and the sign of for a prograde orbit. (4)
(b) A Sun-synchronous orbit requires (to track the Sun). For a circular orbit at altitude , compute the required inclination . (8)
(c) State one operational advantage of an SSO for Earth-observation missions, tied directly to the property computed in (b). (4)
Answer keyMark scheme & solutions
Question 1
(a) Vis-viva derivation (6)
- Energy conservation: const along orbit. (1)
- Angular momentum constant; at perigee & apogee (radial velocity zero). (1)
- At perigee , apogee ; . (1)
- Evaluate at perigee, use , and , : substituting gives . (2)
- Therefore . (1)
(b) Orbit parameters (5)
- ; . (1)
- . (1)
- . (1)
- . (1)
- . (1)
(c) Kepler's equation derivation (6)
- Mean anomaly , ; grows linearly with time. (1)
- Kepler II: area swept time, total area swept in ; so fraction of area = . (1)
- Introduce eccentric anomaly via the auxiliary circle radius ; ellipse point maps from circle point by vertical scaling . (1)
- Area swept from perigee (focus) = (circular-sector area) − (triangle) scaled by : . (1)
- Equate to . (1)
- Cancel : . (1)
(d) Numerical propagation (7)
- . (1)
- ; . (1)
- Newton–Raphson: , . (1)
- : , ; . (1)
- : , ; . (1)
- : refine once more (converged). (1)
- Convert: gives . (1)
Question 2
(a) Hohmann (5)
- Transfer ellipse: . (1)
- Speeds: circular , ; transfer periapsis , apoapsis . (2)
- , . (1)
- . (1)
(b) Bi-elliptic (8)
- Burn 1 at raising apoapsis to : . (1)
- Burn 2 at raising periapsis : . (1)
- Burn 3 at lowering apoapsis (deceleration): . (1)
- As : burns approach parabolic; total giving the classic limit expression. (2)
- Setting bi-elliptic-limit = Hohmann and solving numerically gives crossover ratio . For Hohmann is always better; for bi-elliptic can win depending on ; above bi-elliptic wins for all sufficiently large . (2)
- State: bi-elliptic pays with much longer flight time. (1)
(c) Combined plane change (7)
- Plane-change cost at which it is done: . (1)
- At GEO circular speed : . (2)
- At transfer apoapsis (GTO): (using ). . (2)
- Doing it at apoapsis (lower speed) roughly halves the cost; optimal practice combines the plane change with the circularization burn vectorially (law-of-cosines formula), cheaper still. (2)
Question 3
(a) Physical origin (4)
- Oblateness adds an equatorial bulge; the extra mass exerts an out-of-plane torque component on the orbit. (2)
- This torque causes the orbit plane to precess about Earth's spin axis; its magnitude scales with (zero for polar , max at equatorial). Prograde orbit (): (regression of nodes, westward). (2)
(b) SSO inclination (8)
- ; circular , . (1)
- . (2)
- Required (positive). (2)
- . Compute denominator: . (2)
- . (1)
(c) Operational advantage (4)
- Because the orbit plane precesses at exactly revolution/year, it maintains a nearly constant local solar time at every equator crossing. (2)
- Earth-observation targets are then imaged under consistent, repeatable illumination/shadow conditions, aiding change detection and calibration. (2)
[
{"claim":"GTO a=24571 km, e≈0.71601","code":"rp=6978; ra=42164; a=(rp+ra)/2; e=(ra-rp)/(ra+rp); result = (abs(a-24571)<1) and (abs(float(e)-0.71601)<1e-4)"},
{"claim":"Perigee speed ≈10.16 km/s","code":"mu=3.986004e5; rp=6978; a=24571; vp=sqrt(mu*(2/rp-1/a)); result = abs(float(vp)-10.16)<0.02"},
{"claim":"Mean anomaly at 3h M≈1.771 rad","code":"import sympy as sp; mu=3.986004e5; a=24571; n=sp.sqrt(mu/a**3); M=n*10800; result = abs(float(M)-1.771)<0.005"},
{"claim":"SSO inclination ≈98.6 deg","code":"import sympy as sp; mu=3.986004e5; Re=6378; J2=1.08263e-3; a=7178; n=sp.sqrt(mu/a**3); Odot=2*sp.pi/(365.25*86400); ci=-Odot/(sp.Rational(3,2)*n*J2*(Re/a)**2); i=sp.acos(ci)*180/sp.pi; result = abs(float(i)-98.6)<0.3"},
{"claim":"GEO circular speed ≈3.075 km/s","code":"mu=3.986004e5; v2=sqrt(mu/42164); result = abs(float(v2)-3.0747)<0.01"}
]