diff --git a/VirtualRobot/Tools/Gravity.cpp b/VirtualRobot/Tools/Gravity.cpp index a563eb21a161247b308b5ce5989bb08c3e43fa4b..41d96dbf050621bc99fe33c24eb15fce4fbcb3af 100644 --- a/VirtualRobot/Tools/Gravity.cpp +++ b/VirtualRobot/Tools/Gravity.cpp @@ -11,32 +11,113 @@ Gravity::Gravity(VirtualRobot::RobotPtr robot, VirtualRobot::RobotNodeSetPtr rns rns(rnsJoints), rnsBodies(rnsBodies) { + THROW_VR_EXCEPTION_IF(!robot || !rns || !rnsBodies || rns->getSize()==0, "NULL data"); + + nodes = rns->getAllRobotNodes(); + nodesBodies = rnsBodies->getAllRobotNodes(); + + for (auto& node : nodes) + { + if (!node->isRotationalJoint()) + { + THROW_VR_EXCEPTION("Not a rotational joint:" << node->getName()); + } + } + + for (auto& body : nodesBodies) + { + if (body->getMass() <= 0) + { + THROW_VR_EXCEPTION("No mass for body" << body->getName()); + } + } + + children.resize(nodes.size(), nodesBodies.size()); + // build children map + unsigned int a = 0; + unsigned int b = 0; + for (auto& node : nodes) + { + b=0; + for (auto& body : nodesBodies) + { + if (node->hasChild(body, true)) + { + children(a,b) = 1; + } else + children(a,b) = 0; + b++; + } + a++; + } + } Gravity::~Gravity() { } +void Gravity::computeGravityTorque(std::vector<float> &storeValues) +{ + storeValues.resize(rns->getSize()); + + unsigned int pos = 0; + unsigned int a = 0; + unsigned int b = 0; + for (auto& node : nodes) + { + VirtualRobot::RobotNodeRevolutePtr rnRevolute = boost::dynamic_pointer_cast<VirtualRobot::RobotNodeRevolute>(node); + Eigen::Vector3f axisGlobal = rnRevolute->getJointRotationAxis(); + Eigen::Vector3f jointPosGlobal = rnRevolute->getGlobalPose().block(0, 3, 3, 1); + axisGlobal.normalize(); + + float gravityJoint = 0; + + b = 0; + for (auto& body : nodesBodies) + { + if (children(a,b) == 1) //node->hasChild(body, true)) + { + Eigen::Vector3f comGlobal = body->getCoMGlobal(); + VirtualRobot::MathTools::BaseLine<Eigen::Vector3f> l(jointPosGlobal, axisGlobal); + Eigen::Vector3f pointOnAxis = VirtualRobot::MathTools::nearestPointOnLine<Eigen::Vector3f>(l, comGlobal); + Eigen::Vector3f r = comGlobal - pointOnAxis; // vector from axis to com (change sign?) + r *= 0.001f; // mm -> m + Eigen::Vector3f F(0, 0, -9.81); + F *= body->getMass(); + gravityJoint += (r.cross(F)).dot(axisGlobal); + } + b++; + } + + // gravity compensation: invert the gravity torque + gravityJoint *= -1.0f; + storeValues[pos] = gravityJoint; + pos++; + a++; + } +} + std::map<std::string, float> Gravity::computeGravityTorque() { + std::vector<float> storeValues; + storeValues.resize(nodes.size()); + computeGravityTorque(storeValues); std::map<std::string, float> torques; - if (!rns || !robot) + unsigned int a = 0; + for (auto& node : nodes) { - VR_ERROR << "Gravity compensation not properly set up" << endl; - return torques; + torques[node->getName()] = storeValues.at(a); + a++; } + /* + std::map<std::string, float> torques; std::vector<VirtualRobot::RobotNodePtr> nodes = rns->getAllRobotNodes(); std::vector<VirtualRobot::RobotNodePtr> nodesBodies = rnsBodies->getAllRobotNodes(); for (auto& node : nodes) { - if (!node->isRotationalJoint()) - { - VR_WARNING << "Not a rotational joint:" << node->getName() << endl; - continue; - } - VirtualRobot::RobotNodeRevolutePtr rnRevolute = boost::dynamic_pointer_cast<VirtualRobot::RobotNodeRevolute>(node); Eigen::Vector3f axisGlobal = rnRevolute->getJointRotationAxis(); Eigen::Vector3f jointPosGlobal = rnRevolute->getGlobalPose().block(0, 3, 3, 1); @@ -46,12 +127,6 @@ std::map<std::string, float> Gravity::computeGravityTorque() for (auto& body : nodesBodies) { - if (body->getMass() <= 0) - { - VR_WARNING << "No mass for body" << body->getName() << endl; - continue; - } - if (node->hasChild(body, true)) { Eigen::Vector3f comGlobal = body->getCoMGlobal(); @@ -68,6 +143,6 @@ std::map<std::string, float> Gravity::computeGravityTorque() // gravity compensation: invert the gravity torque gravityJoint *= -1.0f; torques[node->getName()] = gravityJoint; - } + }*/ return torques; } diff --git a/VirtualRobot/Tools/Gravity.h b/VirtualRobot/Tools/Gravity.h index d17ada3f0493ed3c7d79c1c42a7cd33f5dc41e30..d885224911a2f592f1974840b769c39b42ff4289 100644 --- a/VirtualRobot/Tools/Gravity.h +++ b/VirtualRobot/Tools/Gravity.h @@ -40,6 +40,8 @@ namespace VirtualRobot */ std::map<std::string, float> computeGravityTorque(); + void computeGravityTorque(std::vector<float> &storeValues); + protected: VirtualRobot::RobotPtr robot; @@ -48,6 +50,11 @@ namespace VirtualRobot // this rns is used to update the current pose of the robot VirtualRobot::RobotNodeSetPtr rnsBodies; + + std::vector<VirtualRobot::RobotNodePtr> nodes; + std::vector<VirtualRobot::RobotNodePtr> nodesBodies; + + Eigen::MatrixXi children; }; typedef boost::shared_ptr<Gravity> GravityPtr;