Skip to content

Commit 3aaf197

Browse files
committed
enable generic mass and inertia
1 parent d336215 commit 3aaf197

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cartesian_controller_base/src/ForwardDynamicsSolver.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -216,11 +216,11 @@ bool ForwardDynamicsSolver::buildGenericModel() {
216216

217217
// Only give the last segment a generic mass and inertia.
218218
// See https://arxiv.org/pdf/1908.06252.pdf for a motivation for this setting.
219-
// double m = 1;
220-
// double ip = 1;
221-
// m_chain.segments[m_chain.segments.size() - 1].setInertia(
222-
// KDL::RigidBodyInertia(m, KDL::Vector::Zero(),
223-
// KDL::RotationalInertia(ip, ip, ip)));
219+
double m = 1;
220+
double ip = 1;
221+
m_chain.segments[m_chain.segments.size() - 1].setInertia(
222+
KDL::RigidBodyInertia(m, KDL::Vector::Zero(),
223+
KDL::RotationalInertia(ip, ip, ip)));
224224

225225
return true;
226226
}

0 commit comments

Comments
 (0)