Skip to content

Constrained Differential Dynamic Programming Solver for Trajectory Optimization and Model Predictive Control

License

Notifications You must be signed in to change notification settings

astomodynamics/cddp-cpp

Repository files navigation

Constrained Differential Dynamic Programming (CDDP) solver in C++

+---------------------------------------------------------+
|    ____ ____  ____  ____    _          ____             |
|   / ___|  _ \|  _ \|  _ \  (_)_ __    / ___| _     _    |
|  | |   | | | | | | | |_) | | | '_ \  | |   _| |_ _| |_  |
|  | |___| |_| | |_| |  __/  | | | | | | |__|_   _|_   _| |
|   \____|____/|____/|_|     |_|_| |_|  \____||_|   |_|   |
+---------------------------------------------------------+

This library is under active development. Star the repo ⭐ to stay updated on its progress and eventual release. I welcome any suggestions as I'm building this library to gain practical C++ experience.

Overview

This is an optimal control solver library using constrained differential dynamic programming (CDDP) written in C++. This library is particularly useful for mobile robot trajectory optimization and model predictive control (MPC).

The CDDP library solves problems in the form:

$$ \min_{\mathbf{U}} J(\mathbf{x}_0, \mathbf{U}) = \phi(\mathbf{x}_N) + \sum \ell(\mathbf{x}_k,\mathbf{u}_k) $$

$$ \mathrm{s.t.~} \mathbf{x}_{k+1} = \mathbf{f}(\mathbf{x}_k,\mathbf{u}_k) $$

$$ \quad \mathbf{g}(\mathbf{x}_k,\mathbf{u})_k\leq 0 $$

$$ \quad {\mathbf{x}}_{0} = \mathbf{x}{(t_0)} $$

$$ \quad k = 0,1,\cdots N-1 $$

Examples

Dubins Car

Simple car-like robot with velocity and steering control:

./examples/cddp_dubins_car // after building

Dubins Car CDDP

Bicycle Model

Bicycle model with velocity and steering control:

./examples/cddp_bicycle // after building

Bicycle Model CDDP

Pendulum

Simple pendulum with torque control:

./examples/cddp_pendulum // after building

Pendulum CDDP

Cartpole

Cartpole with cart control:

./examples/cddp_cartpole // after building

Cartpole CDDP

Quadrotor

Quadrotor with thrust control:

./examples/cddp_quadrotor // after building

Quadrotor CDDP

Manipulator

Manipulator with joint torque control:

./examples/cddp_manipulator // after building

Manipulator CDDP

Installation

Dependencies

  • Eigen (Linear Algebra Library in CPP)
sudo apt-get install libeigen3-dev # For Ubuntu
brew install eigen # For macOS

Although the library automatically finds and installs the following dependencies via FetchContent, if you do not have ones, here is how you can install on your own.

conda install -c conda-forge osqp # Optional
  • libtorch : This library utilizes Torch for its underlying computations. It will be automatically installed during the build process.

  • CUDA(Optional): If you want to leverage GPU acceleration for torch, ensure you have CUDA installed. You can download it from the NVIDIA website.

Building

git clone https://github.com/astomodynamics/cddp-cpp
cd cddp-cpp
mkdir build && cd build
cmake ..
make -j4
make test

ROS

If you want to use this library for ROS2 MPC node, please refer CDDP MPC Package. You do not need to install this library to use the package. MPC package will automatically install this library as a dependency.

References

Third Party Libraries

This project uses the following open-source libraries:

Citing

If you use this work in an academic context, please cite this repository.

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

TODO

  • add python binding
  • add state constraint handling
  • add initial guess functionality based on path planner solution
  • add automatic differentiation
  • add nonlinear objective and constraint handling
  • add parallelization
  • add simulation and its plots
    • Quadrotor
    • Quadruped robot
    • Manipulator
    • Spacecraft
    • Humanoid