Kinematic simulator of a holonomic 2D robot capable of moving in any direction, with "blended" velocity profiles.
See CVehicleSimul_Holo::sendVelCmd() for a description of the velocity commands in this kinematic model.
Definition at line 22 of file CVehicleSimul_Holo.h.
#include <mrpt/kinematics/CVehicleSimul_Holo.h>
Classes | |
struct | TVelRampCmd |
Public Types | |
typedef CVehicleVelCmd_Holo | kinematic_cmd_t |
Public Member Functions | |
CVehicleSimul_Holo () | |
void | sendVelRampCmd (double vel, double dir, double ramp_time, double rot_speed) |
Sends a velocity cmd to the holonomic robot. More... | |
void | sendVelCmd (const CVehicleVelCmd &cmd_vel) MRPT_OVERRIDE |
Sends a velocity command to the robot. More... | |
CVehicleVelCmdPtr | getVelCmdType () const MRPT_OVERRIDE |
Gets an empty velocity command object that can be queried to find out the number of velcmd components,... More... | |
Kinematic simulation and control interface | |
void | simulateOneTimeStep (const double dt) |
Runs the simulator during "dt" seconds. More... | |
const mrpt::math::TPose2D & | getCurrentGTPose () const |
Returns the instantaneous, ground truth pose in world coordinates. More... | |
void | setCurrentGTPose (const mrpt::math::TPose2D &pose) |
Brute-force move robot to target coordinates ("teleport") More... | |
const mrpt::math::TPose2D & | getCurrentOdometricPose () const |
Returns the current pose according to (noisy) odometry. More... | |
template<typename T > | |
void | setCurrentOdometricPose (const T &pose) |
Brute-force overwrite robot odometry. More... | |
const mrpt::math::TTwist2D & | getCurrentGTVel () const |
Returns the instantaneous, ground truth velocity vector (vx,vy,omega) in world coordinates. More... | |
mrpt::math::TTwist2D | getCurrentGTVelLocal () const |
Returns the instantaneous, ground truth velocity vector (vx,vy,omega) in the robot local frame. More... | |
const mrpt::math::TTwist2D & | getCurrentOdometricVel () const |
Returns the instantaneous, odometric velocity vector (vx,vy,omega) in world coordinates. More... | |
mrpt::math::TTwist2D | getCurrentOdometricVelLocal () const |
Returns the instantaneous, odometric velocity vector (vx,vy,omega) in the robot local frame. More... | |
double | getTime () const |
Get the current simulation time. More... | |
void | setOdometryErrors (bool enabled, double Ax_err_bias=1e-3, double Ax_err_std=10e-3, double Ay_err_bias=1e-3, double Ay_err_std=10e-3, double Aphi_err_bias=mrpt::utils::DEG2RAD(1e-3), double Aphi_err_std=mrpt::utils::DEG2RAD(10e-3)) |
Enable/Disable odometry errors. More... | |
void | resetStatus () |
void | resetTime () |
Reset all simulator variables to 0 (except the simulation time). More... | |
Protected Attributes | |
double | m_firmware_control_period |
The period at which the low-level controller updates velocities (Default: 0.5 ms) More... | |
bool | m_use_odo_error |
Whether to corrupt odometry with noise. More... | |
double | m_Ax_err_bias |
double | m_Ax_err_std |
double | m_Ay_err_bias |
double | m_Ay_err_std |
double | m_Aphi_err_bias |
double | m_Aphi_err_std |
State vector | |
double | m_time |
simulation running time More... | |
mrpt::math::TPose2D | m_GT_pose |
ground truth pose in world coordinates. More... | |
mrpt::math::TTwist2D | m_GT_vel |
Velocity in (x,y,omega) More... | |
mrpt::math::TTwist2D | m_odometric_vel |
Velocity in (x,y,omega) More... | |
mrpt::math::TPose2D | m_odometry |
Private Member Functions | |
void | internal_simulControlStep (const double dt) MRPT_OVERRIDE |
void | internal_clear () MRPT_OVERRIDE |
Resets all pending cmds. More... | |
Private Attributes | |
Vel ramp cmds | |
TVelRampCmd | m_vel_ramp_cmd |
the last cmd received from the user. More... | |
Definition at line 25 of file CVehicleSimul_Holo.h.
CVehicleSimul_Holo::CVehicleSimul_Holo | ( | ) |
Definition at line 17 of file CVehicleSimul_Holo.cpp.
References mrpt::kinematics::CVehicleSimulVirtualBase::resetStatus(), and mrpt::kinematics::CVehicleSimulVirtualBase::resetTime().
|
inlineinherited |
Returns the instantaneous, ground truth pose in world coordinates.
Definition at line 42 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::nav::CRobot2NavInterfaceForSimulator_Holo::getCurrentPoseAndSpeeds(), mrpt::nav::CRobot2NavInterfaceForSimulator_DiffDriven::getCurrentPoseAndSpeeds(), mrpt::utils::CRobotSimulator::getPHI(), mrpt::utils::CRobotSimulator::getRealPose(), mrpt::utils::CRobotSimulator::getX(), mrpt::utils::CRobotSimulator::getY(), and run_rnav_test().
|
inlineinherited |
Returns the instantaneous, ground truth velocity vector (vx,vy,omega) in world coordinates.
Definition at line 54 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::nav::CRobot2NavInterfaceForSimulator_Holo::getCurrentPoseAndSpeeds(), and mrpt::nav::CRobot2NavInterfaceForSimulator_DiffDriven::getCurrentPoseAndSpeeds().
|
inherited |
Returns the instantaneous, ground truth velocity vector (vx,vy,omega) in the robot local frame.
Definition at line 88 of file CVehicleSimulVirtualBase.cpp.
References mrpt::kinematics::CVehicleSimulVirtualBase::m_GT_pose, mrpt::kinematics::CVehicleSimulVirtualBase::m_GT_vel, mrpt::math::TPose2D::phi, and mrpt::math::TTwist2D::rotate().
|
inlineinherited |
Returns the current pose according to (noisy) odometry.
Definition at line 48 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::nav::CRobot2NavInterfaceForSimulator_Holo::getCurrentPoseAndSpeeds(), mrpt::nav::CRobot2NavInterfaceForSimulator_DiffDriven::getCurrentPoseAndSpeeds(), and mrpt::utils::CRobotSimulator::getOdometry().
|
inlineinherited |
Returns the instantaneous, odometric velocity vector (vx,vy,omega) in world coordinates.
Definition at line 59 of file CVehicleSimulVirtualBase.h.
|
inherited |
Returns the instantaneous, odometric velocity vector (vx,vy,omega) in the robot local frame.
Definition at line 95 of file CVehicleSimulVirtualBase.cpp.
References mrpt::kinematics::CVehicleSimulVirtualBase::m_odometric_vel, mrpt::kinematics::CVehicleSimulVirtualBase::m_odometry, mrpt::math::TPose2D::phi, and mrpt::math::TTwist2D::rotate().
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
inlineinherited |
Get the current simulation time.
Definition at line 65 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::nav::CRobot2NavInterfaceForSimulator_Holo::getNavigationTime(), mrpt::nav::CRobot2NavInterfaceForSimulator_DiffDriven::getNavigationTime(), mrpt::utils::CRobotSimulator::getT(), mrpt::nav::CRobot2NavInterfaceForSimulator_Holo::resetNavigationTimer(), and mrpt::nav::CRobot2NavInterfaceForSimulator_DiffDriven::resetNavigationTimer().
|
inlinevirtual |
Gets an empty velocity command object that can be queried to find out the number of velcmd components,...
Implements mrpt::kinematics::CVehicleSimulVirtualBase.
Definition at line 42 of file CVehicleSimul_Holo.h.
|
privatevirtual |
Resets all pending cmds.
Implements mrpt::kinematics::CVehicleSimulVirtualBase.
Definition at line 69 of file CVehicleSimul_Holo.cpp.
References m_vel_ramp_cmd.
|
privatevirtual |
Implements mrpt::kinematics::CVehicleSimulVirtualBase.
Definition at line 23 of file CVehicleSimul_Holo.cpp.
References mrpt::mrpt::utils::DEG2RAD(), mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::dir, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::init_vel, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::issue_time, mrpt::kinematics::CVehicleSimulVirtualBase::m_odometric_vel, mrpt::kinematics::CVehicleSimulVirtualBase::m_odometry, mrpt::kinematics::CVehicleSimulVirtualBase::m_time, m_vel_ramp_cmd, mrpt::math::TTwist2D::omega, mrpt::math::TPose2D::phi, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::ramp_time, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::rot_speed, mrpt::mrpt::utils::sign(), mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::target_vel_x, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::target_vel_y, mrpt::math::TTwist2D::vx, mrpt::math::TTwist2D::vy, and mrpt::math::wrapToPi().
|
inherited |
Definition at line 74 of file CVehicleSimulVirtualBase.cpp.
References mrpt::kinematics::CVehicleSimulVirtualBase::internal_clear(), mrpt::kinematics::CVehicleSimulVirtualBase::m_GT_pose, mrpt::kinematics::CVehicleSimulVirtualBase::m_GT_vel, mrpt::kinematics::CVehicleSimulVirtualBase::m_odometric_vel, and mrpt::kinematics::CVehicleSimulVirtualBase::m_odometry.
Referenced by mrpt::kinematics::CVehicleSimul_DiffDriven::CVehicleSimul_DiffDriven(), and CVehicleSimul_Holo().
|
inherited |
Reset all simulator variables to 0 (except the simulation time).
Definition at line 83 of file CVehicleSimulVirtualBase.cpp.
References mrpt::kinematics::CVehicleSimulVirtualBase::m_time.
Referenced by mrpt::kinematics::CVehicleSimul_DiffDriven::CVehicleSimul_DiffDriven(), and CVehicleSimul_Holo().
|
inlinevirtual |
Sends a velocity command to the robot.
The number of components and their meaning depends on the vehicle-kinematics derived class
Implements mrpt::kinematics::CVehicleSimulVirtualBase.
Definition at line 37 of file CVehicleSimul_Holo.h.
References ASSERTMSG_, mrpt::kinematics::CVehicleVelCmd_Holo::dir_local, mrpt::kinematics::CVehicleVelCmd_Holo::ramp_time, mrpt::kinematics::CVehicleVelCmd_Holo::rot_speed, and mrpt::kinematics::CVehicleVelCmd_Holo::vel.
Referenced by mrpt::nav::CRobot2NavInterfaceForSimulator_Holo::changeSpeeds().
void CVehicleSimul_Holo::sendVelRampCmd | ( | double | vel, |
double | dir, | ||
double | ramp_time, | ||
double | rot_speed | ||
) |
Sends a velocity cmd to the holonomic robot.
[in] | vel | Linear speed (m/s) |
[in] | dir | Direction (rad) (In the odometry frame of reference) |
[in] | ramp_time | Blend the cmd during this period (seconds) |
[in] | rot_speed | Rotational speed while there is heading error and to this constant (rad/s) |
Definition at line 75 of file CVehicleSimul_Holo.cpp.
References ASSERT_ABOVE_, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::dir, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::init_vel, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::issue_time, mrpt::kinematics::CVehicleSimulVirtualBase::m_odometric_vel, mrpt::kinematics::CVehicleSimulVirtualBase::m_time, m_vel_ramp_cmd, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::ramp_time, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::rot_speed, mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::target_vel_x, and mrpt::kinematics::CVehicleSimul_Holo::TVelRampCmd::target_vel_y.
Referenced by mrpt::nav::CRobot2NavInterfaceForSimulator_Holo::stop().
|
inherited |
Brute-force move robot to target coordinates ("teleport")
Definition at line 27 of file CVehicleSimulVirtualBase.cpp.
References mrpt::kinematics::CVehicleSimulVirtualBase::m_GT_pose.
Referenced by mrpt::utils::CRobotSimulator::setRealPose().
|
inlineinherited |
Brute-force overwrite robot odometry.
Definition at line 51 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::utils::CRobotSimulator::resetOdometry(), and mrpt::utils::CRobotSimulator::setOdometry().
|
inlineinherited |
Enable/Disable odometry errors.
Errors in odometry are 1 sigma Gaussian values per second
Definition at line 74 of file CVehicleSimulVirtualBase.h.
|
inherited |
Runs the simulator during "dt" seconds.
It will be split into periods of "m_firmware_control_period".
Definition at line 32 of file CVehicleSimulVirtualBase.cpp.
References mrpt::random::CRandomGenerator::drawGaussian1D_normalized(), mrpt::kinematics::CVehicleSimulVirtualBase::getCurrentOdometricVelLocal(), mrpt::kinematics::CVehicleSimulVirtualBase::internal_simulControlStep(), mrpt::kinematics::CVehicleSimulVirtualBase::m_Aphi_err_bias, mrpt::kinematics::CVehicleSimulVirtualBase::m_Aphi_err_std, mrpt::kinematics::CVehicleSimulVirtualBase::m_Ax_err_bias, mrpt::kinematics::CVehicleSimulVirtualBase::m_Ax_err_std, mrpt::kinematics::CVehicleSimulVirtualBase::m_Ay_err_bias, mrpt::kinematics::CVehicleSimulVirtualBase::m_Ay_err_std, mrpt::kinematics::CVehicleSimulVirtualBase::m_firmware_control_period, mrpt::kinematics::CVehicleSimulVirtualBase::m_GT_pose, mrpt::kinematics::CVehicleSimulVirtualBase::m_GT_vel, mrpt::kinematics::CVehicleSimulVirtualBase::m_odometric_vel, mrpt::kinematics::CVehicleSimulVirtualBase::m_odometry, mrpt::kinematics::CVehicleSimulVirtualBase::m_time, mrpt::kinematics::CVehicleSimulVirtualBase::m_use_odo_error, mrpt::math::TTwist2D::omega, mrpt::math::TPose2D::phi, mrpt::random::randomGenerator, mrpt::math::TTwist2D::rotate(), mrpt::math::TTwist2D::vx, mrpt::math::TTwist2D::vy, mrpt::math::wrapToPiInPlace(), and mrpt::math::TPose2D::x.
Referenced by run_rnav_test(), and mrpt::utils::CRobotSimulator::simulateInterval().
|
protectedinherited |
Definition at line 112 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
Definition at line 112 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
Definition at line 110 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
Definition at line 110 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
Definition at line 111 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
Definition at line 111 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
The period at which the low-level controller updates velocities (Default: 0.5 ms)
Definition at line 107 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
ground truth pose in world coordinates.
Definition at line 102 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::getCurrentGTVelLocal(), mrpt::kinematics::CVehicleSimulVirtualBase::resetStatus(), mrpt::kinematics::CVehicleSimulVirtualBase::setCurrentGTPose(), and mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
Velocity in (x,y,omega)
Definition at line 103 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::getCurrentGTVelLocal(), mrpt::kinematics::CVehicleSimulVirtualBase::resetStatus(), and mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
Velocity in (x,y,omega)
Definition at line 104 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::getCurrentOdometricVelLocal(), internal_simulControlStep(), mrpt::kinematics::CVehicleSimul_DiffDriven::internal_simulControlStep(), mrpt::kinematics::CVehicleSimulVirtualBase::resetStatus(), sendVelRampCmd(), and mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
Definition at line 105 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::getCurrentOdometricVelLocal(), internal_simulControlStep(), mrpt::kinematics::CVehicleSimul_DiffDriven::internal_simulControlStep(), mrpt::kinematics::CVehicleSimulVirtualBase::resetStatus(), and mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
simulation running time
Definition at line 101 of file CVehicleSimulVirtualBase.h.
Referenced by internal_simulControlStep(), mrpt::kinematics::CVehicleSimul_DiffDriven::internal_simulControlStep(), mrpt::kinematics::CVehicleSimul_DiffDriven::movementCommand(), mrpt::kinematics::CVehicleSimulVirtualBase::resetTime(), sendVelRampCmd(), and mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
protectedinherited |
Whether to corrupt odometry with noise.
Definition at line 109 of file CVehicleSimulVirtualBase.h.
Referenced by mrpt::kinematics::CVehicleSimulVirtualBase::simulateOneTimeStep().
|
private |
the last cmd received from the user.
Definition at line 57 of file CVehicleSimul_Holo.h.
Referenced by internal_clear(), internal_simulControlStep(), and sendVelRampCmd().
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 |