Files
PythonRobotics/PathTracking/model_predictive_speed_and_steer_control/notebook.ipynb
2018-07-16 18:13:37 +09:00

70 lines
1.5 KiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Model predictive speed and steering control"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# MPC modeling"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Vehicle model linearization\n",
"\n",
"State vector is:\n",
"$$ x = [x, y, v,\\phi]$$ x: x-position, y:y-position, v:velocity, φ: yaw angle\n",
"\n",
"Input vector is:\n",
"$$ u = [a, \\delta]$$ a: accellation, δ: steering angle\n",
"\n",
"Vehicle model is \n",
"$$ \\dot{x} = vcos(\\phi)$$\n",
"$$ \\dot{y} = vsin((\\phi)$$\n",
"$$ \\dot{v} = a$$\n",
"$$ \\dot{\\phi} = \\frac{vtan(\\delta)}{L}$$"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Reference\n",
"\n",
"- [Vehicle Dynamics and Control \\| Rajesh Rajamani \\| Springer](http://www.springer.com/us/book/9781461414322)\n",
"\n",
"- [MPC Course Material \\- MPC Lab @ UC\\-Berkeley](http://www.mpc.berkeley.edu/mpc-course-material)\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.6"
}
},
"nbformat": 4,
"nbformat_minor": 2
}