6.4. Soft Landing Apollo 11 on the Moon#
Keywords: optimal control, ipopt usage, dae, differential-algebraic equations, rescaling time
Landing a rocket on the surface of a planet was once a staple of science fiction, and then realized in the 1960’s through multiple manned and unmanned landings on the moon. It’s hard to overestimate the degree to which these missions inspired a new generation
NASA Michael Collins [Public domain]
Rocket Landing Videos (these never get old):
Inspired by these examples, this notebook uses Pyomo and a simple model of a rocket to compute a control policy for a soft landing. The parameters used correspond to the descent of the Apollo 11 Lunar Module to the moon on July 20, 1969.
6.4.1. Imports#
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
import shutil
import sys
import os.path
if not shutil.which("pyomo"):
!pip install -q pyomo
assert(shutil.which("pyomo"))
if not (shutil.which("ipopt") or os.path.isfile("ipopt")):
if "google.colab" in sys.modules:
!wget -N -q "https://ampl.com/dl/open/ipopt/ipopt-linux64.zip"
!unzip -o -q ipopt-linux64
else:
try:
!conda install -c conda-forge ipopt
except:
pass
assert(shutil.which("ipopt") or os.path.isfile("ipopt"))
from pyomo.environ import *
from pyomo.dae import *
6.4.2. Version 1: Vertical dynamics of a rocket with constant mass#
For a rocket with a mass \(m\) in vertical flight at altitude \(h\), a momentum balance yields the model
where \(u\) is the mass flow of propellant and \(v_e\) is the velocity of the exhaust relative to the rocket. In this first attempt at modeling and control we will neglect the change in rocket mass due to fuel burn.
LM_illustration_02.jpg: NASA Marshall Space Flight Center (NASA-MSFC)derivative work: Adert [Public domain]
The complete Apollo lunar module was composed of descent and ascent stages, each containing a rocket engine and associated fuel tanks. The descent stage carried the entire assembly to the lunar surface. The total mass \(m\) in the above model therefore consists of the dry and fuel masses of both stages. For the purpose of analyzing the descent of the lunar module to the lunar surface, the ‘dry’ mass consists of the total mass of the ascent stage plus the dry mass of the descent stage.
The following data is for the Apollo 11 Lunar Module.
# lunar module
m_ascent_dry = 2445.0 # kg mass of ascent stage without fuel
m_ascent_fuel = 2376.0 # kg mass of ascent stage fuel
m_descent_dry = 2034.0 # kg mass of descent stage without fuel
m_descent_fuel = 8248.0 # kg mass of descent stage fuel
m_fuel = m_descent_fuel
m_dry = m_ascent_dry + m_ascent_fuel + m_descent_dry
m_total = m_dry + m_fuel
# descent engine characteristics
v_exhaust = 3050.0 # m/s
u_max = 45050.0/v_exhaust # 45050 newtons / exhaust velocity
# landing mission specifications
h_initial = 100000.0 # meters
v_initial = 1520 # orbital velocity m/s
g = 1.62 # m/s**2
6.4.2.1. First attempt at a solution#
For this first attempt at a solution, we will choose an arbitrary value for the length of the landing mission. The integration will start with the initial conditions, and we’ll see what happens.
t_f = 100
m = ConcreteModel()
m.t = ContinuousSet(bounds=(0, t_f))
m.h = Var(m.t)
m.u = Var(m.t, domain=NonNegativeReals)
m.v = DerivativeVar(m.h, wrt=m.t)
m.a = DerivativeVar(m.v, wrt=m.t)
m.ode1 = Constraint(m.t, rule = lambda m, t: m_total*m.a[t] == -m_total*g + v_exhaust*m.u[t])
m.h[0].fix(h_initial)
m.v[0].fix(-v_initial)
def solve(m):
TransformationFactory('dae.finite_difference').apply_to(m, nfe=200, scheme='FORWARD')
SolverFactory('ipopt').solve(m)
tsim = [t for t in m.t]
hsim = [m.h[t]() for t in m.t]
usim = [m.u[t]() for t in m.t]
plt.figure(figsize=(10, 8))
plt.subplot(3,1,1)
plt.plot(tsim, hsim)
plt.title('altitude')
plt.xlabel('time / seconds')
plt.ylabel('meters')
plt.grid(True)
plt.subplot(3,1,2)
plt.plot(tsim, usim)
plt.title('engine mass flow')
plt.xlabel('time / seconds')
plt.ylabel('kg/sec')
plt.grid(True)
plt.tight_layout()
solve(m)
This first attempt at a solution included no specification related to landing on the lunar surface. The solver reported a solution where the engine doesn’t fire, and the lunar module crashes into the lunar surface at full speed about 66 seconds after the start of the descent mission.
6.4.2.2. Land on the surface, not above or below the surface.#
The mission crashed! It’s clear now that we haven’t fully specified the desired outcome of the mission. Let’s start by specifying the final condition as being on the surface
This condition is implemented in Pyomo by fixing the terminal value of \(h\).
t_f = 100
m = ConcreteModel()
m.t = ContinuousSet(bounds=(0, t_f))
m.h = Var(m.t)
m.u = Var(m.t, domain=NonNegativeReals)
m.v = DerivativeVar(m.h, wrt=m.t)
m.a = DerivativeVar(m.v, wrt=m.t)
m.ode1 = Constraint(m.t, rule = lambda m, t: m_total*m.a[t] == -m_total*g + v_exhaust*m.u[t])
m.h[0].fix(h_initial)
m.v[0].fix(-v_initial)
m.h[t_f].fix(0) # land on surface
solve(m)
The descent mission now finishes the descent at the lunar surface, but unfortunately arrives with sufficient velocity to still be considered a crash.
6.4.2.3. Make that a soft landing#
To ensure a soft landing, we also need to specify a terminal velocity. The terminal conditions are now
These conditions are implement by fixing terminal values of the associated Pyomo variables.
t_f = 100
m = ConcreteModel()
m.t = ContinuousSet(bounds=(0, t_f))
m.h = Var(m.t)
m.u = Var(m.t, domain=NonNegativeReals)
m.v = DerivativeVar(m.h, wrt=m.t)
m.a = DerivativeVar(m.v, wrt=m.t)
m.ode1 = Constraint(m.t, rule = lambda m, t: m_total*m.a[t] == -m_total*g + v_exhaust*m.u[t])
m.h[0].fix(h_initial)
m.v[0].fix(-v_initial)
m.h[t_f].fix(0) # land on surface
m.v[t_f].fix(0) # soft landing
solve(m)
The lunar module now is now successfully landing on the lunar surface, but the fuel flow requirement exceeds the maximum capacity of the descent engine.
6.4.2.4. Restrict fuel flow to engine capacity#
The next step is establish constraints on the control action by limiting fuel flow to the mass flow limits of the descent engine.
Since less thrust is available, we may need to extend the length of the landing mission to find a feasible solution to the optimization problem.
t_f = 3000
m = ConcreteModel()
m.t = ContinuousSet(bounds=(0, t_f))
m.h = Var(m.t)
m.u = Var(m.t, bounds=(0, u_max))
m.v = DerivativeVar(m.h, wrt=m.t)
m.a = DerivativeVar(m.v, wrt=m.t)
m.ode1 = Constraint(m.t, rule = lambda m, t: m_total*m.a[t] == -m_total*g + v_exhaust*m.u[t])
m.h[0].fix(h_initial)
m.v[0].fix(-v_initial)
m.h[t_f].fix(0) # land on surface
m.v[t_f].fix(0) # soft landing
solve(m)
6.4.3. Version 2: Rescaled model#
At this point, it’s now clear the first version of this model has run into some serious problems:
The calculated trajectory takes us through a crash landing and trip through the interior of the moon.
The engine thrust never goes to zero, even when the lander is at zero velocity and on the surface. The reason is that the model doesn’t account for the reaction force of the surface on the lander. So the lander is really just hoovering rather than landing.
There is no obvious means of estimating the time required for the mission.
Let’s begin with the last issue. We will introduce an additional decision variable \(T\) denoting the length of the mission. Time is then rescaled as
The differential equation model then becomes
The net result is that an additional variable, \(T\), denoting the duration of the descent mission has been introduced into the optimization problem.
m = ConcreteModel()
m.t = ContinuousSet(bounds=(0, 1))
m.h = Var(m.t)
m.u = Var(m.t, bounds=(0, u_max))
m.T = Var(domain=NonNegativeReals)
m.v = DerivativeVar(m.h, wrt=m.t)
m.a = DerivativeVar(m.v, wrt=m.t)
m.ode1 = Constraint(m.t, rule = lambda m, t:
m_total*m.a[t]/m.T**2 == -m_total*g + v_exhaust*m.u[t])
m.h[0].fix(h_initial)
m.v[0].fix(-v_initial)
m.h[1].fix(0) # land on surface
m.v[1].fix(0) # soft landing
def solve(m):
TransformationFactory('dae.finite_difference').apply_to(m, nfe=50, scheme='FORWARD')
SolverFactory('ipopt').solve(m)
tsim = [t*m.T() for t in m.t]
hsim = [m.h[t]() for t in m.t]
usim = [m.u[t]() for t in m.t]
plt.subplot(2,1,1)
plt.plot(tsim, hsim)
plt.title('altitude')
plt.xlabel('time / seconds')
plt.ylabel('meters')
plt.legend(['mission length =' + str(round(m.T(),1)) + ' seconds'])
plt.grid(True)
plt.subplot(2,1,2)
plt.plot(tsim, usim)
plt.title('engine mass flow')
plt.xlabel('time / seconds')
plt.ylabel('kg/sec')
plt.grid(True)
plt.tight_layout()
solve(m)
6.4.3.1. How much fuel is burned?#
Fuel consumption can be calculated as
m = ConcreteModel()
m.t = ContinuousSet(bounds=(0, 1))
m.h = Var(m.t)
m.u = Var(m.t, bounds=(0, u_max))
m.T = Var(domain=NonNegativeReals)
m.v = DerivativeVar(m.h, wrt=m.t)
m.a = DerivativeVar(m.v, wrt=m.t)
m.fuel = Integral(m.t, wrt=m.t, rule = lambda m, t: m.u[t]*m.T)
m.ode1 = Constraint(m.t, rule = lambda m, t:
m_total*m.a[t]/m.T**2 == -m_total*g + v_exhaust*m.u[t])
m.h[0].fix(h_initial)
m.v[0].fix(-v_initial)
m.h[1].fix(0) # land on surface
m.v[1].fix(0) # soft landing
def solve(m):
TransformationFactory('dae.finite_difference').apply_to(m, nfe=50, scheme='FORWARD')
SolverFactory('ipopt').solve(m)
tsim = [t*m.T() for t in m.t]
hsim = [m.h[t]() for t in m.t]
usim = [m.u[t]() for t in m.t]
plt.subplot(2,1,1)
plt.plot(tsim, hsim)
plt.title('altitude')
plt.ylabel('meters')
plt.legend(['mission length = ' + str(round(m.T(),1)) + ' seconds'])
plt.grid(True)
plt.subplot(2,1,2)
plt.plot(tsim, usim)
plt.title('engine mass flow')
plt.xlabel('time / seconds')
plt.ylabel('kg/sec')
plt.legend(['fuel burned = ' + str(round(m.fuel(),1)) + ' kg'])
plt.grid(True)
plt.tight_layout()
solve(m)
6.4.3.2. Minimize fuel consumption#
m = ConcreteModel()
m.t = ContinuousSet(bounds=(0, 1))
m.h = Var(m.t)
m.u = Var(m.t, bounds=(0, u_max))
m.T = Var(domain=NonNegativeReals)
m.v = DerivativeVar(m.h, wrt=m.t)
m.a = DerivativeVar(m.v, wrt=m.t)
m.fuel = Integral(m.t, wrt=m.t, rule = lambda m, t: m.u[t]*m.T)
m.obj = Objective(expr=m.fuel, sense=minimize)
m.ode1 = Constraint(m.t, rule = lambda m, t: m_total*m.a[t]/m.T**2 == -m_total*g + v_exhaust*m.u[t])
m.h[0].fix(h_initial)
m.v[0].fix(-v_initial)
m.h[1].fix(0) # land on surface
m.v[1].fix(0) # soft landing
solve(m)
6.4.4. Version 3: Rocket model#
The first version of the rocket model has run into a serious problem because it appears not to provide enough mass flow to the engine to prevent a crash landing. But that may be an artifact of the assumption of constant mass. For Apollo 11 Lunar Module, for example, the fuel in the descent engine comprises more than 50% of the total mass of the lander.
For the second version of the rocket model, we augment the model with a mass balance for fuel. This yields
At this point we need to worry about nonsensical answers to the optimization for minimum fuel. For this purpose we add upper and lower bounds on \(T\) that should restrict the solver to meaningful solutions.
m = ConcreteModel()
m.t = ContinuousSet(bounds=(0, 1))
m.h = Var(m.t, domain=NonNegativeReals)
m.m = Var(m.t)
m.u = Var(m.t, bounds=(0, u_max))
m.T = Var(bounds=(50,3000))
m.v = DerivativeVar(m.h, wrt=m.t)
m.a = DerivativeVar(m.v, wrt=m.t)
m.mdot = DerivativeVar(m.m, wrt=m.t)
m.fuel = Integral(m.t, wrt=m.t, rule = lambda m, t: m.u[t]*m.T)
m.obj = Objective(expr=m.fuel, sense=minimize)
m.ode1 = Constraint(m.t, rule = lambda m, t: m.m[t]*m.a[t]/m.T**2 == -m.m[t]*g + v_exhaust*m.u[t])
m.ode2 = Constraint(m.t, rule = lambda m, t: m.mdot[t]/m.T == -m.u[t])
m.h[0].fix(h_initial)
m.v[0].fix(-v_initial)
m.m[0].fix(m_total)
m.h[1].fix(0) # land on surface
m.v[1].fix(0) # soft landing
def solve(m):
TransformationFactory('dae.finite_difference').apply_to(m, nfe=50, scheme='FORWARD')
SolverFactory('ipopt').solve(m)
m_nonfuel = m_ascent_dry + m_ascent_fuel + m_descent_dry
tsim = [t*m.T() for t in m.t]
hsim = [m.h[t]() for t in m.t]
usim = [m.u[t]() for t in m.t]
fsim = [m.m[t]() - m_nonfuel for t in m.t]
plt.figure(figsize=(8,6))
plt.subplot(3,1,1)
plt.plot(tsim, hsim)
plt.title('altitude')
plt.ylabel('meters')
plt.legend(['mission length = ' + str(round(m.T(),1)) + ' seconds'])
plt.grid(True)
plt.subplot(3,1,2)
plt.plot(tsim, usim)
plt.title('engine mass flow')
plt.ylabel('kg/sec')
plt.legend(['fuel burned = ' + str(round(m.fuel(),1)) + ' kg'])
plt.grid(True)
plt.subplot(3,1,3)
plt.plot(tsim, fsim)
plt.title('fuel remaining')
plt.xlabel('time / seconds')
plt.ylabel('kg')
plt.legend(['fuel remaining = ' + str(round(fsim[-1],2)) + ' kg'])
plt.grid(True)
plt.tight_layout()
solve(m)