whisperingkahuna / MATMPC

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MATMPC

MATMPC: MATLAB based nonlinear MPC tool

This tool aims at providing an easy-to-use nonlinear MPC implementation. The optimal control problem (OCP) that should be solved is transcribed by multiple shooting and the resulting nonlinear program (NLP) is solved by Sequential Quadratic Programming (SQP) method.

The tool supports fixed step (explicit/implicit) Runge-Kutta (RK) integrator for multiple shooting. The derivatives that are needed to perform optimization are obtained by CasADi (https://github.com/casadi/casadi/wiki), the state-of-the-art automatic/algorithmic differentiation toolbox. The Quadratic Programming (QP) problems can be solved by both dense and sparse solvers. By now, MATMPC supports the interface with the following external solvers: qpOASES (https://projects.coin-or.org/qpOASES/wiki/QpoasesInstallation), Ipopt (https://projects.coin-or.org/Ipopt), hpipm (https://github.com/giaf/hpipm) and osqp (https://osqp.org/).

The most unique feature of MATMPC is that it does not require to install any external libraries. The users need not to understand how to make, compile and link any library. Execpt external QP solvers, all the algorithmic routines are written directly using MATLAB C API and can be compiled into MEX functions using compilers that belong to GCC class (e.g. GCC and MinGW). MATMPC employs MATLAB built-in linear algebra library provided by Intel MKL. Therefore, MATMPC is able to provide compatible runtime performance as other libraries written directly in C/C++.

Windows:

Please install Matlab supported MinGW compiler at https://www.mathworks.com/matlabcentral/fileexchange/52848-matlab-support-for-mingw-w64-c-c-compiler

Linux:

Install gcc by running "sudo install apt-get gcc"

To use MATMPC, follow the steps below.

  1. Download and install CasADi-3.3.0. MATMPC currently is compatible with CasADi 3.3.0.

  2. Write your own model using following the styles given by examples, e.g. Inverted Pendulum.

  3. In the model file you created, set your own sampling time and multiple shooting time. In Code_generation.m, set the number of integration steps per shooting interval.

  4. Run Code_generation.m

  5. In InitData.m, set your own initialization data, e.g. data path, initial states, referecnes and etc.

  6. In Simulation.m, choose your integrator, set the prediction horizon and the solver options. You may also need to modify the reference type for constant or time-varying reference tracking problems.

  7. In Draw.m, write your own plot fuctions to display your results.

  8. Run Simulation.m and see the results!

About

License:GNU General Public License v3.0


Languages

Language:C 56.6%Language:MATLAB 42.8%Language:C++ 0.7%