1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
|
/*
* Copyright (c) 2011-2022, The DART development contributors
* All rights reserved.
*
* The list of contributors can be found at:
* https://github.com/dartsim/dart/blob/master/LICENSE
*
* This file is provided under the following "BSD-style" License:
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
// The tests in this file are inspired by the tests in:
// https://github.com/osrf/gazebo/blob/01b395a5fa92eb054c72f9a2027cdcfd35f287f4/test/integration/joint_force_torque.cc
#include <gtest/gtest.h>
#include "dart/dart.hpp"
#include "dart/utils/sdf/sdf.hpp"
#include "TestHelpers.hpp"
using namespace dart;
using namespace dart::math;
using namespace dart::dynamics;
using namespace dart::simulation;
using namespace dart::utils;
//==============================================================================
WorldPtr readWorld(const common::Uri& uri)
{
SdfParser::Options options;
options.mDefaultRootJointType = SdfParser::RootJointType::FIXED;
WorldPtr world = SdfParser::readWorld(uri, options);
world->eachSkeleton([](Skeleton* skel) {
skel->eachJoint([](Joint* joint) { joint->setLimitEnforcement(true); });
});
return world;
}
//==============================================================================
TEST(JointForceTorqueTest, Static)
{
// Load world
WorldPtr world = readWorld("dart://sample/sdf/test/force_torque_test.world");
ASSERT_NE(world, nullptr);
ASSERT_EQ(world->getNumSkeletons(), 1);
// Check if the world is correctly loaded
SkeletonPtr model_1 = world->getSkeleton(0);
ASSERT_NE(model_1, nullptr);
EXPECT_EQ(model_1->getName(), "model_1");
EXPECT_EQ(model_1->getNumBodyNodes(), 2);
EXPECT_EQ(model_1->getNumJoints(), 2);
world->setGravity(Eigen::Vector3d(0, 0, -50));
// Simulate 1 step
world->step();
double t = world->getTime();
// Get time step size
double dt = world->getTimeStep();
EXPECT_GT(dt, 0);
// Check that time moves forward
EXPECT_DOUBLE_EQ(t, dt);
// Get joint and get force torque
auto link_1 = model_1->getBodyNode("link_1");
ASSERT_NE(link_1, nullptr);
auto link_2 = model_1->getBodyNode("link_2");
ASSERT_NE(link_2, nullptr);
auto joint_01 = model_1->getJoint("joint_01");
ASSERT_NE(joint_01, nullptr);
auto joint_12 = model_1->getJoint("joint_12");
ASSERT_NE(joint_12, nullptr);
Eigen::Isometry3d tf = Eigen::Isometry3d::Identity();
// Run 10 steps
for (auto i = 0u; i < 10; ++i)
{
world->step();
//----------------------
// Test joint_01 wrench
//----------------------
// Reference adjustment for the difference of the joint frame conventions
// between Gazebo and DART
tf.setIdentity();
tf.translation() = joint_01->getTransformFromParentBodyNode().translation();
SimpleFramePtr parentFrame01
= std::make_shared<SimpleFrame>(Frame::World(), "parentFrame01", tf);
tf.setIdentity();
tf.translation() = joint_01->getTransformFromChildBodyNode().translation();
SimpleFramePtr childFrame01
= std::make_shared<SimpleFrame>(link_1, "childFrame01", tf);
const Eigen::Vector6d parentF01
= joint_01->getWrenchToParentBodyNode(parentFrame01.get());
EXPECT_DOUBLE_EQ(parentF01[0], 0); // torque
EXPECT_DOUBLE_EQ(parentF01[1], 0);
EXPECT_DOUBLE_EQ(parentF01[2], 0);
EXPECT_DOUBLE_EQ(parentF01[3], 0); // force
EXPECT_DOUBLE_EQ(parentF01[4], 0);
EXPECT_DOUBLE_EQ(parentF01[5], 1000);
const Eigen::Vector6d childF01
= joint_01->getWrenchToChildBodyNode(childFrame01.get());
EXPECT_EQ(childF01, -parentF01);
//----------------------
// Test joint_12 wrench
//----------------------
// Reference adjustment for the difference of the joint frame conventions
// between Gazebo and DART
tf.setIdentity();
tf.translation() = joint_12->getTransformFromParentBodyNode().translation();
SimpleFramePtr parentFrame12
= std::make_shared<SimpleFrame>(link_1, "parentFrame12", tf);
tf.setIdentity();
tf.translation() = joint_12->getTransformFromChildBodyNode().translation();
SimpleFramePtr childFrame12
= std::make_shared<SimpleFrame>(link_2, "childFrame12", tf);
const Eigen::Vector6d parentF12
= joint_12->getWrenchToParentBodyNode(parentFrame12.get());
EXPECT_DOUBLE_EQ(parentF12[0], 0); // torque
EXPECT_DOUBLE_EQ(parentF12[1], 0);
EXPECT_DOUBLE_EQ(parentF12[2], 0);
EXPECT_DOUBLE_EQ(parentF12[3], 0); // force
EXPECT_DOUBLE_EQ(parentF12[4], 0);
EXPECT_DOUBLE_EQ(parentF12[5], 500);
const Eigen::Vector6d childF12
= joint_12->getWrenchToChildBodyNode(childFrame01.get());
EXPECT_EQ(childF12, -parentF12);
}
}
//==============================================================================
TEST(JointForceTorqueTest, ForceTorqueAtJointLimits)
{
// Load world
WorldPtr world = readWorld("dart://sample/sdf/test/force_torque_test.world");
ASSERT_NE(world, nullptr);
ASSERT_EQ(world->getNumSkeletons(), 1);
// Check if the world is correctly loaded
SkeletonPtr model_1 = world->getSkeleton(0);
ASSERT_NE(model_1, nullptr);
EXPECT_EQ(model_1->getName(), "model_1");
EXPECT_EQ(model_1->getNumBodyNodes(), 2);
EXPECT_EQ(model_1->getNumJoints(), 2);
world->setGravity(Eigen::Vector3d(0, 0, -50));
// Simulate 1 step
world->step();
double t = world->getTime();
// Get time step size
double dt = world->getTimeStep();
EXPECT_GT(dt, 0);
// Check that time moves forward
EXPECT_DOUBLE_EQ(t, dt);
// Get joint and get force torque
auto link_1 = model_1->getBodyNode("link_1");
ASSERT_NE(link_1, nullptr);
auto link_2 = model_1->getBodyNode("link_2");
ASSERT_NE(link_2, nullptr);
auto joint_01 = model_1->getJoint("joint_01");
ASSERT_NE(joint_01, nullptr);
auto joint_12 = model_1->getJoint("joint_12");
ASSERT_NE(joint_12, nullptr);
// Change gravity so that the top link topples over, then remeasure
world->setGravity(Eigen::Vector3d(-30, 10, -50));
// Wait for dynamics to be stabilized
for (auto i = 0; i < 2000; ++i)
{
world->step();
}
Eigen::Isometry3d tf = Eigen::Isometry3d::Identity();
// Run 5 steps
for (auto i = 0u; i < 5; ++i)
{
world->step();
//----------------------
// Test joint_01 wrench
//----------------------
// Reference adjustment for the difference of the joint frame conventions
// between Gazebo and DART
tf.setIdentity();
tf.translation() = joint_01->getTransformFromParentBodyNode().translation();
SimpleFramePtr parentFrame01
= std::make_shared<SimpleFrame>(Frame::World(), "parentFrame01", tf);
tf.setIdentity();
tf.translation() = joint_01->getTransformFromChildBodyNode().translation();
SimpleFramePtr childFrame01
= std::make_shared<SimpleFrame>(link_1, "childFrame01", tf);
const Eigen::Vector6d parentF01
= joint_01->getWrenchToParentBodyNode(parentFrame01.get());
EXPECT_NEAR(parentF01[0], 750, 7.5); // torque
EXPECT_NEAR(parentF01[1], 0, 4.5);
EXPECT_NEAR(parentF01[2], -450, 0.1);
EXPECT_NEAR(parentF01[3], 600, 6); // force
EXPECT_NEAR(parentF01[4], -200, 10);
EXPECT_NEAR(parentF01[5], 1000, 2);
const Eigen::Vector6d childF01
= joint_01->getWrenchToChildBodyNode(childFrame01.get());
EXPECT_NEAR(childF01[0], -750, 7.5); // torque
EXPECT_NEAR(childF01[1], -450, 4.5);
EXPECT_NEAR(childF01[2], 0, 0.1);
EXPECT_NEAR(childF01[3], -600, 6); // force
EXPECT_NEAR(childF01[4], 1000, 10);
EXPECT_NEAR(childF01[5], 200, 2);
//----------------------
// Test joint_12 wrench
//----------------------
// Reference adjustment for the difference of the joint frame conventions
// between Gazebo and DART
tf.setIdentity();
tf.translation() = joint_12->getTransformFromParentBodyNode().translation();
SimpleFramePtr parentFrame12
= std::make_shared<SimpleFrame>(link_1, "parentFrame12", tf);
tf.setIdentity();
tf.translation() = joint_12->getTransformFromChildBodyNode().translation();
SimpleFramePtr childFrame12
= std::make_shared<SimpleFrame>(link_2, "childFrame12", tf);
const Eigen::Vector6d parentF12
= joint_12->getWrenchToParentBodyNode(parentFrame12.get());
EXPECT_NEAR(parentF12[0], 250, 2.5); // torque
EXPECT_NEAR(parentF12[1], 150, 1.5);
EXPECT_NEAR(parentF12[2], 0, 0.1);
EXPECT_NEAR(parentF12[3], 300, 3); // force
EXPECT_NEAR(parentF12[4], -500, 5);
EXPECT_NEAR(parentF12[5], -100, 1);
const Eigen::Vector6d childF12
= joint_12->getWrenchToChildBodyNode(childFrame12.get());
EXPECT_TRUE(childF12.isApprox(-parentF12));
}
}
//==============================================================================
TEST(JointForceTorqueTest, ForceTorqeAtJointLimitsWithExternalForces)
{
// Load world
WorldPtr world = readWorld("dart://sample/sdf/test/force_torque_test2.world");
ASSERT_NE(world, nullptr);
ASSERT_EQ(world->getNumSkeletons(), 1);
// Check if the world is correctly loaded
SkeletonPtr model_1 = world->getSkeleton(0);
ASSERT_NE(model_1, nullptr);
ASSERT_EQ(model_1->getName(), "boxes");
ASSERT_EQ(model_1->getNumBodyNodes(), 3);
ASSERT_EQ(model_1->getNumJoints(), 3);
ASSERT_EQ(model_1->getNumDofs(), 2);
// The first joint is fixed joint
EXPECT_EQ(
model_1->getRootJoint()->getType(),
dart::dynamics::WeldJoint::getStaticType());
world->setGravity(Eigen::Vector3d(0, 0, -50));
// Simulate 1 step
world->step();
double t = world->getTime();
// Get time step size
double dt = world->getTimeStep();
EXPECT_GT(dt, 0);
// Check that time moves forward
EXPECT_DOUBLE_EQ(t, dt);
// Get joint and get force torque
auto link_1 = model_1->getBodyNode("link1");
ASSERT_NE(link_1, nullptr);
auto link_2 = model_1->getBodyNode("link2");
ASSERT_NE(link_2, nullptr);
auto link_3 = model_1->getBodyNode("link3");
ASSERT_NE(link_3, nullptr);
auto joint_12 = model_1->getJoint("joint1");
ASSERT_NE(joint_12, nullptr);
auto joint_23 = model_1->getJoint("joint2");
ASSERT_NE(joint_23, nullptr);
Eigen::Isometry3d tf = Eigen::Isometry3d::Identity();
// Run 4500 steps
const double kp1 = 5e+4;
const double kp2 = 1e+4;
const double target1 = 0;
const double target2 = -0.25 * math::constantsd::pi();
const auto steps = 4500u;
for (auto i = 0u; i < steps; ++i)
{
// PD control
const double j1State = joint_12->getPosition(0);
const double j2State = joint_23->getPosition(0);
const double p1Error = target1 - j1State;
const double p2Error = target2 - j2State;
const double effort1 = kp1 * p1Error;
const double effort2 = kp2 * p2Error;
joint_12->setForce(0, effort1);
joint_23->setForce(0, effort2);
world->step();
}
EXPECT_NEAR(joint_12->getPosition(0), target1, 0.1);
EXPECT_NEAR(joint_23->getPosition(0), target2, 0.1);
const double tol = 2;
//----------------------
// Test joint_12 wrench
//----------------------
// Reference adjustment for different joint frame conventions between Gazebo
// and DART
tf.setIdentity();
tf.translation() = joint_12->getTransformFromParentBodyNode().translation();
SimpleFramePtr parentFrame01
= std::make_shared<SimpleFrame>(link_1, "parentFrame01", tf);
tf.setIdentity();
tf.translation() = joint_12->getTransformFromChildBodyNode().translation();
SimpleFramePtr childFrame01
= std::make_shared<SimpleFrame>(link_2, "childFrame01", tf);
const Eigen::Vector6d parentF01
= joint_12->getWrenchToParentBodyNode(parentFrame01.get());
EXPECT_NEAR(parentF01[0], 25, tol); // torque
EXPECT_NEAR(parentF01[1], -175, tol);
EXPECT_NEAR(parentF01[2], 0, tol);
EXPECT_NEAR(parentF01[3], 0, tol); // force
EXPECT_NEAR(parentF01[4], 0, tol);
EXPECT_NEAR(parentF01[5], 300, tol);
const Eigen::Vector6d childF01
= joint_12->getWrenchToChildBodyNode(childFrame01.get());
EXPECT_TRUE(childF01.isApprox(-parentF01, tol));
//----------------------
// Test joint_23 wrench
//----------------------
// Reference adjustment for different joint frame conventions between Gazebo
// and DART
tf.setIdentity();
tf.translation() = joint_23->getTransformFromParentBodyNode().translation();
SimpleFramePtr parentFrame12
= std::make_shared<SimpleFrame>(link_2, "parentFrame12", tf);
tf.setIdentity();
tf.translation() = joint_23->getTransformFromChildBodyNode().translation();
SimpleFramePtr childFrame12
= std::make_shared<SimpleFrame>(link_3, "childFrame12", tf);
const Eigen::Vector6d parentF12
= joint_23->getWrenchToParentBodyNode(parentFrame12.get());
EXPECT_NEAR(parentF12[0], 25, tol); // torque
EXPECT_NEAR(parentF12[1], 0, tol);
EXPECT_NEAR(parentF12[2], 0, tol);
EXPECT_NEAR(parentF12[3], 0, tol); // force
EXPECT_NEAR(parentF12[4], 0, tol);
EXPECT_NEAR(parentF12[5], 50, tol);
const Eigen::Vector6d childF12
= joint_23->getWrenchToChildBodyNode(childFrame12.get());
EXPECT_NEAR(childF12[0], -17.678, tol); // torque
EXPECT_NEAR(childF12[1], 0, tol);
EXPECT_NEAR(childF12[2], 17.678, tol);
EXPECT_NEAR(childF12[3], -35.355, tol); // force
EXPECT_NEAR(childF12[4], 0, tol);
EXPECT_NEAR(childF12[5], -35.355, tol);
}
|