simple_car.h
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020, Christoph Rösmann, All rights reserved.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <https://www.gnu.org/licenses/>.
19  *
20  * Authors: Christoph Rösmann
21  *********************************************************************/
22 
23 #ifndef SYSTEMS_SIMPLE_CAR_H_
24 #define SYSTEMS_SIMPLE_CAR_H_
25 
27 
28 #include <cmath>
29 
30 namespace mpc_local_planner {
31 
53 {
54  public:
56  SimpleCarModel() = default;
57 
59  SimpleCarModel(double wheelbase) : _wheelbase(wheelbase) {}
60 
61  // implements interface method
62  SystemDynamicsInterface::Ptr getInstance() const override { return std::make_shared<SimpleCarModel>(); }
63 
64  // implements interface method
65  int getInputDimension() const override { return 2; }
66 
67  // implements interface method
69  {
70  assert(x.size() == getStateDimension());
71  assert(u.size() == getInputDimension());
72  assert(x.size() == f.size() && "SimpleCarModel::dynamics(): x and f are not of the same size, do not forget to pre-allocate f.");
73 
74  f[0] = u[0] * std::cos(x[2]);
75  f[1] = u[0] * std::sin(x[2]);
76  f[2] = u[0] * std::tan(u[1]) / _wheelbase;
77  }
78 
79  // implements interface method
80  bool getTwistFromControl(const Eigen::Ref<const Eigen::VectorXd>& u, geometry_msgs::Twist& twist) const override
81  {
82  assert(u.size() == getInputDimension());
83  twist.linear.x = u[0];
84  twist.linear.y = twist.linear.z = 0;
85 
86  twist.angular.z = u[1]; // warning, this is the angle and not the angular vel
87  twist.angular.x = twist.angular.y = 0;
88 
89  return true;
90  }
91 
93  void setWheelbase(double wheelbase) { _wheelbase = wheelbase; }
95  double getWheelbase() const { return _wheelbase; }
96 
97  protected:
98  double _wheelbase = 1.0;
99 };
100 
119 {
120  public:
123 
125  SimpleCarFrontWheelDrivingModel(double wheelbase) : SimpleCarModel(wheelbase) {}
126 
127  // implements interface method
128  SystemDynamicsInterface::Ptr getInstance() const override { return std::make_shared<SimpleCarFrontWheelDrivingModel>(); }
129 
130  // implements interface method
132  {
133  assert(x.size() == getStateDimension());
134  assert(u.size() == getInputDimension());
135  assert(x.size() == f.size() &&
136  "SimpleCarFrontWheelDrivingModel::dynamics(): x and f are not of the same size, do not forget to pre-allocate f.");
137 
138  f[0] = u[0] * std::cos(x[2]);
139  f[1] = u[0] * std::sin(x[2]);
140  f[2] = u[0] * std::sin(u[1]) / _wheelbase;
141  }
142 };
143 
144 } // namespace mpc_local_planner
145 
146 #endif // SYSTEMS_SIMPLE_CAR_H_
void setWheelbase(double wheelbase)
Set wheelbase.
Definition: simple_car.h:93
Simple car model with front wheel actuation.
Definition: simple_car.h:118
double getWheelbase() const
Get wheelbase.
Definition: simple_car.h:95
SystemDynamicsInterface::Ptr getInstance() const override
Definition: simple_car.h:128
SystemDynamicsInterface::Ptr getInstance() const override
Definition: simple_car.h:62
void dynamics(const Eigen::Ref< const StateVector > &x, const Eigen::Ref< const ControlVector > &u, Eigen::Ref< StateVector > f) const override
Definition: simple_car.h:131
SimpleCarModel(double wheelbase)
Constructs model with given wheelbase.
Definition: simple_car.h:59
void dynamics(const Eigen::Ref< const StateVector > &x, const Eigen::Ref< const ControlVector > &u, Eigen::Ref< StateVector > f) const override
Definition: simple_car.h:68
SimpleCarModel()=default
Default constructor.
Specialization of RobotDynamicsInterface for mobile robots operating in SE2.
int getStateDimension() const override
bool getTwistFromControl(const Eigen::Ref< const Eigen::VectorXd > &u, geometry_msgs::Twist &twist) const override
Convert control vector to twist message.
Definition: simple_car.h:80
int getInputDimension() const override
Definition: simple_car.h:65
SimpleCarFrontWheelDrivingModel(double wheelbase)
Constructs model with given wheelbase.
Definition: simple_car.h:125


mpc_local_planner
Author(s): Christoph Rösmann
autogenerated on Mon Feb 28 2022 22:53:18