HEBI C++ API  3.15.0
hebi::trajectory::Trajectory Class Referencefinal

Represents a smooth trajectory through a set of waypoints. More...

#include <trajectory.hpp>

Public Member Functions

 ~Trajectory () noexcept
 Destructor cleans up resources for trajectory. More...
 
size_t getJointCount () const
 The number of independent position trajectories over the same time domain that are managed by this object. More...
 
size_t getWaypointCount () const
 The number of fixed waypoints that each joint is moving through. More...
 
double getStartTime () const
 Get the time (in seconds) at which the defined trajectory begins. More...
 
double getEndTime () const
 Get the time (in seconds) at which the defined trajectory ends. More...
 
double getDuration () const
 The time (in seconds) between the start and end of this trajectory. More...
 
bool getState (double time, Eigen::VectorXd *position, Eigen::VectorXd *velocity, Eigen::VectorXd *acceleration) const
 Returns the position, velocity, and acceleration for a given point in time along the trajectory. More...
 
bool getMinMaxPosition (Eigen::VectorXd &min_position, Eigen::VectorXd &max_position)
 Returns the minimum and maximum positions reached by each joint over the entire trajectory. This can be useful for checking that a trajectory stays within specified bounds. More...
 
bool getMaxVelocity (Eigen::VectorXd &max_velocity)
 Returns the maximum absolute velocity reached by each joint over the entire trajectory. This can be useful for checking that a trajectory stays within specified velocity limits. More...
 
bool getMaxAcceleration (Eigen::VectorXd &max_acceleration)
 Returns the maximum absolute acceleration reached by each joint over the entire trajectory. This can be useful for checking that a trajectory stays within specified acceleration limits. More...
 

Static Public Member Functions

static std::shared_ptr< TrajectorycreateUnconstrainedQp (const Eigen::VectorXd &time_vector, const Eigen::MatrixXd &positions, const Eigen::MatrixXd *velocities=nullptr, const Eigen::MatrixXd *accelerations=nullptr)
 Creates a smooth trajectory through a set of waypoints (position velocity and accelerations defined at particular times). This trajectory wrapper object can create multi-dimensional trajectories (i.e., multiple joints moving together using the same time reference). More...
 
static Eigen::VectorXd segmentTimesToWaypointTimes (const Eigen::VectorXd &segment_times)
 Converts a vector of segment times to a vector of time values at each waypoint. The first element of the vector is the time at which the trajectory starts is always 0.0. More...
 
static Eigen::VectorXd waypointTimesToSegmentTimes (const Eigen::VectorXd &waypoint_times)
 Converts a vector of time values at each waypoint to a vector of segment times. More...
 
static Eigen::VectorXd estimateSegmentTimesNFabian (const Eigen::MatrixXd &positions, const Eigen::VectorXd &max_velocities, const Eigen::VectorXd &max_accelerations, double fabian_constant=6.5, double min_segment_time=0.01)
 Estimates the time required to move between waypoints using the N-Fabian method. It uses the both distance/v_max and v_max/a_max ratios with a heuristic to determine the segment times. More...
 
static Eigen::VectorXd estimateSegmentTimesTrapezoidal (const Eigen::MatrixXd &positions, const Eigen::VectorXd &max_velocities, const Eigen::VectorXd &max_accelerations, double min_segment_time=0.01)
 Estimates the time required to move between waypoints based on the trapezoidal velocity profiles and the maximum velocities and accelerations provided. It calculates the velocity assuming an instantaneous constant acceleration (max_acceleration) and then estimates the time to reach the maximum velocity (v_max) and the time to decelerate to zero velocity. More...
 

Detailed Description

Represents a smooth trajectory through a set of waypoints.

Constructor & Destructor Documentation

◆ ~Trajectory()

hebi::trajectory::Trajectory::~Trajectory ( )
noexcept

Destructor cleans up resources for trajectory.

Member Function Documentation

◆ createUnconstrainedQp()

std::shared_ptr< Trajectory > hebi::trajectory::Trajectory::createUnconstrainedQp ( const Eigen::VectorXd &  time_vector,
const Eigen::MatrixXd &  positions,
const Eigen::MatrixXd *  velocities = nullptr,
const Eigen::MatrixXd *  accelerations = nullptr 
)
static

