Kinematic model for Ackermann-like or differential-driven vehicles.
Definition at line 23 of file CVehicleVelCmd_DiffDriven.h.
#include <mrpt/kinematics/CVehicleVelCmd_DiffDriven.h>
Public Member Functions | |
void * | operator new (size_t size) |
void * | operator new[] (size_t size) |
void | operator delete (void *ptr) throw () |
void | operator delete[] (void *ptr) throw () |
void | operator delete (void *memory, void *ptr) throw () |
void * | operator new (size_t size, const std::nothrow_t &) throw () |
void | operator delete (void *ptr, const std::nothrow_t &) throw () |
CVehicleVelCmd_DiffDriven () | |
virtual | ~CVehicleVelCmd_DiffDriven () |
size_t | getVelCmdLength () const MRPT_OVERRIDE |
Get number of components in each velocity command. More... | |
std::string | getVelCmdDescription (const int index) const MRPT_OVERRIDE |
Get textual, human-readable description of each velocity command component. More... | |
double | getVelCmdElement (const int index) const MRPT_OVERRIDE |
Get each velocity command component. More... | |
void | setVelCmdElement (const int index, const double val) MRPT_OVERRIDE |
Set each velocity command component. More... | |
bool | isStopCmd () const MRPT_OVERRIDE |
Returns true if the command means "do not move" / "stop". More... | |
void | setToStop () MRPT_OVERRIDE |
Set to a command that means "do not move" / "stop". More... | |
void | cmdVel_scale (double vel_scale) MRPT_OVERRIDE |
See docs of method in base class. More... | |
double | cmdVel_limits (const mrpt::kinematics::CVehicleVelCmd &prev_vel_cmd, const double beta, const TVelCmdParams ¶ms) MRPT_OVERRIDE |
See base class docs. More... | |
std::string | asString () const |
Returns a human readable description of the cmd. More... | |
virtual mxArray * | writeToMatlab () const |
Introduces a pure virtual method responsible for writing to a mxArray Matlab object, typically a MATLAB struct whose contents are documented in each derived class. More... | |
CObject * | clone () const |
Cloning interface for smart pointers. More... | |
RTTI classes and functions | |
mrpt::utils::CObjectPtr | duplicateGetSmartPtr () const |
Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer). More... | |
Static Public Member Functions | |
static void * | operator new (size_t size, void *ptr) |
Public Attributes | |
double | lin_vel |
Linear velocity (m/s) More... | |
double | ang_vel |
Angular velocity (rad/s) More... | |
Static Public Attributes | |
static const mrpt::utils::TRuntimeClassId | classCObject |
RTTI stuff | |
static const mrpt::utils::TRuntimeClassId | classCVehicleVelCmd |
RTTI stuff | |
static const mrpt::utils::TRuntimeClassId | classCSerializable |
Protected Member Functions | |
CSerializable virtual methods | |
void | writeToStream (mrpt::utils::CStream &out, int *getVersion) const |
Introduces a pure virtual method responsible for writing to a CStream. More... | |
void | readFromStream (mrpt::utils::CStream &in, int version) |
Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori. More... | |
Private Member Functions | |
double | filter_max_vw (double &v, double &w, const TVelCmdParams &p) |
RTTI stuff | |
typedef CVehicleVelCmd_DiffDrivenPtr | Ptr |
typedef CVehicleVelCmd_DiffDrivenPtr | ConstPtr |
static mrpt::utils::CLASSINIT | _init_CVehicleVelCmd_DiffDriven |
static mrpt::utils::TRuntimeClassId | classCVehicleVelCmd_DiffDriven |
static const mrpt::utils::TRuntimeClassId * | classinfo |
static const mrpt::utils::TRuntimeClassId * | _GetBaseClass () |
virtual const mrpt::utils::TRuntimeClassId * | GetRuntimeClass () const |
Returns information about the class of an object in runtime. More... | |
virtual mrpt::utils::CObject * | duplicate () const |
Returns a copy of the object, indepently of its class. More... | |
static mrpt::utils::CObject * | CreateObject () |
static CVehicleVelCmd_DiffDrivenPtr | Create () |
typedef CVehicleVelCmd_DiffDrivenPtr mrpt::kinematics::CVehicleVelCmd_DiffDriven::ConstPtr |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
typedef CVehicleVelCmd_DiffDrivenPtr mrpt::kinematics::CVehicleVelCmd_DiffDriven::Ptr |
A typedef for the associated smart pointer
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
CVehicleVelCmd_DiffDriven::CVehicleVelCmd_DiffDriven | ( | ) |
Definition at line 19 of file CVehicleVelCmd_DiffDriven.cpp.
|
virtual |
Definition at line 24 of file CVehicleVelCmd_DiffDriven.cpp.
|
staticprotected |
|
inherited |
Returns a human readable description of the cmd.
Definition at line 31 of file CVehicleVelCmd.cpp.
References mrpt::mrpt::format().
|
inlineinherited |
|
virtual |
See base class docs.
Tecognizes these parameters: robotMax_V_mps
, robotMax_W_degps
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 103 of file CVehicleVelCmd_DiffDriven.cpp.
References ang_vel, ASSERT_, ASSERTMSG_, and lin_vel.
|
virtual |
See docs of method in base class.
The implementation for differential-driven robots of this method just multiplies all the components of vel_cmd times vel_scale, which is appropriate for differential-driven kinematic models (v,w).
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 97 of file CVehicleVelCmd_DiffDriven.cpp.
|
static |
Referenced by mrpt::nav::CNavigatorManualSequence::loadConfigFile().
|
static |
|
virtual |
Returns a copy of the object, indepently of its class.
Implements mrpt::utils::CObject.
|
inlineinherited |
Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer).
Definition at line 162 of file CObject.h.
References mrpt::utils::CObjectPtr.
Referenced by mrpt::obs::CRawlog::addActions(), mrpt::slam::CIncrementalMapPartitioner::addMapFrame(), and mrpt::obs::CRawlog::addObservations().
|
private |
Definition at line 129 of file CVehicleVelCmd_DiffDriven.cpp.
|
virtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::kinematics::CVehicleVelCmd.
|
virtual |
Get textual, human-readable description of each velocity command component.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 32 of file CVehicleVelCmd_DiffDriven.cpp.
References THROW_EXCEPTION_FMT.
|
virtual |
Get each velocity command component.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 43 of file CVehicleVelCmd_DiffDriven.cpp.
References THROW_EXCEPTION_FMT.
|
virtual |
Get number of components in each velocity command.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 27 of file CVehicleVelCmd_DiffDriven.cpp.
|
virtual |
Returns true if the command means "do not move" / "stop".
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 65 of file CVehicleVelCmd_DiffDriven.cpp.
|
inline |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
|
inline |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
|
inline |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
|
inlinestatic |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
|
inline |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
|
inline |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
|
protectedvirtual |
Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori.
in | The input binary stream where the object data must read from. |
version | The version of the object stored in the stream: use this version number in your code to know how to read the incoming data. |
std::exception | On any error, see CStream::ReadBuffer |
Implements mrpt::utils::CSerializable.
Definition at line 75 of file CVehicleVelCmd_DiffDriven.cpp.
References MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION, and version.
|
virtual |
Set to a command that means "do not move" / "stop".
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 70 of file CVehicleVelCmd_DiffDriven.cpp.
Referenced by mrpt::nav::CRobot2NavInterfaceForSimulator_DiffDriven::stop().
|
virtual |
Set each velocity command component.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 54 of file CVehicleVelCmd_DiffDriven.cpp.
References THROW_EXCEPTION_FMT, and val.
|
inlinevirtualinherited |
Introduces a pure virtual method responsible for writing to a mxArray
Matlab object, typically a MATLAB struct
whose contents are documented in each derived class.
mxArray
(caller is responsible of memory freeing) or NULL is class does not support conversion to MATLAB. Definition at line 79 of file CSerializable.h.
|
protectedvirtual |
Introduces a pure virtual method responsible for writing to a CStream.
This can not be used directly be users, instead use "stream << object;" for writing it to a stream.
out | The output binary stream where object must be dumped. |
getVersion | If NULL, the object must be dumped. If not, only the version of the object dump must be returned in this pointer. This enables the versioning of objects dumping and backward compatibility with previously stored data. |
std::exception | On any error, see CStream::WriteBuffer |
Implements mrpt::utils::CSerializable.
Definition at line 87 of file CVehicleVelCmd_DiffDriven.cpp.
References version.
|
staticprotected |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
double mrpt::kinematics::CVehicleVelCmd_DiffDriven::ang_vel |
Angular velocity (rad/s)
Definition at line 28 of file CVehicleVelCmd_DiffDriven.h.
Referenced by cmdVel_limits(), mrpt::nav::CPTG_DiffDrive_CollisionGridBased::directionToMotionCommand(), and mrpt::kinematics::CVehicleSimul_DiffDriven::sendVelCmd().
|
staticinherited |
|
staticinherited |
Definition at line 42 of file CSerializable.h.
|
staticinherited |
Definition at line 26 of file CVehicleVelCmd.h.
|
static |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
|
static |
Definition at line 25 of file CVehicleVelCmd_DiffDriven.h.
double mrpt::kinematics::CVehicleVelCmd_DiffDriven::lin_vel |
Linear velocity (m/s)
Definition at line 27 of file CVehicleVelCmd_DiffDriven.h.
Referenced by cmdVel_limits(), mrpt::nav::CPTG_DiffDrive_CollisionGridBased::directionToMotionCommand(), and mrpt::kinematics::CVehicleSimul_DiffDriven::sendVelCmd().
Page generated by Doxygen 1.8.14 for MRPT 1.5.9 Git: 690a4699f Wed Apr 15 19:29:53 2020 +0200 at miƩ abr 15 19:30:12 CEST 2020 |