Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.54 KB

README.md

File metadata and controls

45 lines (36 loc) · 2.54 KB

MPC-CBF

We propose a control framework which unifies the model predictive control and control barrier functions, where terminal cost function serves as control Lyapunov functions for stability. This is the reference implementation of our paper:

Safety-Critical Model Predictive Control with Discrete-Time Control Barrier Function

PDF | Code: Double Integratror | Code: Car Racing

Jun Zeng, Bike Zhang and Koushil Sreenath

Citing

If you find this project useful in your work, please consider citing following work:

@inproceedings{zeng2021mpccbf,
  title={Safety-critical model predictive control with discrete-time control barrier function},
  author={Zeng, Jun and Zhang, Bike and Sreenath, Koushil},
  booktitle={2021 American Control Conference (ACC)},
  year={2021}
}

Instructions

The 2D double integrator is assigned to reach the target position at origin while avoiding obstacles. We have three classes for different controllers: DCLFDCBF.m (DCLF-DCBF), MPCCBF.m (MPC-CBF) and MPCDC (MPC-DC), respectively.

Moreover, to illustrate the performance among them, we have:

  • test.m: Run DCLF-DCBF/MPC-CBF/MPC-DC respectively.
  • testGamma.m: Run analysis for different hyperparameter $\gamma$.
  • testHorizon.m: Run analysis for different horizon.
  • testBenchmark.m: Run analysis for some benchmark.

We illustrate the performance between DCLF-DCBF/MPC-DC/MPC-CBF

DCLF-DCBF MPC-DC (N=8)
MPC-CBF (N=1) MPC-CBF (N=8)

and also the safety performance for different numbers of horizon and hyperparameters

Different hyperparameter Different horizon

Dependencies

The packages needed for running the code are Yalmip and IPOPT.

We also provide the zipped version of precompiled .mex files for IPOPT in the folder packages in case you don't have it. Unzip that file and add those .mex files into your MATLAB path.