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

Base class for motions. More...

#include <motion.hpp>

Inheritance diagram for franky::Motion< ControlSignalType >:
franky::WaypointMotion< franka::CartesianVelocities, VelocityWaypoint< RobotVelocity >, RobotVelocity > franky::WaypointMotion< franka::CartesianPose, PositionWaypoint< CartesianState >, CartesianState > franky::WaypointMotion< franka::JointVelocities, VelocityWaypoint< Vector7d >, Vector7d > franky::WaypointMotion< franka::JointPositions, PositionWaypoint< JointState >, JointState > franky::WaypointMotion< ControlSignalType, PositionWaypoint< TargetType >, TargetType > franky::WaypointMotion< ControlSignalType, VelocityWaypoint< TargetType >, TargetType > franky::WaypointMotion< ControlSignalType, WaypointType, TargetType > franky::PositionWaypointMotion< ControlSignalType, TargetType > franky::VelocityWaypointMotion< ControlSignalType, TargetType > 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 Types

using CallbackType = std::function< void(const RobotState &, franka::Duration, franka::Duration, franka::Duration, const ControlSignalType &)>
 

Public Member Functions

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

 Motion ()
 
virtual void initImpl (const RobotState &robot_state, const std::optional< ControlSignalType > &previous_command)
 
virtual ControlSignalType nextCommandImpl (const RobotState &robot_state, franka::Duration time_step, franka::Duration rel_time, franka::Duration abs_time, const std::optional< ControlSignalType > &previous_command)=0
 
Robotrobot () const
 

Detailed Description

template<typename ControlSignalType>
class franky::Motion< ControlSignalType >

Base class for motions.

Template Parameters
ControlSignalTypeControl signal type of the motion. Either franka::Torques, franka::JointVelocities, franka::CartesianVelocities, franka::JointPositions or franka::CartesianPose.

Member Typedef Documentation

◆ CallbackType

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

Constructor & Destructor Documentation

◆ ~Motion()

◆ Motion()

franky::Motion< ControlSignalType >::Motion ( )
explicitprotected

Member Function Documentation

◆ addReaction()

void franky::Motion< ControlSignalType >::addReaction ( std::shared_ptr< Reaction< ControlSignalType > >  reaction)

Add a reaction to the motion.

Reactions are evaluated in every step of the motion and can replace the current motion with a new motion.

Parameters
reactionThe reaction to add.

◆ addReactionFront()

void franky::Motion< ControlSignalType >::addReactionFront ( std::shared_ptr< Reaction< ControlSignalType > >  reaction)

Add a reaction to the front of the reaction list.

Reactions are evaluated in every step of the motion and can replace the current motion with a new motion.

Parameters
reactionThe reaction to add.

◆ checkAndCallReactions()

std::shared_ptr< Motion< ControlSignalType > > franky::Motion< ControlSignalType >::checkAndCallReactions ( const RobotState robot_state,
franka::Duration  rel_time,
franka::Duration  abs_time 
)

Check and call reactions.

Parameters
robot_stateThe current robot state.
rel_timeThe relative time.
abs_timeThe absolute time [s].
Returns
The new motion if a reaction was triggered, nullptr otherwise.

◆ init()

void franky::Motion< ControlSignalType >::init ( Robot robot,
const RobotState robot_state,
const std::optional< ControlSignalType > &  previous_command 
)

Initialize the motion.

Parameters
robotThe robot instance.
robot_stateThe current robot state.
previous_commandThe previous command.

◆ initImpl()

virtual void franky::Motion< ControlSignalType >::initImpl ( const RobotState robot_state,
const std::optional< ControlSignalType > &  previous_command 
)
inlineprotectedvirtual

◆ nextCommand()

ControlSignalType franky::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.

Parameters
robot_stateThe current robot state.
time_stepThe time step [s].
rel_timeThe relative time.
abs_timeThe absolute time [s].
previous_commandThe previous command.
Returns
The next control signal for libfranka.

◆ nextCommandImpl()

virtual ControlSignalType franky::Motion< ControlSignalType >::nextCommandImpl ( const RobotState robot_state,
franka::Duration  time_step,
franka::Duration  rel_time,
franka::Duration  abs_time,
const std::optional< ControlSignalType > &  previous_command 
)
protectedpure virtual

◆ reactions()

std::vector< std::shared_ptr< Reaction< ControlSignalType > > > franky::Motion< ControlSignalType >::reactions ( )

Currently registered reactions of the motion.

◆ registerCallback()

void franky::Motion< ControlSignalType >::registerCallback ( CallbackType  callback)

Register a callback that is called in every step of the motion.

Parameters
callbackThe callback to register. Callbacks are called with the robot state, the time step [s], the relative time [s], the absolute time [s] and the control signal computed in this step.

◆ robot()

Robot * franky::Motion< ControlSignalType >::robot ( ) const
inlineprotected

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