DART 6.10.1
Loading...
Searching...
No Matches
ServoMotorConstraint.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2011-2021, The DART development contributors
3 * All rights reserved.
4 *
5 * The list of contributors can be found at:
6 * https://github.com/dartsim/dart/blob/master/LICENSE
7 *
8 * This file is provided under the following "BSD-style" License:
9 * Redistribution and use in source and binary forms, with or
10 * without modification, are permitted provided that the following
11 * conditions are met:
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#ifndef DART_CONSTRAINT_SERVOMOTORCONSTRAINT_HPP_
34#define DART_CONSTRAINT_SERVOMOTORCONSTRAINT_HPP_
35
37
38namespace dart {
39
40namespace dynamics {
41class BodyNode;
42class Joint;
43} // namespace dynamics
44
45namespace constraint {
46
49{
50public:
53
55 virtual ~ServoMotorConstraint();
56
57 // Documentation inherited
58 const std::string& getType() const override;
59
61 static const std::string& getStaticType();
62
63 //----------------------------------------------------------------------------
64 // Property settings
65 //----------------------------------------------------------------------------
66
68 static void setConstraintForceMixing(double cfm);
69
71 static double getConstraintForceMixing();
72
73 //----------------------------------------------------------------------------
74 // Friendship
75 //----------------------------------------------------------------------------
76
77 friend class ConstraintSolver;
78 friend class ConstrainedGroup;
79
80protected:
81 //----------------------------------------------------------------------------
82 // Constraint virtual functions
83 //----------------------------------------------------------------------------
84
85 // Documentation inherited
86 void update() override;
87
88 // Documentation inherited
89 void getInformation(ConstraintInfo* lcp) override;
90
91 // Documentation inherited
92 void applyUnitImpulse(std::size_t index) override;
93
94 // Documentation inherited
95 void getVelocityChange(double* delVel, bool withCfm) override;
96
97 // Documentation inherited
98 void excite() override;
99
100 // Documentation inherited
101 void unexcite() override;
102
103 // Documentation inherited
104 void applyImpulse(double* lambda) override;
105
106 // Documentation inherited
107 dynamics::SkeletonPtr getRootSkeleton() const override;
108
109 // Documentation inherited
110 bool isActive() const override;
111
112private:
115
118
121
123 std::size_t mLifeTime[6];
124 // TODO(JS): Lifetime should be considered only when we use iterative lcp
125 // solver
126
128 bool mActive[6];
129
132
134 double mOldX[6];
135
137 double mUpperBound[6];
138
140 double mLowerBound[6];
141
146};
147
148} // namespace constraint
149} // namespace dart
150
151#endif // DART_CONSTRAINT_SERVOMOTORCONSTRAINT_HPP_
std::size_t index
Definition SkelParser.cpp:1672
ConstrainedGroup is a group of skeletons that interact each other with constraints.
Definition ConstrainedGroup.hpp:58
Constraint is a base class of concrete constraints classes.
Definition ConstraintBase.hpp:75
ConstraintSolver manages constraints and computes constraint impulses.
Definition ConstraintSolver.hpp:57
Servo motor constraint.
Definition ServoMotorConstraint.hpp:49
bool isActive() const override
Return true if this constraint is active.
Definition ServoMotorConstraint.cpp:287
void getVelocityChange(double *delVel, bool withCfm) override
Get velocity change due to the uint impulse.
Definition ServoMotorConstraint.cpp:218
double mUpperBound[6]
Definition ServoMotorConstraint.hpp:137
dynamics::Joint * mJoint
Definition ServoMotorConstraint.hpp:114
static double getConstraintForceMixing()
Get global constraint force mixing parameter.
Definition ServoMotorConstraint.cpp:111
double mOldX[6]
Definition ServoMotorConstraint.hpp:134
static void setConstraintForceMixing(double cfm)
Set global constraint force mixing parameter.
Definition ServoMotorConstraint.cpp:95
dynamics::BodyNode * mBodyNode
Definition ServoMotorConstraint.hpp:117
void unexcite() override
Unexcite the constraint.
Definition ServoMotorConstraint.cpp:255
static double mConstraintForceMixing
Global constraint force mixing parameter in the range of [1e-9, 1].
Definition ServoMotorConstraint.hpp:145
const std::string & getType() const override
Returns a string representing the constraint type.
Definition ServoMotorConstraint.cpp:82
void getInformation(ConstraintInfo *lcp) override
Fill LCP variables.
Definition ServoMotorConstraint.cpp:162
void applyImpulse(double *lambda) override
Apply computed constraint impulse to constrained skeletons.
Definition ServoMotorConstraint.cpp:261
double mLowerBound[6]
Definition ServoMotorConstraint.hpp:140
void update() override
Update constraint using updated Skeleton's states.
Definition ServoMotorConstraint.cpp:117
void excite() override
Excite the constraint.
Definition ServoMotorConstraint.cpp:249
void applyUnitImpulse(std::size_t index) override
Apply unit impulse to constraint space.
Definition ServoMotorConstraint.cpp:189
double mNegativeVelocityError[6]
Definition ServoMotorConstraint.hpp:131
dynamics::SkeletonPtr getRootSkeleton() const override
Definition ServoMotorConstraint.cpp:281
std::size_t mAppliedImpulseIndex
Index of applied impulse.
Definition ServoMotorConstraint.hpp:120
bool mActive[6]
Definition ServoMotorConstraint.hpp:128
virtual ~ServoMotorConstraint()
Destructor.
Definition ServoMotorConstraint.cpp:77
static const std::string & getStaticType()
Returns constraint type for this class.
Definition ServoMotorConstraint.cpp:88
std::size_t mLifeTime[6]
Definition ServoMotorConstraint.hpp:123
BodyNode class represents a single node of the skeleton.
Definition BodyNode.hpp:79
class Joint
Definition Joint.hpp:60
std::shared_ptr< Skeleton > SkeletonPtr
Definition SmartPointer.hpp:60
Definition BulletCollisionDetector.cpp:65
ConstraintInfo.
Definition ConstraintBase.hpp:50