Franky 0.12.0
A High-Level Motion API for Franka
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | List of all members
franky::WaypointMotion< ControlSignalType, WaypointType, TargetType > Class Template Referenceabstract

A motion following multiple waypoints in a time-optimal way. Works with arbitrary initial conditions. More...

#include <waypoint_motion.hpp>

Inheritance diagram for franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >:
franky::Motion< ControlSignalType > franky::PositionWaypointMotion< franka::CartesianPose, CartesianState > franky::PositionWaypointMotion< franka::JointPositions, JointState > franky::VelocityWaypointMotion< franka::CartesianVelocities, RobotVelocity > franky::VelocityWaypointMotion< franka::JointVelocities, Vector7d > franky::CartesianWaypointMotion franky::JointWaypointMotion franky::CartesianVelocityWaypointMotion franky::JointVelocityWaypointMotion franky::CartesianMotion franky::StopMotion< franka::CartesianPose > franky::JointMotion franky::CartesianVelocityMotion franky::JointVelocityMotion franky::StopMotion< franka::JointPositions > franky::StopMotion< franka::CartesianVelocities > franky::StopMotion< franka::JointVelocities >

Public Member Functions

 WaypointMotion (std::vector< WaypointType > waypoints, bool return_when_finished=true)
 
- Public Member Functions inherited from franky::Motion< ControlSignalType >
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.
 

Protected Member Functions

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 extrapolateMotion (const franka::Duration &time_step, const ruckig::InputParameter< 7 > &input_parameter, ruckig::OutputParameter< 7 > &output_parameter) const =0
 
virtual void checkWaypoint (const WaypointType &waypoint) const
 
virtual std::tuple< Vector7d, Vector7d, Vector7dgetStateEstimate (const RobotState &robot_state) const =0
 
virtual std::tuple< Vector7d, Vector7d, Vector7dgetAbsoluteInputLimits () 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
 
virtual void setInputLimits (const WaypointType &waypoint, ruckig::InputParameter< 7 > &input_parameter) const =0
 
- Protected Member Functions inherited from franky::Motion< ControlSignalType >
 Motion ()
 
Robotrobot () const
 

Additional Inherited Members

- Public Types inherited from franky::Motion< ControlSignalType >
using CallbackType = std::function< void(const RobotState &, franka::Duration, franka::Duration, franka::Duration, const ControlSignalType &)>
 

Detailed Description

template<typename ControlSignalType, typename WaypointType, typename TargetType>
class franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >

A motion following multiple waypoints in a time-optimal way. Works with arbitrary initial conditions.

Template Parameters
ControlSignalTypeThe type of the control signal. Either franka::Torques, franka::JointVelocities, franka::CartesianVelocities, franka::JointPositions or franka::CartesianPose.
WaypointTypeThe type of the waypoints. Must subclass Waypoint<TargetType>.
TargetTypeThe type of the target of the waypoints.

Constructor & Destructor Documentation

◆ WaypointMotion()

franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::WaypointMotion ( std::vector< WaypointType waypoints,
bool  return_when_finished = true 
)
inlineexplicit
Parameters
waypointsThe waypoints to follow.
return_when_finishedWhether to end the motion when the last waypoint is reached or keep holding the last target.

Member Function Documentation

◆ checkWaypoint()

◆ extrapolateMotion()

virtual void franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::extrapolateMotion ( const franka::Duration &  time_step,
const ruckig::InputParameter< 7 > &  input_parameter,
ruckig::OutputParameter< 7 > &  output_parameter 
) const
protectedpure virtual

◆ getAbsoluteInputLimits()

virtual std::tuple< Vector7d, Vector7d, Vector7d > franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::getAbsoluteInputLimits ( ) const
protectedpure virtual

◆ getControlSignal()

virtual ControlSignalType franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::getControlSignal ( const RobotState robot_state,
const franka::Duration &  time_step,
const std::optional< ControlSignalType > &  previous_command,
const ruckig::InputParameter< 7 > &  input_parameter 
)
protectedpure virtual

◆ getStateEstimate()

virtual std::tuple< Vector7d, Vector7d, Vector7d > franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::getStateEstimate ( const RobotState robot_state) const
protectedpure virtual

◆ initImpl()

void franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::initImpl ( const RobotState robot_state,
const std::optional< ControlSignalType > &  previous_command 
)
inlineoverrideprotectedvirtual

◆ initWaypointMotion()

virtual void franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::initWaypointMotion ( const RobotState robot_state,
const std::optional< ControlSignalType > &  previous_command,
ruckig::InputParameter< 7 > &  input_parameter 
)
protectedpure virtual

◆ nextCommandImpl()

ControlSignalType franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::nextCommandImpl ( const RobotState robot_state,
franka::Duration  time_step,
franka::Duration  rel_time,
franka::Duration  abs_time,
const std::optional< ControlSignalType > &  previous_command 
)
inlineoverrideprotectedvirtual

◆ setInputLimits()

virtual void franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::setInputLimits ( const WaypointType waypoint,
ruckig::InputParameter< 7 > &  input_parameter 
) const
protectedpure virtual

◆ setNewWaypoint()

virtual void franky::WaypointMotion< ControlSignalType, WaypointType, TargetType >::setNewWaypoint ( const RobotState robot_state,
const std::optional< ControlSignalType > &  previous_command,
const WaypointType new_waypoint,
ruckig::InputParameter< 7 > &  input_parameter 
)
protectedpure virtual

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