Creates a smooth trajectory through a set of waypoints (position velocity and accelerations defined at particular times). This trajectory wrapper object can create multi-dimensional trajectories (i.e., multiple joints moving together using the same time reference).

Parameters
time_vectorA vector of desired times at which to reach each waypoint; this must be defined (and not NAN for any element).
positionsA matrix of waypoint joint positions (in SI units). The number of rows should be equal to the number of joints, and the number of columns equal to the number of waypoints. Any elements that are NAN will be considered free parameters when solving for a trajectory. Values of +/-infinity are not allowed.
velocitiesAn optional matrix of velocity constraints at the corresponding waypoints; should either be nullptr or matching the size of the positions matrix. Any elements that are NAN will be considered free parameters when solving for a trajectory. Values of +/-infinity are not allowed.
accelerationsAn optional matrix of acceleration constraints at the corresponding waypoints; should either be nullptr or matching the size of the positions matrix. Any elements that are NAN will be considered free parameters when solving for a trajectory. Values of +/-infinity are not allowed.
Returns
A HebiTrajectory object if there were no errors, and the trajectory has been created. An empty shared_ptr indicates that there was an error in creating the trajectory.

◆ getJointCount()

size_t hebi::trajectory::Trajectory::getJointCount ( ) const
inline

The number of independent position trajectories over the same time domain that are managed by this object.

◆ getWaypointCount()

size_t hebi::trajectory::Trajectory::getWaypointCount ( ) const
inline

The number of fixed waypoints that each joint is moving through.

◆ getStartTime()

double hebi::trajectory::Trajectory::getStartTime ( ) const
inline

Get the time (in seconds) at which the defined trajectory begins.

◆ getEndTime()

double hebi::trajectory::Trajectory::getEndTime ( ) const
inline

Get the time (in seconds) at which the defined trajectory ends.

◆ getDuration()

double hebi::trajectory::Trajectory::getDuration ( ) const

The time (in seconds) between the start and end of this trajectory.

◆ getState()

bool hebi::trajectory::Trajectory::getState ( double  time,
Eigen::VectorXd *  position,
Eigen::VectorXd *  velocity,
Eigen::VectorXd *  acceleration 
) const

Returns the position, velocity, and acceleration for a given point in time along the trajectory.

Parameters
timeThe time for which the trajectory state is being queried. This should be between the start and end of the trajectory.
positionIf not nullptr, this vector is filled in with the position along the trajectory for each joint at the given time.
velocityIf not nullptr, this vector is filled in with the velocity along the trajectory for each joint at the given time.
accelerationIf not nullptr, this vector is filled in with the acceleration along the trajectory for each joint at the given time.
Returns
True if the state was successfully retrieved for all joints, false if there was an error.

◆ getMinMaxPosition()

bool hebi::trajectory::Trajectory::getMinMaxPosition ( Eigen::VectorXd &  min_position,
Eigen::VectorXd &  max_position 
)

Returns the minimum and maximum positions reached by each joint over the entire trajectory. This can be useful for checking that a trajectory stays within specified bounds.

Parameters
min_positionThis vector is filled in with the minimum position reached by each joint over the entire trajectory.
max_positionThis vector is filled in with the maximum position reached by each joint over the entire trajectory.
Returns
True if the min and max positions were successfully retrieved for all joints, false if there was an error.

◆ getMaxVelocity()

bool hebi::trajectory::Trajectory::getMaxVelocity ( Eigen::VectorXd &  max_velocity)

Returns the maximum absolute velocity reached by each joint over the entire trajectory. This can be useful for checking that a trajectory stays within specified velocity limits.

Parameters
max_velocityThis vector is filled in with the maximum velocity reached by each joint over the entire trajectory.
Returns
True if the max velocities were successfully retrieved for all joints, false if there was an error.

◆ getMaxAcceleration()

bool hebi::trajectory::Trajectory::getMaxAcceleration ( Eigen::VectorXd &  max_acceleration)

