pr2_arm_ik.h
Go to the documentation of this file.
00001 /*********************************************************************
00002 *
00003 * Software License Agreement (BSD License)
00004 *
00005 *  Copyright (c) 2008, Willow Garage, Inc.
00006 *  All rights reserved.
00007 *
00008 *  Redistribution and use in source and binary forms, with or without
00009 *  modification, are permitted provided that the following conditions
00010 *  are met:
00011 *
00012 *   * Redistributions of source code must retain the above copyright
00013 *     notice, this list of conditions and the following disclaimer.
00014 *   * Redistributions in binary form must reproduce the above
00015 *     copyright notice, this list of conditions and the following
00016 *     disclaimer in the documentation and/or other materials provided
00017 *     with the distribution.
00018 *   * Neither the name of Willow Garage, Inc. nor the names of its
00019 *     contributors may be used to endorse or promote products derived
00020 *     from this software without specific prior written permission.
00021 *
00022 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00023 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00024 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00025 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00026 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00027 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00028 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00029 *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00030 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00031 *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00032 *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00033 *  POSSIBILITY OF SUCH DAMAGE.
00034 *
00035 *********************************************************************/
00036 
00037 /* Author: Sachin Chitta */
00038 
00039 #ifndef MOVEIT_PR2_ARM_IK_H
00040 #define MOVEIT_PR2_ARM_IK_H
00041 
00042 #include <urdf/model.h>
00043 #include <Eigen/Core>
00044 #include <Eigen/LU>// provides LU decomposition
00045 #include <kdl/chainiksolver.hpp>
00046 #include <moveit/pr2_arm_kinematics/pr2_arm_kinematics_utils.h>
00047 #include <moveit/pr2_arm_kinematics/pr2_arm_kinematics_constants.h>
00048 
00049 
00050 namespace pr2_arm_kinematics
00051 {
00052 class PR2ArmIK
00053 {
00054 public:
00055 
00061   PR2ArmIK();
00062   ~PR2ArmIK(){};
00063 
00071   bool init(const urdf::Model &robot_model, const std::string &root_name, const std::string &tip_name);
00072 
00078   void computeIKShoulderPan(const Eigen::Matrix4f &g_in, const double &shoulder_pan_initial_guess,std::vector<std::vector<double> > &solution) const;
00079 
00085   void computeIKShoulderRoll(const Eigen::Matrix4f &g_in, const double &shoulder_roll_initial_guess,std::vector<std::vector<double> > &solution) const;
00086 
00087 
00088   //  std::vector<std::vector<double> > solution_ik_;/// a vector of ik solutions
00089 
00094   void getSolverInfo(moveit_msgs::KinematicSolverInfo &info);
00095 
00099   moveit_msgs::KinematicSolverInfo solver_info_;
00100 
00101   EIGEN_MAKE_ALIGNED_OPERATOR_NEW
00102 
00103   private:
00104 
00105   void addJointToChainInfo(boost::shared_ptr<const urdf::Joint> joint,moveit_msgs::KinematicSolverInfo &info);
00106 
00107   bool checkJointLimits(const std::vector<double> &joint_values) const;
00108 
00109   bool checkJointLimits(const double &joint_value, const int &joint_num) const;
00110 
00111   Eigen::Matrix4f grhs_, gf_, home_inv_, home_;
00112 
00113   std::vector<double> angle_multipliers_;
00114 
00115   std::vector<double> solution_;
00116 
00117   double shoulder_upperarm_offset_, upperarm_elbow_offset_, elbow_wrist_offset_, shoulder_wrist_offset_, shoulder_elbow_offset_, torso_shoulder_offset_x_, torso_shoulder_offset_y_, torso_shoulder_offset_z_;
00118 
00119   std::vector<double> min_angles_;
00120 
00121   std::vector<double> max_angles_;
00122 
00123   std::vector<bool> continuous_joint_;
00124 
00125 };
00126 }
00127 #endif// PR2_ARM_IK_H


pr2_moveit_plugins
Author(s): Ioan Sucan , Sachin Chitta
autogenerated on Mon Oct 6 2014 11:14:04