|
| CartesianVelocityWaypointMotion (const std::vector< VelocityWaypoint< RobotVelocity > > &waypoints, const RelativeDynamicsFactor &relative_dynamics_factor=1.0, Affine ee_frame=Affine::Identity()) |
|
| VelocityWaypointMotion (std::vector< VelocityWaypoint< RobotVelocity > > waypoints, const RelativeDynamicsFactor &relative_dynamics_factor=1.0) |
|
| WaypointMotion (std::vector< WaypointType > 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 | checkWaypoint (const VelocityWaypoint< RobotVelocity > &waypoint) const override |
|
void | initWaypointMotion (const RobotState &robot_state, const std::optional< franka::CartesianVelocities > &previous_command, ruckig::InputParameter< 7 > &input_parameter) override |
|
void | setNewWaypoint (const RobotState &robot_state, const std::optional< franka::CartesianVelocities > &previous_command, const VelocityWaypoint< RobotVelocity > &new_waypoint, ruckig::InputParameter< 7 > &input_parameter) override |
|
std::tuple< Vector7d, Vector7d, Vector7d > | getAbsoluteInputLimits () const override |
|
franka::CartesianVelocities | getControlSignal (const RobotState &robot_state, const franka::Duration &time_step, const std::optional< franka::CartesianVelocities > &previous_command, const ruckig::InputParameter< 7 > &input_parameter) override |
|
virtual std::tuple< Vector7d, Vector7d, Vector7d > | getStateEstimate (const RobotState &robot_state) const override |
|
void | setInputLimits (const VelocityWaypoint< RobotVelocity > &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 |
|
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 WaypointType &new_waypoint, ruckig::InputParameter< 7 > &input_parameter)=0 |
|
virtual void | checkWaypoint (const WaypointType &waypoint) const |
|
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 |
|
virtual void | setInputLimits (const WaypointType &waypoint, ruckig::InputParameter< 7 > &input_parameter) const =0 |
|
| Motion () |
|
Robot * | robot () const |
|
Cartesian velocity waypoint motion.
This motion follows multiple consecutive cartesian velocity targets in a time-optimal way.