ODEJoint.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef _ODEJOINT_HH_
18 #define _ODEJOINT_HH_
19 
20 #include <boost/any.hpp>
21 #include <string>
22 
24 #include "gazebo/physics/Joint.hh"
25 #include "gazebo/util/system.hh"
26 
27 namespace gazebo
28 {
29  namespace physics
30  {
33 
35  class GZ_PHYSICS_VISIBLE ODEJoint : public Joint
36  {
38  public: enum CFMMode
39  {
41  NONE = 0x00000000,
43  DAMPING_ACTIVE = 0x00000001,
45  JOINT_LIMIT = 0x00000002
46  };
47 
50  public: explicit ODEJoint(BasePtr _parent);
51 
53  public: virtual ~ODEJoint();
54 
55  // Documentation inherited.
56  public: virtual void Load(sdf::ElementPtr _sdf);
57 
58  // Documentation inherited.
59  public: virtual void Fini();
60 
61  // Documentation inherited.
62  public: virtual void Reset();
63 
64  // Documentation inherited.
65  public: virtual LinkPtr GetJointLink(unsigned int _index) const;
66 
67  // Documentation inherited.
68  public: virtual bool AreConnected(LinkPtr _one, LinkPtr _two) const;
69 
70  // Documentation inherited.
71  public: virtual void CacheForceTorque();
72 
79  public: virtual double GetParam(unsigned int _parameter) const;
80 
87  public: virtual void SetParam(unsigned int _parameter, double _value);
88 
89  // Documentation inherited
90  public: virtual void SetDamping(unsigned int _index, double _damping);
91 
92  // Documentation inherited.
93  public: virtual bool SetPosition(
94  const unsigned int _index,
95  const double _position,
96  const bool _preserveWorldVelocity = false)
97  override;
98 
99  // Documentation inherited.
100  public: virtual void SetStiffness(unsigned int _index,
101  const double _stiffness);
102 
103  // Documentation inherited.
104  public: virtual void SetStiffnessDamping(unsigned int _index,
105  double _stiffness, double _damping, double _reference = 0);
106 
107  // Documentation inherited.
108  public: virtual void Attach(LinkPtr _parent, LinkPtr _child);
109 
110  // Documentation inherited.
111  public: virtual void Detach();
112 
115  public: void SetERP(double _erp);
116 
119  public: double GetERP();
120 
123  public: void SetCFM(double _cfm);
124 
127  public: double GetCFM();
128 
131  public: dJointFeedback *GetFeedback();
132 
135  public: bool UsesImplicitSpringDamper();
136 
139  public: void UseImplicitSpringDamper(const bool _implicit);
140 
143  public: void ApplyImplicitStiffnessDamping();
144 
146  public: void ApplyExplicitStiffnessDamping();
147 
150  public: double GetStopCFM()
151  {
152  return this->stopCFM;
153  }
154 
157  public: double GetStopERP()
158  {
159  return this->stopERP;
160  }
161 
171  private: double ApplyAdaptiveDamping(unsigned int _index,
172  const double _damping);
173 
180  private: void KpKdToCFMERP(const double _dt,
181  const double _kp, const double _kd,
182  double &_cfm, double &_erp);
183 
190  private: void CFMERPToKpKd(const double _dt,
191  const double _cfm, const double _erp,
192  double &_kp, double &_kd);
193 
195  private: int implicitDampingState[MAX_JOINT_AXIS];
196 
198  private: double currentKd[MAX_JOINT_AXIS];
199 
201  private: double currentKp[MAX_JOINT_AXIS];
202 
205  private: bool stiffnessDampingInitialized;
206 
208  private: bool useImplicitSpringDamper;
209 
210  // Documentation inherited.
211  public: virtual void SetUpperLimit(const unsigned int _index,
212  const double _limit);
213 
214  // Documentation inherited.
215  public: virtual void SetLowerLimit(const unsigned int _index,
216  const double _limit);
217 
218  // Documentation inherited.
219  public: virtual ignition::math::Vector3d LinkForce(
220  const unsigned int _index) const;
221 
222  // Documentation inherited.
223  public: virtual ignition::math::Vector3d LinkTorque(
224  const unsigned int _index) const;
225 
226  // Documentation inherited.
227  public: virtual void SetAxis(const unsigned int _index,
228  const ignition::math::Vector3d &_axis);
229 
230  // Documentation inherited.
231  public: virtual bool SetParam(const std::string &_key,
232  unsigned int _index,
233  const boost::any &_value);
234 
235  // Documentation inherited.
236  public: virtual double GetParam(const std::string &_key,
237  unsigned int _index);
238 
239  // Documentation inherited.
240  public: virtual void SetProvideFeedback(bool _enable);
241 
242  // Documentation inherited.
243  public: virtual JointWrench GetForceTorque(unsigned int _index);
244 
245  // Documentation inherited.
246  public: virtual void SetForce(unsigned int _index, double _force);
247 
248  // Documentation inherited.
249  public: virtual double GetForce(unsigned int _index);
250 
251  // Documentation inherited.
252  public: virtual void ApplyStiffnessDamping();
253 
254  // Documentation inherited.
263  protected: virtual void SetForceImpl(
264  unsigned int _index, double _force) = 0;
265 
269  private: void SaveForce(unsigned int _index, double _force);
270 
272  protected: dJointID jointId;
273 
275  private: dJointFeedback *feedback;
276 
278  private: double stopCFM;
279 
281  private: double stopERP;
282 
288  private: double forceApplied[MAX_JOINT_AXIS];
289 
292  private: common::Time forceAppliedTime;
293  };
295  }
296 }
297 #endif
boost::shared_ptr< Link > LinkPtr
Definition: PhysicsTypes.hh:109
double GetStopERP()
Get access to stopERP.
Definition: ODEJoint.hh:157
dJointID jointId
This is our ODE ID.
Definition: ODEJoint.hh:272
double GetStopCFM()
Get access to stopCFM.
Definition: ODEJoint.hh:150
CFMMode
internal variables used for implicit damping
Definition: ODEJoint.hh:38
#define MAX_JOINT_AXIS
maximum number of axis per joint anticipated.
Definition: Joint.hh:39
Base class for all joints.
Definition: Joint.hh:50
Wrench information from a joint.
Definition: JointWrench.hh:40
ODE joint interface.
Definition: ODEJoint.hh:35
boost::shared_ptr< Base > BasePtr
Definition: PhysicsTypes.hh:77
A Time class, can be used to hold wall- or sim-time.
Definition: Time.hh:44