Multi-Purpose-MPC/README.md

40 lines
1.8 KiB
Markdown
Raw Normal View History

2020-01-01 00:52:57 +08:00
# Multi-Purpose MPC
2020-01-01 01:20:59 +08:00
1. [Introduction](#introduction)
2. [Implementation Details](#implementation-details)
2020-01-02 03:59:58 +08:00
1. [Map](#map)
2020-01-01 08:54:38 +08:00
1. [Model Predictive Controller (MPC)](#model-predictive-controller)
2020-01-01 01:20:59 +08:00
3. [How-To](#how-to)
2020-01-01 08:52:56 +08:00
4. [Limitations and Outlook](#limitations-and-outlook)
2020-01-01 00:52:57 +08:00
2020-01-01 08:52:56 +08:00
## Introduction
2020-01-01 00:52:57 +08:00
In this repository you find an implementation of a multi-purpose Model Predictive Controller. The controller was implemented as a contribution to the [Automatic Control Project Course (EL2425)](https://www.kth.se/student/kurser/kurs/EL2425) at KTH Royal Institute of Technology, Stockholm.
2020-01-01 01:11:05 +08:00
The developed algorithm was tested on a 1:10 RC car provided by [KTH Smart Mobility Lab](https://www.kth.se/dcs/research/control-of-transport/smart-mobility-lab/smart-mobility-lab-1.441539). The test scenarios comprised the following three tasks:
2020-01-01 00:52:57 +08:00
1. Reference Path Tracking
2. Time-Optimal Driving
3. Obstacle Avoidance
2020-01-01 01:11:05 +08:00
The controller is implemented in a way that enables its application to all three tasks by merely tuning the weight matrices of the underlying optimization problem. The illustration below shows the obstacle avoidance task in simulation.
The rest of this readme is structured as follows. In [Section 2](##Components) we will present an overview of the entire system and discuss all fundamental components of the implementation in detail. In [Section 3](##How-To) we will provide guidelines for using the implementation in simulation and practice. [Section 4](##Limitations) will be dedicated to analyzing limitations of the current version of the controller and outline potential extensions of the implementation.
2020-01-01 01:15:03 +08:00
2020-01-01 08:52:56 +08:00
## Implementation Details
2020-01-01 01:15:03 +08:00
2020-01-02 03:59:58 +08:00
<p align="center">
2020-01-02 04:06:43 +08:00
<img src="/Images/MPC_Framework.png">
2020-01-02 03:59:58 +08:00
</p>
### Map
### Reference Path
### Spatial Bicycle Model
2020-01-01 08:54:38 +08:00
### Model Predictive Controller
2020-01-01 01:15:03 +08:00
2020-01-01 08:52:56 +08:00
## How-To
2020-01-01 01:15:03 +08:00
2020-01-01 08:52:56 +08:00
## Limitations and Outlook