Skip to content

chenyutao36/MATMPC

Repository files navigation

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 interfaces 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), osqp (https://osqp.org/) and qpalm (https://github.com/Benny44/QPALM).

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. Except for external QP solvers, all algorithmic routines are written directly using MATLAB C API and can be compiled into independent MEX functions using compilers that belong to GCC class (e.g. GCC, MinGW and Clang). 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 apt-get install gcc"

Note: MATLAB is incompatible with the latest releases of gcc, even using the 2019b or 2020a releases of MATLAB (the latest versions of MATLAB at the time of this work). MATLAB needs this compiler to generate the mex64 files it needs to with the MATMPC toolbox. A workaround for this problem is described at this link and below.

  1. Download the 6.3.x release of gcc from this link
  2. Move to the folder where the file is contained and run this command from the terminal line sudo dpkg -i gcc-6-3-0_6.3.0_amd64.deb
  3. Answer yes when asked to change the compiler to gcc-6.3 in MATLAB

MacOS:

Install Xcode from app store

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.

  4. Run Model_Generation.m

  5. In InitData.m, set your own initialization data, e.g. data path, initial states, references 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 functions to display your results.

  8. Run Simulation.m and see the results!