moveit2
The MoveIt Motion Planning Framework for ROS 2.
Loading...
Searching...
No Matches
kinematics_metrics.h
Go to the documentation of this file.
1/*********************************************************************
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2012, Willow Garage, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
17 * * Neither the name of Willow Garage nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *********************************************************************/
34
35/* Author: Sachin Chitta */
36
37#pragma once
38
40
43{
44MOVEIT_CLASS_FORWARD(KinematicsMetrics); // Defines KinematicsMetricsPtr, ConstPtr, WeakPtr... etc
45
51{
52public:
54 KinematicsMetrics(const moveit::core::RobotModelConstPtr& robot_model)
55 : robot_model_(robot_model), penalty_multiplier_(0.0)
56 {
57 }
58
66 bool getManipulabilityIndex(const moveit::core::RobotState& state, const std::string& group_name,
67 double& manipulability_index, bool translation = false) const;
68
77 const moveit::core::JointModelGroup* joint_model_group, double& manipulability_index,
78 bool translation = false) const;
79
88 bool getManipulabilityEllipsoid(const moveit::core::RobotState& state, const std::string& group_name,
89 Eigen::MatrixXcd& eigen_values, Eigen::MatrixXcd& eigen_vectors) const;
90
100 const moveit::core::JointModelGroup* joint_model_group,
101 Eigen::MatrixXcd& eigen_values, Eigen::MatrixXcd& eigen_vectors) const;
102
112 bool getManipulability(const moveit::core::RobotState& state, const std::string& group_name, double& condition_number,
113 bool translation = false) const;
114
124 bool getManipulability(const moveit::core::RobotState& state, const moveit::core::JointModelGroup* joint_model_group,
125 double& condition_number, bool translation = false) const;
126
127 void setPenaltyMultiplier(double multiplier)
128 {
129 penalty_multiplier_ = fabs(multiplier);
130 }
131
132 double getPenaltyMultiplier() const
133 {
134 return penalty_multiplier_;
135 }
136
137protected:
138 moveit::core::RobotModelConstPtr robot_model_;
139
140private:
153 double getJointLimitsPenalty(const moveit::core::RobotState& state,
154 const moveit::core::JointModelGroup* joint_model_group) const;
155
156 double penalty_multiplier_;
157};
158} // namespace kinematics_metrics
#define MOVEIT_CLASS_FORWARD(C)
Compute different kinds of metrics for kinematics evaluation. Currently includes manipulability.
bool getManipulability(const moveit::core::RobotState &state, const std::string &group_name, double &condition_number, bool translation=false) const
Get the manipulability = sigma_min/sigma_max where sigma_min and sigma_max are the smallest and large...
bool getManipulabilityIndex(const moveit::core::RobotState &state, const std::string &group_name, double &manipulability_index, bool translation=false) const
Get the manipulability for a given group at a given joint configuration.
KinematicsMetrics(const moveit::core::RobotModelConstPtr &robot_model)
Construct a KinematicsMetricss from a RobotModel.
moveit::core::RobotModelConstPtr robot_model_
bool getManipulabilityEllipsoid(const moveit::core::RobotState &state, const std::string &group_name, Eigen::MatrixXcd &eigen_values, Eigen::MatrixXcd &eigen_vectors) const
Get the (translation) manipulability ellipsoid for a given group at a given joint configuration.
Representation of a robot's state. This includes position, velocity, acceleration and effort.
Definition robot_state.h:90
Namespace for kinematics metrics.