Skip to content

Helen1987/CarND-MPC-Project

 
 

Repository files navigation

CarND-Controls-MPC

Self-Driving Car Engineer Nanodegree Program


Description

Every timestamp dt we get from simulator collections of waypoints position (ptsx, ptsy) and vehicle position (px, py), velocity (v), direction (psi), steering angle (delta), acceleration (a). To easy calculation we convert waypoints from map coordinates to car's coordinates. All calculations then are done in vehicle coordinates, so in our state position and direction are zeros. Initial cte is just waypoints position related to car's position, and we can calculate epsi as atan of waypoints derivative.

To get waypoints line, we fit it to the third order polynomial. It is good enough to describe all major roads. Speed was converted from mph to mps since all calculations are done with meters. To deal with 100 milliseconds latency initial state was slightly changed. Instead of sending car's state at time frame 0.0 we predict vehicle state in 100 milliseconds according to kinematic equations and send it as car's current state.

Car's speed is not high, so dt=0.4 is good to handle changing situation. There is no reason to predict car's position in more than 2 sec, so N=6. Cost function was chosen to minimize cte and epsi. To avoid car's stop reference speed has been selected as 25 mps and included in the cost function. We do not want to have high values for steering angle and acceleration, so they are added to the cost function as well. And lastly, to have smooth behavior car should not change steering angle and acceleration drastically, so we added change minimization in the cost function.

Code was modified to tune parameters without compilation. I noticed that epsi is the most important parameter to control car's behavior. Eventually, it is the only parameter which was tuned.

Result

Video of car with referral speed 25mps.

Dependencies

  • cmake >= 3.5
  • All OSes: click here for installation instructions
  • make >= 4.1
  • gcc/g++ >= 5.4
  • uWebSockets
    • Run either install-mac.sh or install-ubuntu.sh.
    • If you install from source, checkout to commit e94b6e1, i.e.
      git clone https://github.com/uWebSockets/uWebSockets 
      cd uWebSockets
      git checkout e94b6e1
      
      Some function signatures have changed in v0.14.x. See this PR for more details.
  • Fortran Compiler
    • Mac: brew install gcc (might not be required)
    • Linux: sudo apt-get install gfortran. Additionall you have also have to install gcc and g++, sudo apt-get install gcc g++. Look in this Dockerfile for more info.
  • Ipopt
    • Mac: brew install ipopt
    • Linux
      • You will need a version of Ipopt 3.12.1 or higher. The version available through apt-get is 3.11.x. If you can get that version to work great but if not there's a script install_ipopt.sh that will install Ipopt. You just need to download the source from the Ipopt releases page or the Github releases page.
      • Then call install_ipopt.sh with the source directory as the first argument, ex: bash install_ipopt.sh Ipopt-3.12.1.
    • Windows: TODO. If you can use the Linux subsystem and follow the Linux instructions.
  • CppAD
    • Mac: brew install cppad
    • Linux sudo apt-get install cppad or equivalent.
    • Windows: TODO. If you can use the Linux subsystem and follow the Linux instructions.
  • Eigen. This is already part of the repo so you shouldn't have to worry about it.
  • Simulator. You can download these from the releases tab.
  • Not a dependency but read the DATA.md for a description of the data sent back from the simulator.

Basic Build Instructions

  1. Clone this repo.
  2. Make a build directory: mkdir build && cd build
  3. Compile: cmake .. && make
  4. Run it: ./mpc.

Tips

  1. It's recommended to test the MPC on basic examples to see if your implementation behaves as desired. One possible example is the vehicle starting offset of a straight line (reference). If the MPC implementation is correct, after some number of timesteps (not too many) it should find and track the reference line.
  2. The lake_track_waypoints.csv file has the waypoints of the lake track. You could use this to fit polynomials and points and see of how well your model tracks curve. NOTE: This file might be not completely in sync with the simulator so your solution should NOT depend on it.
  3. For visualization this C++ matplotlib wrapper could be helpful.

About

CarND Term 2 Model Predictive Control (MPC) Project

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 83.2%
  • Fortran 11.5%
  • C 2.0%
  • CMake 1.8%
  • Cuda 1.1%
  • Shell 0.2%
  • Other 0.2%