MRPT
2.0.1
|
Kinematic model for.
Definition at line 19 of file CVehicleVelCmd_Holo.h.
#include <mrpt/kinematics/CVehicleVelCmd_Holo.h>
Public Member Functions | |
CVehicleVelCmd_Holo () | |
CVehicleVelCmd_Holo (double vel, double dir_local, double ramp_time, double rot_speed) | |
~CVehicleVelCmd_Holo () override | |
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 |
Scale the velocity command encoded in this object. More... | |
double | cmdVel_limits (const mrpt::kinematics::CVehicleVelCmd &prev_vel_cmd, const double beta, const TVelCmdParams ¶ms) override |
Updates this command, computing a blended version of beta (within [0,1]) of vel_cmd and 1-beta of prev_vel_cmd , simultaneously to honoring any user-side maximum velocities. 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 |
Makes a deep copy of the object and returns a smart pointer to it. More... | |
Public Attributes | |
double | vel {.0} |
speed(m / s) More... | |
double | dir_local {.0} |
: direction, relative to the current robot heading (radians). More... | |
double | ramp_time {.0} |
: Blending time between current and target time. More... | |
double | rot_speed {.0} |
: (rad/s) rotational speed for rotating such as the robot slowly faces forward. 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... | |
CSerializable virtual methods | |
virtual void | serializeTo (CSchemeArchiveBase &out) const |
Virtual method for writing (serializing) to an abstract schema based archive. More... | |
virtual void | serializeFrom (CSchemeArchiveBase &in) |
Virtual method for reading (deserializing) from an abstract schema based archive. More... | |
RTTI stuff | |
using | Ptr = std::shared_ptr< mrpt::kinematics ::CVehicleVelCmd_Holo > |
using | ConstPtr = std::shared_ptr< const mrpt::kinematics ::CVehicleVelCmd_Holo > |
using | UniquePtr = std::unique_ptr< mrpt::kinematics ::CVehicleVelCmd_Holo > |
using | ConstUniquePtr = std::unique_ptr< const mrpt::kinematics ::CVehicleVelCmd_Holo > |
static const mrpt::rtti::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "mrpt::kinematics" "::" "CVehicleVelCmd_Holo" |
static const mrpt::rtti::TRuntimeClassId * | _GetBaseClass () |
static constexpr auto | getClassName () |
static const mrpt::rtti::TRuntimeClassId & | GetRuntimeClassIdStatic () |
static std::shared_ptr< CObject > | CreateObject () |
template<typename... Args> | |
static Ptr | Create (Args &&... args) |
template<typename Alloc , typename... Args> | |
static Ptr | CreateAlloc (const Alloc &alloc, 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_Holo::ConstPtr = std::shared_ptr<const mrpt::kinematics :: CVehicleVelCmd_Holo > |
Definition at line 21 of file CVehicleVelCmd_Holo.h.
using mrpt::kinematics::CVehicleVelCmd_Holo::ConstUniquePtr = std::unique_ptr<const mrpt::kinematics :: CVehicleVelCmd_Holo > |
Definition at line 21 of file CVehicleVelCmd_Holo.h.
using mrpt::kinematics::CVehicleVelCmd_Holo::Ptr = std::shared_ptr< mrpt::kinematics :: CVehicleVelCmd_Holo > |
A type for the associated smart pointer
Definition at line 21 of file CVehicleVelCmd_Holo.h.
using mrpt::kinematics::CVehicleVelCmd_Holo::UniquePtr = std::unique_ptr< mrpt::kinematics :: CVehicleVelCmd_Holo > |
Definition at line 21 of file CVehicleVelCmd_Holo.h.
|
default |
CVehicleVelCmd_Holo::CVehicleVelCmd_Holo | ( | double | vel, |
double | dir_local, | ||
double | ramp_time, | ||
double | rot_speed | ||
) |
Definition at line 21 of file CVehicleVelCmd_Holo.cpp.
|
overridedefault |
|
staticprotected |
|
inherited |
Returns a human readable description of the cmd.
Definition at line 22 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 |
Updates this command, computing a blended version of beta
(within [0,1]) of vel_cmd
and 1-beta
of prev_vel_cmd
, simultaneously to honoring any user-side maximum velocities.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 132 of file CVehicleVelCmd_Holo.cpp.
References ASSERTMSG_, params, rot_speed, and vel.
|
overridevirtual |
Scale the velocity command encoded in this object.
[in] | vel_scale | A scale within [0,1] reflecting how much should be the raw velocity command be lessen (e.g. for safety reasons,...). |
[out] | out_vel_cmd | Users can directly inherit from existing implementations instead of manually redefining this method: |
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 123 of file CVehicleVelCmd_Holo.cpp.
References vel.
|
inlinestatic |
Definition at line 21 of file CVehicleVelCmd_Holo.h.
Referenced by mrpt::nav::CNavigatorManualSequence::loadConfigFile().
|
inlinestatic |
Definition at line 21 of file CVehicleVelCmd_Holo.h.
|
static |
|
inlinestatic |
Definition at line 21 of file CVehicleVelCmd_Holo.h.
|
inlineinherited |
Makes a deep copy of the object and returns a smart pointer to it.
Definition at line 204 of file CObject.h.
References mrpt::rtti::CObject::clone().
Referenced by mrpt::obs::CRawlog::insert().
|
inlinestatic |
Definition at line 21 of file CVehicleVelCmd_Holo.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 32 of file CVehicleVelCmd_Holo.cpp.
References THROW_EXCEPTION_FMT.
|
overridevirtual |
Get each velocity command component.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 53 of file CVehicleVelCmd_Holo.cpp.
References dir_local, ramp_time, rot_speed, THROW_EXCEPTION_FMT, and vel.
|
overridevirtual |
Get number of components in each velocity command.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 31 of file CVehicleVelCmd_Holo.cpp.
|
overridevirtual |
Returns true if the command means "do not move" / "stop".
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 95 of file CVehicleVelCmd_Holo.cpp.
|
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 104 of file CVehicleVelCmd_Holo.cpp.
References dir_local, MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION, ramp_time, rot_speed, and vel.
|
inlineprotectedvirtualinherited |
Virtual method for reading (deserializing) from an abstract schema based archive.
Definition at line 74 of file CSerializable.h.
References mrpt::serialization::CSerializable::GetRuntimeClass(), and THROW_EXCEPTION.
|
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 117 of file CVehicleVelCmd_Holo.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 118 of file CVehicleVelCmd_Holo.cpp.
|
inlineprotectedvirtualinherited |
Virtual method for writing (serializing) to an abstract schema based archive.
Definition at line 64 of file CSerializable.h.
References mrpt::serialization::CSerializable::GetRuntimeClass(), and THROW_EXCEPTION.
|
overridevirtual |
Set to a command that means "do not move" / "stop".
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 100 of file CVehicleVelCmd_Holo.cpp.
|
overridevirtual |
Set each velocity command component.
Implements mrpt::kinematics::CVehicleVelCmd.
Definition at line 74 of file CVehicleVelCmd_Holo.cpp.
References dir_local, ramp_time, rot_speed, THROW_EXCEPTION_FMT, val, and vel.
|
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 90 of file CSerializable.h.
|
static |
Definition at line 21 of file CVehicleVelCmd_Holo.h.
double mrpt::kinematics::CVehicleVelCmd_Holo::dir_local {.0} |
: direction, relative to the current robot heading (radians).
0 means forward.
Definition at line 27 of file CVehicleVelCmd_Holo.h.
Referenced by getVelCmdElement(), serializeFrom(), serializeTo(), setToStop(), and setVelCmdElement().
double mrpt::kinematics::CVehicleVelCmd_Holo::ramp_time {.0} |
: Blending time between current and target time.
Definition at line 29 of file CVehicleVelCmd_Holo.h.
Referenced by getVelCmdElement(), serializeFrom(), serializeTo(), setToStop(), and setVelCmdElement().
double mrpt::kinematics::CVehicleVelCmd_Holo::rot_speed {.0} |
: (rad/s) rotational speed for rotating such as the robot slowly faces forward.
Definition at line 32 of file CVehicleVelCmd_Holo.h.
Referenced by cmdVel_limits(), getVelCmdElement(), isStopCmd(), serializeFrom(), serializeTo(), setToStop(), and setVelCmdElement().
|
staticprotected |
Definition at line 21 of file CVehicleVelCmd_Holo.h.
double mrpt::kinematics::CVehicleVelCmd_Holo::vel {.0} |
speed(m / s)
Definition at line 24 of file CVehicleVelCmd_Holo.h.
Referenced by cmdVel_limits(), cmdVel_scale(), getVelCmdElement(), isStopCmd(), serializeFrom(), serializeTo(), setToStop(), and setVelCmdElement().
Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020 |