moveit2
The MoveIt Motion Planning Framework for ROS 2.
Classes | Functions
kinematic_constraints Namespace Reference

Representation and evaluation of kinematic constraints. More...

Classes

struct  ConstraintEvaluationResult
 Struct for containing the results of constraint evaluation. More...
 
class  KinematicConstraint
 Base class for representing a kinematic constraint. More...
 
class  JointConstraint
 Class for handling single DOF joint constraints. More...
 
class  OrientationConstraint
 Class for constraints on the orientation of a link. More...
 
class  PositionConstraint
 Class for constraints on the XYZ position of a link. More...
 
class  VisibilityConstraint
 Class for constraints on the visibility relationship between a sensor and a target. More...
 
class  KinematicConstraintSet
 A class that contains many different constraints, and can check RobotState *versus the full set. A set is satisfied if and only if all constraints are satisfied. More...
 

Functions

 MOVEIT_CLASS_FORWARD (KinematicConstraint)
 
 MOVEIT_CLASS_FORWARD (JointConstraint)
 
 MOVEIT_CLASS_FORWARD (OrientationConstraint)
 
 MOVEIT_CLASS_FORWARD (PositionConstraint)
 
 MOVEIT_CLASS_FORWARD (VisibilityConstraint)
 
 MOVEIT_CLASS_FORWARD (KinematicConstraintSet)
 
moveit_msgs::msg::Constraints mergeConstraints (const moveit_msgs::msg::Constraints &first, const moveit_msgs::msg::Constraints &second)
 Merge two sets of constraints into one. More...
 
bool isEmpty (const moveit_msgs::msg::Constraints &constr)
 Check if any constraints were specified. More...
 
std::size_t countIndividualConstraints (const moveit_msgs::msg::Constraints &constr)
 
moveit_msgs::msg::Constraints constructGoalConstraints (const moveit::core::RobotState &state, const moveit::core::JointModelGroup *jmg, double tolerance_below, double tolerance_above)
 Generates a constraint message intended to be used as a goal constraint for a joint group. The full constraint will contain a vector of type JointConstraint, one for each DOF in the group. More...
 
moveit_msgs::msg::Constraints constructGoalConstraints (const moveit::core::RobotState &state, const moveit::core::JointModelGroup *jmg, double tolerance=std::numeric_limits< double >::epsilon())
 Generates a constraint message intended to be used as a goal constraint for a joint group. The full constraint will contain a vector of type JointConstraint, one for each DOF in the group. More...
 
moveit_msgs::msg::Constraints constructGoalConstraints (const std::string &link_name, const geometry_msgs::msg::PoseStamped &pose, double tolerance_pos=1e-3, double tolerance_angle=1e-2)
 Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint will contain a PositionConstraint and a OrientationConstraint, constructed from the pose. A sphere will be used to represent the constraint region for the PositionConstraint. More...
 
moveit_msgs::msg::Constraints constructGoalConstraints (const std::string &link_name, const geometry_msgs::msg::PoseStamped &pose, const std::vector< double > &tolerance_pos, const std::vector< double > &tolerance_angle)
 Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint will contain a PositionConstraint and a OrientationConstraint, constructed from the pose. A box will be used to represent the constraint region for the PositionConstraint. More...
 
moveit_msgs::msg::Constraints constructGoalConstraints (const std::string &link_name, const geometry_msgs::msg::QuaternionStamped &quat, double tolerance=1e-2)
 Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint message will contain only an OrientationConstraint. More...
 
moveit_msgs::msg::Constraints constructGoalConstraints (const std::string &link_name, const geometry_msgs::msg::Point &reference_point, const geometry_msgs::msg::PointStamped &goal_point, double tolerance=1e-3)
 Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint message will contain only a PositionConstraint. A sphere will be used to represent the constraint region. More...
 
moveit_msgs::msg::Constraints constructGoalConstraints (const std::string &link_name, const geometry_msgs::msg::PointStamped &goal_point, double tolerance=1e-3)
 Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint message will contain only a PositionConstraint. A sphere will be used to represent the constraint region. More...
 
bool constructConstraints (const rclcpp::Node::SharedPtr &node, const std::string &constraints_param, moveit_msgs::msg::Constraints &constraints)
 extract constraint message from node parameters. More...
 
bool resolveConstraintFrames (const moveit::core::RobotState &state, moveit_msgs::msg::Constraints &constraints)
 Resolves frames used in constraints to links in the robot model. More...
 
template<typename Derived >
std::tuple< Eigen::Matrix< typename Eigen::MatrixBase< Derived >::Scalar, 3, 1 >, bool > CalcEulerAngles (const Eigen::MatrixBase< Derived > &R)
 

Detailed Description

Representation and evaluation of kinematic constraints.

Function Documentation

◆ CalcEulerAngles()

