zrjer / SCpp

Implementation of LQR, SOCP MPC and SCvx in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This library implements various optimal control algorithms that are particularly suited for aerospace applications.

Guidance and Control Algorithms

  • Efficient Successive Convexification, a real-time guidance algorithm for optimal trajectory planning of constrained dynamical systems
  • Generic linear receding-horizon SOCP MPC algorithm
  • Linear Quadratic Regulator

Features

  • JIT derivative code generation with CppAD/CppADCodegen
  • Intuitive interface to implement custom models
  • Rapid iteration with parameters files

Current Models

  • Generic Rocket Model
  • SpaceX Starship Landing Model

Dependencies

  • C++17
  • Eigen
  • Boost (odeint and ptree)
  • fmt (included as submodule)
  • ECOS (included as submodule)
  • CppAD/CppADCodegen (included as submodule)

Instructions

Install

git clone --recurse-submodules https://github.com/EmbersArc/SCpp.git
cd SCpp
mkdir build
cd build
cmake ..
make

Run

Available executables are:

  • LQR_sim to simulate a trajectory with the classic MPC controller

  • MPC_sim to simulate a trajectory with the classic MPC controller

  • SC_oneshot to calculate one trajectory with Successive Convexification

  • SC_sim to simulate a trajectory with Successive Convexification

Calculated trajectories are written to the output/<modelname> directory.

Create a Custom Model

See existing models in the socp_models folder for some examples.

Papers

Examples

(click on videos for higher quality versions)

Rocket Trajectory Model with Free-Final-Time

SpaceX Starship Landing Trajectory

2D Rocket Landing Problem

feed-forward input tested in a box2d physics simulation

Cartpole

Contributing

I'm looking forward to contributions, both problem formulations and improvements to the core library.

About

Implementation of LQR, SOCP MPC and SCvx in C++

License:MIT License


Languages

Language:C++ 89.0%Language:Python 9.1%Language:CMake 1.8%Language:Shell 0.1%