Orbital Mechanics & Astrodynamics
Level: 2 (Recall / standard textbook problems / short derivations) Time limit: 30 minutes Total marks: 40
Use , where needed.
Q1. State Kepler's three laws of planetary motion in one sentence each. (3 marks)
Q2. Define the six classical (Keplerian) orbital elements and give a one-line physical meaning for each. (6 marks)
Q3. Classify the orbit shape for each of the following eccentricities and state the corresponding specific-energy sign: , , , . (4 marks)
Q4. A satellite is in a circular orbit of radius around Earth. (a) Find its orbital speed. (2 marks) (b) Find its orbital period in minutes. (2 marks) (c) Find its specific orbital energy. (1 mark)
Q5. Using the vis-viva equation, find the speed of a spacecraft at perigee of an elliptical orbit with perigee radius and apogee radius . (4 marks)
Q6. Starting from conservation of angular momentum, derive Kepler's second law (equal areas in equal times), i.e. show . (4 marks)
Q7. For a Hohmann transfer between two circular coplanar orbits of radii (initial) and (final): (a) Find the semi-major axis of the transfer ellipse. (1 mark) (b) Find the first burn at . (2 marks) (c) Find the second burn at . (2 marks) (d) State the total . (1 mark)
Q8. State Kepler's equation relating mean anomaly and eccentric anomaly . For an orbit with and rad, perform one Newton–Raphson iteration starting from to estimate . (4 marks)
Q9. State the vis-viva equation and give the expression for the specific orbital energy in terms of . Explain in one line why corresponds to a bound orbit. (3 marks)
Answer keyMark scheme & solutions
Q1. (3 marks)
- 1st law: Every planet moves in an ellipse with the Sun at one focus (orbits are conic sections). (1)
- 2nd law: The line joining a planet to the Sun sweeps equal areas in equal times. (1)
- 3rd law: The square of the orbital period is proportional to the cube of the semi-major axis, . (1)
Q2. (6 marks) — ½ mark definition + ½ mark meaning each.
- (semi-major axis): sets orbit size/energy.
- (eccentricity): sets orbit shape (circle→hyperbola).
- (inclination): tilt of orbit plane vs reference (equatorial) plane.
- (RAAN): angle from reference direction to ascending node — orients the plane.
- (argument of perigee): angle from ascending node to perigee — orients ellipse in plane.
- (true anomaly): angle from perigee to the body — locates it on the orbit at epoch.
Q3. (4 marks) — 1 mark each.
- : circle, (bound).
- : ellipse, (bound).
- : parabola, (escape/marginal).
- : hyperbola, (unbound).
Q4. (5 marks) (a) . (2) (b) . (2) (c) . (1)
Q5. (4 marks)
- Semi-major axis: . (1)
- Vis-viva: . (1)
- At perigee: . (1)
- . (1)
Q6. (4 marks)
- Angular momentum per unit mass const (central force → torque zero). (1)
- Area swept by radius vector: . (1)
- Therefore . (1)
- Since is constant, is constant → equal areas in equal times (Kepler's 2nd law). (1)
Q7. (6 marks) (a) . (1) Circular speeds: ; . (b) Perigee speed of transfer: . . (2) (c) Apogee speed: . . (2) (d) . (1)
Q8. (4 marks)
- Kepler's equation: . (1)
- Newton–Raphson: . (1)
- With , , : . . rad. (2)
Q9. (3 marks)
- Vis-viva: . (1)
- Specific energy: . (1)
- means total energy is negative → kinetic energy insufficient to reach infinity; the body is gravitationally bound (finite, closed orbit, ). (1)
[
{"claim":"Circular orbit speed at r=7000 km ≈ 7.546 km/s","code":"GM=3.986e5; r=7000; v=sqrt(GM/r); result = abs(float(v)-7.546)<0.01"},
{"claim":"Circular orbit period at r=7000 km ≈ 5829 s","code":"import sympy as sp; GM=3.986e5; r=7000; T=2*sp.pi*sqrt(r**3/GM); result = abs(float(T)-5829)<5"},
{"claim":"Hohmann total dv (7000->42000 km) ≈ 3.77 km/s","code":"GM=3.986e5; r1=7000.0; r2=42000.0; a=(r1+r2)/2; vc1=sqrt(GM/r1); vc2=sqrt(GM/r2); vp=sqrt(GM*(2/r1-1/a)); va=sqrt(GM*(2/r2-1/a)); dv=(vp-vc1)+(vc2-va); result = abs(float(dv)-3.77)<0.02"},
{"claim":"One Newton-Raphson step for Kepler eqn (e=0.2, M=0.5, E0=0.5) gives E≈0.6163","code":"e=0.2; M=0.5; E0=0.5; f=E0-e*sin(E0)-M; fp=1-e*cos(E0); E1=E0-f/fp; result = abs(float(E1)-0.6163)<0.001"}
]