MRPT
1.9.9
|
Kinematic model for Ackermann-like or differential-driven vehicles.
Definition at line 19 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) noexcept |
void | operator delete[] (void *ptr) noexcept |
void | operator delete (void *memory, void *ptr) noexcept |
void * | operator new (size_t size, const std::nothrow_t &) noexcept |
void | operator delete (void *ptr, const std::nothrow_t &) noexcept |
virtual | ~CVehicleVelCmd_DiffDriven () |
size_t | getVelCmdLength () const override |
Get number of components in each velocity command. More... | |
std::string | getVelCmdDescription (const int index) const override |
Get textual, human-readable description of each velocity command component. More... | |
double | getVelCmdElement (const int index) const override |
Get each velocity command component. More... | |
void | setVelCmdElement (const int index, const double val) override |
Set each velocity command component. More... | |
bool | isStopCmd () const override |
Returns true if the command means "do not move" / "stop". More... | |
void | setToStop () override |
Set to a command that means "do not move" / "stop". More... | |
void | cmdVel_scale (double vel_scale) 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) 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... | |
RTTI classes and functions for polymorphic hierarchies | |
mrpt::rtti::CObject::Ptr | 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 {.0} |
Linear velocity (m/s) More... | |
double | ang_vel {.0} |
Angular velocity (rad/s) More... | |
Protected Member Functions | |
CSerializable virtual methods | |
uint8_t | serializeGetVersion () const override |
Must return the current versioning number of the object. More... | |
void | serializeTo (mrpt::serialization::CArchive &out) const override |
Pure virtual method for writing (serializing) to an abstract archive. More... | |
void | serializeFrom (mrpt::serialization::CArchive &in, uint8_t serial_version) override |
Pure virtual method for reading (deserializing) from an abstract archive. More... | |
Private Member Functions | |
double | filter_max_vw (double &v, double &w, const TVelCmdParams &p) |
RTTI stuff | |
using | Ptr = std::shared_ptr< CVehicleVelCmd_DiffDriven > |
using | ConstPtr = std::shared_ptr< const CVehicleVelCmd_DiffDriven > |
using | UniquePtr = std::unique_ptr< CVehicleVelCmd_DiffDriven > |
using | ConstUniquePtr = std::unique_ptr< const CVehicleVelCmd_DiffDriven > |
static mrpt::rtti::CLASSINIT | _init_CVehicleVelCmd_DiffDriven |
static const mrpt::rtti::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "CVehicleVelCmd_DiffDriven" |
static const mrpt::rtti::TRuntimeClassId * | _GetBaseClass () |
static constexpr auto | getClassName () |
static const mrpt::rtti::TRuntimeClassId & | GetRuntimeClassIdStatic () |
static mrpt::rtti::CObject * | CreateObject () |
template<typename... Args> | |
static Ptr | Create (Args &&... args) |
template<typename... Args> | |
static UniquePtr | CreateUnique (Args &&... args) |
virtual const mrpt::rtti::TRuntimeClassId * | GetRuntimeClass () const override |
Returns information about the class of an object in runtime. More... | |
virtual mrpt::rtti::CObject * | clone () const override |
Returns a deep copy (clone) of the object, indepently of its class. More... | |
using mrpt::kinematics::CVehicleVelCmd_DiffDriven::ConstPtr = std::shared_ptr<const CVehicleVelCmd_DiffDriven > |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
using mrpt::kinematics::CVehicleVelCmd_DiffDriven::ConstUniquePtr = std::unique_ptr<const CVehicleVelCmd_DiffDriven > |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
using mrpt::kinematics::CVehicleVelCmd_DiffDriven::Ptr = std::shared_ptr< CVehicleVelCmd_DiffDriven > |
A type for the associated smart pointer
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
using mrpt::kinematics::CVehicleVelCmd_DiffDriven::UniquePtr = std::unique_ptr< CVehicleVelCmd_DiffDriven > |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
virtual |
|
staticprotected |
|
inherited |
Returns a human readable description of the cmd.
Definition at line 21 of file CVehicleVelCmd.cpp.
References mrpt::format().
|
overridevirtual |
Returns a deep copy (clone) of the object, indepently of its class.
Implements mrpt::rtti::CObject.
|
overridevirtual |
See base class docs.
Tecognizes these parameters: robotMax_V_mps
, robotMax_W_degps
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 100 of file CVehicleVelCmd_DiffDriven.cpp.
References ang_vel, ASSERT_, ASSERTMSG_, filter_max_vw(), and lin_vel.
|
overridevirtual |
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 94 of file CVehicleVelCmd_DiffDriven.cpp.
|
inlinestatic |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
static |
|
inlinestatic |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
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 168 of file CObject.h.
References mrpt::rtti::CObject::clone().
Referenced by mrpt::obs::CRawlog::addActions(), and mrpt::obs::CRawlog::addObservations().
|
private |
Definition at line 133 of file CVehicleVelCmd_DiffDriven.cpp.
Referenced by cmdVel_limits().
|
inlinestatic |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
overridevirtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::kinematics::CVehicleVelCmd.
|
static |
|
overridevirtual |
Get textual, human-readable description of each velocity command component.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 21 of file CVehicleVelCmd_DiffDriven.cpp.
References THROW_EXCEPTION_FMT.
|
overridevirtual |
Get each velocity command component.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 37 of file CVehicleVelCmd_DiffDriven.cpp.
References ang_vel, lin_vel, and THROW_EXCEPTION_FMT.
|
overridevirtual |
Get number of components in each velocity command.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 20 of file CVehicleVelCmd_DiffDriven.cpp.
|
overridevirtual |
Returns true if the command means "do not move" / "stop".
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 68 of file CVehicleVelCmd_DiffDriven.cpp.
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
inlinenoexcept |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
inlinenoexcept |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
inlinestatic |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
inline |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
inlinenoexcept |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
inline |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
|
overrideprotectedvirtual |
Pure virtual method for reading (deserializing) from an abstract archive.
Users don't call this method directly. Instead, use stream >> object;
.
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 I/O error |
Implements mrpt::serialization::CSerializable.
Definition at line 74 of file CVehicleVelCmd_DiffDriven.cpp.
References ang_vel, lin_vel, and MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION.
|
overrideprotectedvirtual |
Must return the current versioning number of the object.
Start in zero for new classes, and increments each time there is a change in the stored format.
Implements mrpt::serialization::CSerializable.
Definition at line 87 of file CVehicleVelCmd_DiffDriven.cpp.
|
overrideprotectedvirtual |
Pure virtual method for writing (serializing) to an abstract archive.
Users don't call this method directly. Instead, use stream << object;
.
std::exception | On any I/O error |
Implements mrpt::serialization::CSerializable.
Definition at line 88 of file CVehicleVelCmd_DiffDriven.cpp.
|
overridevirtual |
Set to a command that means "do not move" / "stop".
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 73 of file CVehicleVelCmd_DiffDriven.cpp.
References ang_vel, and lin_vel.
Referenced by mrpt::nav::CRobot2NavInterfaceForSimulator_DiffDriven::stop().
|
overridevirtual |
Set each velocity command component.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 52 of file CVehicleVelCmd_DiffDriven.cpp.
References ang_vel, lin_vel, 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 nullptr is class does not support conversion to MATLAB. Definition at line 68 of file CSerializable.h.
|
staticprotected |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
double mrpt::kinematics::CVehicleVelCmd_DiffDriven::ang_vel {.0} |
Angular velocity (rad/s)
Definition at line 26 of file CVehicleVelCmd_DiffDriven.h.
Referenced by cmdVel_limits(), cmdVel_scale(), mrpt::nav::CPTG_DiffDrive_CollisionGridBased::directionToMotionCommand(), getVelCmdElement(), isStopCmd(), mrpt::kinematics::CVehicleSimul_DiffDriven::sendVelCmd(), serializeFrom(), serializeTo(), setToStop(), and setVelCmdElement().
|
static |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
double mrpt::kinematics::CVehicleVelCmd_DiffDriven::lin_vel {.0} |
Linear velocity (m/s)
Definition at line 24 of file CVehicleVelCmd_DiffDriven.h.
Referenced by cmdVel_limits(), cmdVel_scale(), mrpt::nav::CPTG_DiffDrive_CollisionGridBased::directionToMotionCommand(), getVelCmdElement(), isStopCmd(), mrpt::kinematics::CVehicleSimul_DiffDriven::sendVelCmd(), serializeFrom(), serializeTo(), setToStop(), and setVelCmdElement().
|
staticprotected |
Definition at line 21 of file CVehicleVelCmd_DiffDriven.h.
Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 7d5e6d718 Fri Aug 24 01:51:28 2018 +0200 at lun nov 2 08:35:50 CET 2020 |