Go to file
mcarfagno 7f7cdf31b4 reformatted notebooks with black 2022-08-02 09:33:49 +01:00
img updated README with nicer gifs from latest implementation 2020-11-02 14:44:31 +00:00
mpc_pybullet_demo reformatted notebooks with black 2022-08-02 09:33:49 +01:00
notebooks reformatted notebooks with black 2022-08-02 09:33:49 +01:00
.gitignore update .gitignore 2020-12-10 21:11:37 +00:00
README.md added conda env file, README cleanup 2022-07-21 14:14:14 +01:00
env.yml reformatted notebooks with black 2022-08-02 09:33:49 +01:00
requirements.txt Update requirements.txt 2022-07-05 10:26:19 +01:00

README.md

mpc_python

I keep here my Jupyter notebooks on R&D on Model Predictive Control applyied to path-following problems in driverless vehicles. Includes also a Pybullet simulation to showcase the results. This mainly uses CVXPY as a framework. This repo contains code from other projecs, check them out in the special thanks section.

Contents

Usage

From within the mpc_pybullet_demo directory:

  • To run the pybullet demo:
python3 mpc_demo_pybullet.py
  • To run the simulation-less demo (simpler demo that does not use pybullet, useful for debugging):
python3 mpc_demo_pybullet.py

In both cases the script will promt the user for enter before starting the demo.

The settings for tuning the MPC controller are in the mpc_config class.

Jupyter Notebooks

  1. State space model derivation -> analytical and numerical derivaion of the model

  2. MPC -> implementation and testing of various tweaks/improvements

  3. Obstacle Avoidance -> Using halfplane constrains to avaoid track collisions -> Sill work in progress!

Results

Racing car model is from: https://github.com/erwincoumans/pybullet_robots.

Results:

Requirements

The environment can be repoduced via conda:

conda env create -f env.yml
conda activate simulation

The dependencies for just the python scripts can also be installed using pip:

pip3 install --user --requirement requirements.txt

References & Special Thanks :