template<typename Derived >
std::tuple<Eigen::Matrix<typename Eigen::MatrixBase<Derived>::Scalar, 3, 1>, bool> kinematic_constraints::CalcEulerAngles ( const Eigen::MatrixBase< Derived > &  R)

This's copied from https://gitlab.com/libeigen/eigen/-/blob/master/unsupported/Eigen/src/EulerAngles/EulerSystem.h#L187 Return the intrinsic Roll-Pitch-Yaw euler angles given the input rotation matrix and boolean indicating whether the there's a singularity in the input rotation matrix (true: the input rotation matrix don't have a singularity, false: the input rotation matrix have a singularity) The returned angles are in the ranges [-pi:pi]x[-pi/2:pi/2]x[-pi:pi]

Definition at line 88 of file kinematic_constraint.cpp.

Here is the caller graph for this function:

◆ constructConstraints()

bool kinematic_constraints::constructConstraints ( const rclcpp::Node::SharedPtr &  node,
const std::string &  constraints_param,
moveit_msgs::msg::Constraints &  constraints 
)

extract constraint message from node parameters.

This can be used to construct a Constraints message from specifications provided from a yaml file. An example for a constraint yaml structure (loaded at constraint_param): """ name: constraint_name constraint_ids: [constraint_1, constraint_2] constraints: constraint_1: type: orientation frame_id: world link_name: tool0 orientation: [0, 0, 0] # [r, p, y] tolerances: [0.01, 0.01, 3.15] weight: 1.0 constraint_2: type: position frame_id: base_link link_name: tool0 target_offset: [0.1, 0.1, 0.1] # [x, y, z] region: x: [0.1, 0.4] # [min, max] y: [0.2, 0.3] z: [0.1, 0.6] weight: 1.0 """

Parameters
[in]paramsNode node to load the parameters from
[in]paramsstring namespace from where to load the constraints parameters
[out]constraintsThe constructed constraints message
Returns
was the construction successful?

Definition at line 521 of file utils.cpp.

◆ constructGoalConstraints() [1/7]

moveit_msgs::msg::Constraints kinematic_constraints::constructGoalConstraints ( const moveit::core::RobotState state,
const moveit::core::JointModelGroup jmg,
double  tolerance = std::numeric_limits<double>::epsilon() 
)

Generates a constraint message intended to be used as a goal constraint for a joint group. The full constraint will contain a vector of type JointConstraint, one for each DOF in the group.

Parameters
[in]stateThe state from which to generate goal joint constraints
[in]jmgThe group for which to generate joint constraints
[in]toleranceA tolerance to apply both above and below for all constraints
Returns
A full constraint message containing all the joint constraints

Definition at line 138 of file utils.cpp.

Here is the call graph for this function:

◆ constructGoalConstraints() [2/7]

moveit_msgs::msg::Constraints kinematic_constraints::constructGoalConstraints ( const moveit::core::RobotState state,
const moveit::core::JointModelGroup jmg,
double  tolerance_below,
double  tolerance_above 
)

Generates a constraint message intended to be used as a goal constraint for a joint group. The full constraint will contain a vector of type JointConstraint, one for each DOF in the group.

Parameters
[in]stateThe state from which to generate goal joint constraints
[in]jmgThe group for which to generate goal joint constraints
[in]tolerance_belowThe below tolerance to apply to all constraints
[in]tolerance_aboveThe above tolerance to apply to all constraints
Returns
A full constraint message containing all the joint constraints

Definition at line 144 of file utils.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ constructGoalConstraints() [3/7]

moveit_msgs::msg::Constraints kinematic_constraints::constructGoalConstraints ( const std::string &  link_name,
const geometry_msgs::msg::Point &  reference_point,
const geometry_msgs::msg::PointStamped &  goal_point,
double  tolerance = 1e-3 
)

Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint message will contain only a PositionConstraint. A sphere will be used to represent the constraint region.

Parameters
[in]link_nameThe link name for the PositionConstraint
[in]reference_pointA point corresponding to the target_point_offset of the PositionConstraint
[in]goal_pointThe position associated with the constraint region
[in]toleranceThe radius associated with the sphere volume associated with the constraint region
Returns
A full constraint message containing the position constraint

Definition at line 259 of file utils.cpp.

◆ constructGoalConstraints() [4/7]

moveit_msgs::msg::Constraints kinematic_constraints::constructGoalConstraints ( const std::string &  link_name,
const geometry_msgs::msg::PointStamped &  goal_point,
double  tolerance = 1e-3 
)

Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint message will contain only a PositionConstraint. A sphere will be used to represent the constraint region.

Parameters
[in]link_nameThe link name for the PositionConstraint
[in]goal_pointThe position associated with the constraint region
[in]toleranceThe radius associated with the sphere volume associated with the constraint region
Returns
A full constraint message containing the position constraint

Definition at line 248 of file utils.cpp.

Here is the call graph for this function:

◆ constructGoalConstraints() [5/7]

moveit_msgs::msg::Constraints kinematic_constraints::constructGoalConstraints ( const std::string &  link_name,
const geometry_msgs::msg::PoseStamped &  pose,
const std::vector< double > &  tolerance_pos,
const std::vector< double > &  tolerance_angle 
)

Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint will contain a PositionConstraint and a OrientationConstraint, constructed from the pose. A box will be used to represent the constraint region for the PositionConstraint.

Parameters
[in]link_nameThe link name for both constraints
[in]poseThe pose stamped to be used for the target region.
[in]tolerance_posThe dimensions of the box (xyz) associated with the target region of the PositionConstraint
[in]tolerance_angleThe values to assign to the absolute tolerances (xyz) of the OrientationConstraint
Returns
A full constraint message containing both constraints

Definition at line 206 of file utils.cpp.

Here is the call graph for this function:

◆ constructGoalConstraints() [6/7]

moveit_msgs::msg::Constraints kinematic_constraints::constructGoalConstraints ( const std::string &  link_name,
const geometry_msgs::msg::PoseStamped &  pose,
double  tolerance_pos = 1e-3,
double  tolerance_angle = 1e-2 
)

Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint will contain a PositionConstraint and a OrientationConstraint, constructed from the pose. A sphere will be used to represent the constraint region for the PositionConstraint.

Parameters
[in]link_nameThe link name for both constraints
[in]poseThe pose stamped to be used for the target region.
[in]tolerance_posThe dimension of the sphere associated with the target region of the PositionConstraint
[in]tolerance_angleThe value to assign to the absolute tolerances of the OrientationConstraint
Returns
A full constraint message containing both constraints

Definition at line 164 of file utils.cpp.

◆ constructGoalConstraints() [7/7]

moveit_msgs::msg::Constraints kinematic_constraints::constructGoalConstraints ( const std::string &  link_name,
const geometry_msgs::msg::QuaternionStamped &  quat,
double  tolerance = 1e-2 
)

Generates a constraint message intended to be used as a goal constraint for a given link. The full constraint message will contain only an OrientationConstraint.

Parameters
[in]link_nameThe link name for the OrientationConstraint
[in]quatThe quaternion for the OrientationConstraint
[in]toleranceThe absolute axes tolerances to apply to the OrientationConstraint
Returns
A full constraint message containing the orientation constraint

Definition at line 231 of file utils.cpp.

◆ countIndividualConstraints()

std::size_t kinematic_constraints::countIndividualConstraints ( const moveit_msgs::msg::Constraints &  constr)

Definition at line 132 of file utils.cpp.

◆ isEmpty()

bool kinematic_constraints::isEmpty ( const moveit_msgs::msg::Constraints &  constr)

Check if any constraints were specified.

Definition at line 127 of file utils.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ mergeConstraints()

moveit_msgs::msg::Constraints kinematic_constraints::mergeConstraints ( const moveit_msgs::msg::Constraints &  first,
const moveit_msgs::msg::Constraints &  second 
)

Merge two sets of constraints into one.

This just does appending of all constraints except joint constraints. For members of type JointConstraint, the bounds specified in the parameter first take precedence over parameter second

Parameters
[in]firstThe first constraint to merge
[in]secondThe second constraint to merge
Returns
The merged set of constraints

Definition at line 56 of file utils.cpp.

Here is the caller graph for this function:

◆ MOVEIT_CLASS_FORWARD() [1/6]

kinematic_constraints::MOVEIT_CLASS_FORWARD ( JointConstraint  )

◆ MOVEIT_CLASS_FORWARD() [2/6]

kinematic_constraints::MOVEIT_CLASS_FORWARD ( KinematicConstraint  )

◆ MOVEIT_CLASS_FORWARD() [3/6]

kinematic_constraints::MOVEIT_CLASS_FORWARD ( KinematicConstraintSet  )

◆ MOVEIT_CLASS_FORWARD() [4/6]

kinematic_constraints::MOVEIT_CLASS_FORWARD ( OrientationConstraint  )

◆ MOVEIT_CLASS_FORWARD() [5/6]

kinematic_constraints::MOVEIT_CLASS_FORWARD ( PositionConstraint  )

◆ MOVEIT_CLASS_FORWARD() [6/6]

kinematic_constraints::MOVEIT_CLASS_FORWARD ( VisibilityConstraint  )

◆ resolveConstraintFrames()

bool kinematic_constraints::resolveConstraintFrames ( const moveit::core::RobotState state,
moveit_msgs::msg::Constraints &  constraints 
)

Resolves frames used in constraints to links in the robot model.

The link_name field of a constraint is changed from the name of an object's frame or subframe to the name of the robot link that the object is attached to.

This is used in a planning request adapter which ensures that the planning problem is defined properly (the attached objects' frames are not known to the planner).

Parameters
[in]stateThe RobotState used to resolve frames.
[in]constraintsThe constraint to resolve.
Here is the caller graph for this function: