A motion following multiple positional waypoints in a time-optimal way. Works with arbitrary initial conditions.
More...
|
| PositionWaypointMotion (std::vector< PositionWaypoint< TargetType > > waypoints, const RelativeDynamicsFactor &relative_dynamics_factor=1.0, bool return_when_finished=true) |
|
| WaypointMotion (std::vector< PositionWaypoint< TargetType > > waypoints, bool return_when_finished=true) |
|
virtual | ~Motion ()=default |
|
void | addReaction (std::shared_ptr< Reaction< ControlSignalType > > reaction) |
| Add a reaction to the motion.
|
|
void | addReactionFront (std::shared_ptr< Reaction< ControlSignalType > > reaction) |
| Add a reaction to the front of the reaction list.
|
|
std::vector< std::shared_ptr< Reaction< ControlSignalType > > > | reactions () |
| Currently registered reactions of the motion.
|
|
void | registerCallback (CallbackType callback) |
| Register a callback that is called in every step of the motion.
|
|
void | init (Robot *robot, const RobotState &robot_state, const std::optional< ControlSignalType > &previous_command) |
| Initialize the motion.
|
|
ControlSignalType | nextCommand (const RobotState &robot_state, franka::Duration time_step, franka::Duration rel_time, franka::Duration abs_time, const std::optional< ControlSignalType > &previous_command) |
| Get the next command of the motion.
|
|
std::shared_ptr< Motion< ControlSignalType > > | checkAndCallReactions (const RobotState &robot_state, franka::Duration rel_time, franka::Duration abs_time) |
| Check and call reactions.
|
|
|
void | setInputLimits (const PositionWaypoint< TargetType > &waypoint, ruckig::InputParameter< 7 > &input_parameter) const override |
|
void | extrapolateMotion (const franka::Duration &time_step, const ruckig::InputParameter< 7 > &input_parameter, ruckig::OutputParameter< 7 > &output_parameter) const override |
|
std::tuple< Vector7d, Vector7d, Vector7d > | getAbsoluteInputLimits () const override=0 |
|
void | initImpl (const RobotState &robot_state, const std::optional< ControlSignalType > &previous_command) override |
|
ControlSignalType | nextCommandImpl (const RobotState &robot_state, franka::Duration time_step, franka::Duration rel_time, franka::Duration abs_time, const std::optional< ControlSignalType > &previous_command) override |
|
virtual void | initWaypointMotion (const RobotState &robot_state, const std::optional< ControlSignalType > &previous_command, ruckig::InputParameter< 7 > &input_parameter)=0 |
|
virtual void | setNewWaypoint (const RobotState &robot_state, const std::optional< ControlSignalType > &previous_command, const PositionWaypoint< TargetType > &new_waypoint, ruckig::InputParameter< 7 > &input_parameter)=0 |
|
virtual void | checkWaypoint (const PositionWaypoint< TargetType > &waypoint) const |
|
virtual std::tuple< Vector7d, Vector7d, Vector7d > | getStateEstimate (const RobotState &robot_state) const=0 |
|
virtual ControlSignalType | getControlSignal (const RobotState &robot_state, const franka::Duration &time_step, const std::optional< ControlSignalType > &previous_command, const ruckig::InputParameter< 7 > &input_parameter)=0 |
|
| Motion () |
|
Robot * | robot () const |
|
A motion following multiple positional waypoints in a time-optimal way. Works with arbitrary initial conditions.
- Template Parameters
-
ControlSignalType | The type of the control signal. Either franka::Torques, franka::JointVelocities, franka::CartesianVelocities, franka::JointPositions or franka::CartesianPose. |
TargetType | The type of the target of the waypoints. |