Returns the maximum absolute acceleration reached by each joint over the entire trajectory. This can be useful for checking that a trajectory stays within specified acceleration limits.

Parameters
max_accelerationThis vector is filled in with the maximum acceleration reached by each joint over the entire trajectory.
Returns
True if the max accelerations were successfully retrieved for all joints, false if there was an error.

◆ segmentTimesToWaypointTimes()

VectorXd hebi::trajectory::Trajectory::segmentTimesToWaypointTimes ( const Eigen::VectorXd &  segment_times)
static

Converts a vector of segment times to a vector of time values at each waypoint. The first element of the vector is the time at which the trajectory starts is always 0.0.

Parameters
segment_timesA vector of segment times, where each element represents the duration of a segment between waypoints. Values must be finite, i.e., not NaN or +/- infinity.
Returns
A vector of time values at each waypoint, or throws an exception if the input vector is empty or contains invalid values.

◆ waypointTimesToSegmentTimes()

VectorXd hebi::trajectory::Trajectory::waypointTimesToSegmentTimes ( const Eigen::VectorXd &  waypoint_times)
static

Converts a vector of time values at each waypoint to a vector of segment times.

Parameters
time_vectorA vector of time values at each waypoint. Values must be finite, i.e., not NaN or +/- infinity.
Returns
A vector of segment times, or throws an exception if the input vector is empty or contains invalid values.

◆ estimateSegmentTimesNFabian()

static Eigen::VectorXd hebi::trajectory::Trajectory::estimateSegmentTimesNFabian ( const Eigen::MatrixXd &  positions,
const Eigen::VectorXd &  max_velocities,
const Eigen::VectorXd &  max_accelerations,
double  fabian_constant = 6.5,
double  min_segment_time = 0.01 
)
inlinestatic

Estimates the time required to move between waypoints using the N-Fabian method. It uses the both distance/v_max and v_max/a_max ratios with a heuristic to determine the segment times.

t_est = 2 * distance/v_max * (1 + magic_fabian_constant * v_max/a_max

  • exp(-distance/v_max * 2);

The method assumes that the segment starts and ends with zero velocity and acceleration.

Parameters
positionsA matrix of waypoint joint positions. The number of rows should be equal to the number of joints, and the number of columns equal to the number of waypoints. Values of +/-infinity are not allowed.
max_velocitiesA vector of maximum velocities for each joint. The size of this vector should match the number of joints.
max_accelerationsA vector of maximum accelerations for each joint. The size of this vector should match the number of joints.
fabian_constantA constant used in the N-Fabian heuristic. Defaults to 6.5.
min_segment_timeMinimum allowed segment duration. Any estimated time below this value will be clipped. Must be a finite non-negative value. Defaults to 0.01.
Returns
A vector of estimated segment times, or throws an exception if the input matrix is empty or contains invalid values.

◆ estimateSegmentTimesTrapezoidal()

static Eigen::VectorXd hebi::trajectory::Trajectory::estimateSegmentTimesTrapezoidal ( const Eigen::MatrixXd &  positions,
const Eigen::VectorXd &  max_velocities,
const Eigen::VectorXd &  max_accelerations,
double  min_segment_time = 0.01 
)
inlinestatic

Estimates the time required to move between waypoints based on the trapezoidal velocity profiles and the maximum velocities and accelerations provided. It calculates the velocity assuming an instantaneous constant acceleration (max_acceleration) and then estimates the time to reach the maximum velocity (v_max) and the time to decelerate to zero velocity.

Parameters
positionsA matrix of waypoint joint positions. The number of rows should be equal to the number of joints, and the number of columns equal to the number of waypoints. Values of +/-infinity are not allowed.
max_velocitiesA vector of maximum velocities for each joint. The size of this vector should match the number of joints.
max_accelerationsA vector of maximum accelerations for each joint. The size of this vector should match the number of joints.
min_segment_timeMinimum allowed segment duration. Any estimated time below this value will be clipped. Must be a finite non-negative value. Defaults to 0.01.
Returns
A vector of estimated segment times, or throws an exception if the input matrix is empty or contains invalid values.

The documentation for this class was generated from the following files: