Skip to the content.

PDM4AR Spaceship

This exercise tackles a complex problem in space exploration - navigating and docking a spaceship through challenging space environments. The goal is to reach the predefined target location using the available thruster of the spaceship, which force and direction can be controlled.

Task

Your task is to write the planning stack for the agent. For testing and evaluation, the agent is then coupled with a simulator in closed-loop. At each simulation step, the agent receives observations (about its state and other obstacles’ state) and it is expected to return actuation commands.

sim2agent

Irrespective of the approach you choose, make sure to preserve the existing Agent interface (or it won’t work with the simulator).

You have the freedom to experiment and implement any planning algorithm you deem appropriate. However, we provide a template to solve the problem adopting a sequential convexification approach.

Scenarios

Your agent will be tested in three different scenarios:

  1. Scenario 1: Dodging Planets with a Docking Goal
    • In this scenario, the spaceship needs to avoid planets while trying to arrive at a fixed final goal, $X_1$.

    Planets Image

  2. Scenario 2: Dodging a Planet and Its Satellites with a Static Goal
    • The spaceship must navigate around a planet with multiple moving satellites to reach a certain goal position, $X_1$.

    Satellites Image

  3. Scenario 3: Dodging a Planet and Its Satellites with a Docking Goal
    • Similar to Scenario 2, but the final goal is to dock like in Scenario 1.

    Mov Satellites Image

Spaceship dynamics

The spaceship’s dynamics are represented by the following equations. Note that the pose is expressed in global frame, while the velocities are expressed in the spaceship frame.

  1. Position Dynamics:
    • $\frac{dx}{dt} = v_x \cos(\psi) - v_y \sin(\psi)$
    • $\frac{dy}{dt} = v_x \sin (\psi) + v_y \cos(\psi)$
  2. Orientation Dynamics:
    • $\frac{d\psi}{dt} = \dot{\psi}$
  3. Fuel Dynamics:
    • $\frac{dm}{dt} = -C_T * F_{thrust}$
  4. Velocity Dynamics:
    • $\frac{dv_x}{dt} = \frac{1}{m} \cos(\delta)F_{thrust} + \dot{\psi} v_y$
    • $\frac{dv_y}{dt} = \frac{1}{m} \sin(\delta)F_{thrust} - \dot{\psi} v_x$
  5. Angular Velocity Dynamics:
    • $\frac{d\dot{\psi}}{dt} = - \frac{l_r}{I}\sin(\delta)F_{thrust}$
    • $\frac{d\dot{\delta}}{dt} = v_{\delta}$

If the spaceship’s state is represented by $X = [x, y, \psi, v_x, v_y, \dot{\psi}, \delta, m]’$, and the control inputs are $U = [F_{thrust}, \dot{\delta}]$, we obtain the following dynamics equations:

  1. Dynamics:
    • $\frac{dX(t)}{dt} = f(X(t), U(t))$

The spaceship you have the control over has one central thruster where you are able to control the amount of thrust to produce $F_{thrust}$ and the angle of the thruster with respect to the spaceship $\delta$. The thruster is mounted centrally on the spaceship with an offset of $l_r$ to the CoG of the spaceship. The velocity $v_x$ and $v_y$ are the velocities in the x and y direction of the spaceship frame respectively. The angle $\psi$ is the angle of the spaceship with respect to the x-axis. The length of the spaceship is $l$.

Spaceship Dynamics

Constraints

There are several constraints that need to be satisfied, [$x_0, y_0$] is the starting location and [$x_1, y_1$] is the goal location:

Evaluation Metrics

The quality of the spaceship’s trajectory is evaluated based on several key factors:

  1. Mission Accomplishment You safely reach the goal region.

  2. Planning Efficiency: We consider the average time spent in the “get_commands” method as a proxy for efficiency and quality of the planner.

  3. Time Taken To Reach the Goal: The time taken to reach the goal.

  4. Mass Consumption: The amount of fuel used to reach the final goal.

You can verify more precisely the function computing the final score in src/pdm4ar/exercises_def/ex11/perf_metrics.py

Data Structures

The various data structures needed for the development of the exercise can be inspected in the following files:

Code Structure

The various data structures needed for the development of the exercise can be inspected in the following files:

Hints

We developed the exercises based on the following paper (Convex Optimisation for Trajectory Generation) on SCvx, the planning method used in 2021 by SpaceX to land their spaceship on a moving platform in the middle of the ocean. We recommend to use such a method to solve the problem, but you are free to come up with your own solution. We made available some basic skeleton structure to implement the SCvx pipeline in the planner.py. The discretization.py file provides an implementation of the ZeroOrderHold and FirstOrderHold that is used in the convexification step of the SCvx pipeline to linearize and discretize around a reference trajectory (Discretization Performance and Accuracy Analysis for the Powered Descent Guidance Problem and A Real-Time Algorithm for Non-Convex Powered Descent Guidance).

In addition, the docker goal class has a method to return notable points (get_landing_constraint_points). Try to think how you can use them to create a valid constraints. (We suggest to activate the landing constraints only on the final [5-7] steps).

As a general and final advice try to understand the method before starting to code.

Available Optimization Tools

If your solution needs to solve an optimization problem, we have added powerful libraries in the container to solve optimization problems. For instance, scipy.optimize, PuLP, cvxpy and cvxopt. We tested cvxpy with “ECOS” and “MOSEK” as solvers for our SCvx pipeline. If you want to use other optimizers, or you are not using SCvx to solve the problem, please consider that we have not tested it.