common.h
Go to the documentation of this file.
1 /**
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @author Jianfeng Gao ( jianfeng dot gao at kit dot edu )
17  * @date 2022
18  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19  * GNU General Public License
20  */
21 
22 #pragma once
23 
24 
25 #include <vector>
26 
27 #include <Eigen/Core>
28 
30 {
31 
32  struct RobotStatus
33  {
34  // TODO, remove std vector version
35  std::vector<float> jointPosition;
36  std::vector<float> jointVelocity;
37  std::vector<float> jointTorque;
38  Eigen::VectorXf jointPos;
39  Eigen::VectorXf jointVel;
40  Eigen::VectorXf jointTor;
41  double deltaT = 0;
42  double accumulateTime = 0.0;
43  unsigned int numJoints;
44  };
45 
47  {
49  std::vector<float> jointValuesFullRobot;
50  };
51 
53  {
54  std::vector<float> targets;
55  };
56 
57  inline Eigen::MatrixXf
58  computeJointLimitWeightMatrix(const Eigen::Ref<const Eigen::VectorXf>& jointAngles,
59  const Eigen::Ref<const Eigen::VectorXf>& jointLimitsLow,
60  const Eigen::Ref<const Eigen::VectorXf>& jointLimitsHigh,
61  Eigen::VectorXf& jointAngleLimitGradient)
62  {
63  // temporally copied from simox control
64  // Based on "A weighted least-norm solution based scheme for avoiding joint limits for redundant joint manipulators", T.F.Chan (1995)
65  int nbJoints = jointAngles.size();
66  Eigen::VectorXf weights(nbJoints);
67  Eigen::VectorXf gradient = Eigen::VectorXf::Zero(nbJoints);
68 
69  if (jointAngleLimitGradient.rows() == 0)
70  {
71  jointAngleLimitGradient = Eigen::VectorXf::Zero(nbJoints);
72  }
73 
74  for (int i = 0; i < nbJoints; i++)
75  {
76  if ((jointLimitsLow(i) == 0 && jointLimitsHigh(i) == 0) || jointLimitsHigh(i) > 1e8)
77  {
78  // Joint is limitless
79  weights(i) = 1.;
80  }
81  else
82  {
83  gradient(i) = std::pow(jointLimitsHigh(i) - jointLimitsLow(i), 2) *
84  (2 * jointAngles(i) - jointLimitsHigh(i) - jointLimitsLow(i)) /
85  (4 * std::pow(jointLimitsHigh(i) - jointAngles(i), 2) *
86  std::pow(jointAngles(i) - jointLimitsLow(i), 2));
87 
88  if ((std::abs(gradient(i)) - std::abs(jointAngleLimitGradient(i))) >= 0.)
89  {
90  // Joint going towards limits
91  weights(i) = 1. / std::sqrt((1. + std::abs(gradient(i))));
92  }
93  else
94  {
95  // Joint going towards the center
96  weights(i) = 1.;
97  }
98  }
99  }
100  jointAngleLimitGradient = gradient;
101  return weights.asDiagonal();
102  }
103 
104 
105 } // namespace armarx::control::common::control_law
armarx::control::common::control_law::RobotStatus::jointTor
Eigen::VectorXf jointTor
Definition: common.h:40
armarx::control::common::control_law::ControlTarget::targets
std::vector< float > targets
Definition: common.h:54
armarx::control::common::control_law::RobotStatus::jointTorque
std::vector< float > jointTorque
Definition: common.h:37
GfxTL::Matrix4f
MatrixXX< 4, 4, float > Matrix4f
Definition: MatrixXX.h:650
armarx::control::common::control_law::RobotStatus::jointPos
Eigen::VectorXf jointPos
Definition: common.h:38
armarx::control::common::control_law::RobotStatus::jointVelocity
std::vector< float > jointVelocity
Definition: common.h:36
armarx::control::common::control_law::VirtualRobotStatus::globalPose
Eigen::Matrix4f globalPose
Definition: common.h:48
armarx::control::common::control_law::VirtualRobotStatus::jointValuesFullRobot
std::vector< float > jointValuesFullRobot
Definition: common.h:49
armarx::abs
std::vector< T > abs(const std::vector< T > &v)
Definition: VectorHelpers.h:281
armarx::control::common::control_law::RobotStatus
Definition: common.h:32
armarx::control::common::control_law::VirtualRobotStatus
Definition: common.h:46
armarx::control::common::control_law::RobotStatus::jointVel
Eigen::VectorXf jointVel
Definition: common.h:39
armarx::control::common::control_law
This file is part of ArmarX.
Definition: aron_conversions.cpp:68
armarx::control::common::control_law::RobotStatus::jointPosition
std::vector< float > jointPosition
Definition: common.h:35
armarx::channels::KinematicUnitObserver::jointAngles
const KinematicUnitDatafieldCreator jointAngles("jointAngles")
GfxTL::sqrt
VectorXD< D, T > sqrt(const VectorXD< D, T > &a)
Definition: VectorXD.h:704
armarx::control::common::control_law::computeJointLimitWeightMatrix
Eigen::MatrixXf computeJointLimitWeightMatrix(const Eigen::Ref< const Eigen::VectorXf > &jointAngles, const Eigen::Ref< const Eigen::VectorXf > &jointLimitsLow, const Eigen::Ref< const Eigen::VectorXf > &jointLimitsHigh, Eigen::VectorXf &jointAngleLimitGradient)
Definition: common.h:58
armarx::control::common::control_law::RobotStatus::numJoints
unsigned int numJoints
Definition: common.h:43
armarx::control::common::control_law::ControlTarget
Definition: common.h:52
armarx::control::common::control_law::RobotStatus::accumulateTime
double accumulateTime
Definition: common.h:42
armarx::control::common::control_law::RobotStatus::deltaT
double deltaT
Definition: common.h:41