Class Trajectory
Defined in File trajectory.hpp
Class Documentation
-
class Trajectory
Represents a smooth trajectory through a set of waypoints.
Public Functions
-
~Trajectory() noexcept
Destructor cleans up resources for trajectory.
-
inline size_t getJointCount() const
The number of independent position trajectories over the same time domain that are managed by this object.
-
inline size_t getWaypointCount() const
The number of fixed waypoints that each joint is moving through.
-
inline double getStartTime() const
Get the time (in seconds) at which the defined trajectory begins.
-
inline double getEndTime() const
Get the time (in seconds) at which the defined trajectory ends.
-
double getDuration() const
The time (in seconds) between the start and end of this trajectory.
-
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.
- Parameters:
time – The time for which the trajectory state is being queried. This should be between the start and end of the trajectory.
position – If not nullptr, this vector is filled in with the position along the trajectory for each joint at the given time.
velocity – If not nullptr, this vector is filled in with the velocity along the trajectory for each joint at the given time.
acceleration – If 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.
-
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.
- Parameters:
min_position – This vector is filled in with the minimum position reached by each joint over the entire trajectory.
max_position – This 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.
-
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.
- Parameters:
max_velocity – This 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.
-
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.
- Parameters:
max_acceleration – This 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.
Public Static Functions
-
static std::shared_ptr<Trajectory> createUnconstrainedQp(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).
- Parameters:
time_vector – A vector of desired times at which to reach each waypoint; this must be defined (and not NAN for any element).
positions – A 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.
velocities – An 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.
accelerations – An 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.
-
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.
- Parameters:
segment_times – A 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.
-
static Eigen::VectorXd waypointTimesToSegmentTimes(const Eigen::VectorXd &waypoint_times)
Converts a vector of time values at each waypoint to a vector of segment times.
- Parameters:
time_vector – A 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.
-
static inline 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.
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:
positions – A 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_velocities – A vector of maximum velocities for each joint. The size of this vector should match the number of joints.
max_accelerations – A vector of maximum accelerations for each joint. The size of this vector should match the number of joints.
fabian_constant – A constant used in the N-Fabian heuristic. Defaults to 6.5.
min_segment_time – Minimum 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.
-
static inline 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.
- Parameters:
positions – A 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_velocities – A vector of maximum velocities for each joint. The size of this vector should match the number of joints.
max_accelerations – A vector of maximum accelerations for each joint. The size of this vector should match the number of joints.
min_segment_time – Minimum 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.
-
~Trajectory() noexcept