Franky 0.12.0
A High-Level Motion API for Franka
Loading...
Searching...
No Matches
stop_motion.hpp
Go to the documentation of this file.
1#pragma once
2
8
9namespace franky {
10
11template <typename ControlSignalType>
13
17template <>
18class StopMotion<franka::JointPositions> : public JointMotion {
19 public:
25 explicit StopMotion(
26 const RelativeDynamicsFactor &relative_dynamics_factor = 1.0, double state_estimation_weight = 0.0)
28 JointState(Vector7d::Zero()), state_estimation_weight, ReferenceType::kRelative, relative_dynamics_factor) {
29 }
30};
31
35template <>
37 public:
44 explicit StopMotion(const RelativeDynamicsFactor &relative_dynamics_factor = 1.0, double state_estimate_weight = 0.0)
45 : JointVelocityMotion(Vector7d::Zero(), franka::Duration(0), state_estimate_weight, relative_dynamics_factor) {}
46};
47
51template <>
53 public:
60 explicit StopMotion(const RelativeDynamicsFactor &relative_dynamics_factor = 1.0, double state_estimate_weight = 0.0)
63 {.target = RobotPose(),
64 .hold_target_duration = franka::Duration(50),
65 .state_estimate_weight = state_estimate_weight},
67 relative_dynamics_factor) {}
68};
69
73template <>
75 public:
82 explicit StopMotion(const RelativeDynamicsFactor &relative_dynamics_factor = 1.0, double state_estimate_weight = 0.0)
83 : CartesianVelocityMotion(RobotVelocity(), franka::Duration(0), state_estimate_weight, relative_dynamics_factor) {
84 }
85};
86
87} // namespace franky
Cartesian velocity motion with a single target velocity.
Definition cartesian_velocity_motion.hpp:10
Cartesian waypoint motion.
Definition cartesian_waypoint_motion.hpp:23
Joint motion with a single target.
Definition joint_motion.hpp:12
Joint state of a robot.
Definition joint_state.hpp:15
Joint velocity motion with a single target.
Definition joint_velocity_motion.hpp:11
Relative dynamics factors.
Definition relative_dynamics_factor.hpp:13
Cartesian pose of a robot.
Definition robot_pose.hpp:17
Cartesian velocity of a robot.
Definition robot_velocity.hpp:19
StopMotion(const RelativeDynamicsFactor &relative_dynamics_factor=1.0, double state_estimate_weight=0.0)
Definition stop_motion.hpp:60
StopMotion(const RelativeDynamicsFactor &relative_dynamics_factor=1.0, double state_estimate_weight=0.0)
Definition stop_motion.hpp:82
StopMotion(const RelativeDynamicsFactor &relative_dynamics_factor=1.0, double state_estimation_weight=0.0)
Definition stop_motion.hpp:25
StopMotion(const RelativeDynamicsFactor &relative_dynamics_factor=1.0, double state_estimate_weight=0.0)
Definition stop_motion.hpp:44
Definition stop_motion.hpp:12
Definition dynamics_limit.cpp:8
std::array< double, dims > toStdD(const Eigen::Matrix< double, dims, 1 > &vector)
Definition util.hpp:18
ReferenceType
Enum class for reference types.
Definition reference_type.hpp:10
Eigen::Vector< double, 7 > Vector7d
Definition types.hpp:12
@ CartesianVelocities
Definition control_signal_type.hpp:12
@ CartesianPose
Definition control_signal_type.hpp:13
@ JointVelocities
Definition control_signal_type.hpp:10
@ JointPositions
Definition control_signal_type.hpp:11
A position waypoint with a target and optional parameters.
Definition position_waypoint_motion.hpp:20
TargetType target
Definition waypoint_motion.hpp:39