Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New test for IMU orientation #65

Merged
merged 11 commits into from
Jan 18, 2024
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ build
*.*~
CMakeLists.txt.user
result.txt
.DS_Store
.DS_Store
.vscode
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,6 @@ add_subdirectory(src/skinWrapperTest)
# Build system status tests (needs yarp newer than f0c9e83a66d1e2685361f82dd98b20ed6479ec04)
#add_subdirectory(src/system-status)

# Build IMU test
add_subdirectory(src/imu)

24 changes: 24 additions & 0 deletions src/imu/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
cmake_minimum_required(VERSION 3.5)
project(imu)
Nicogene marked this conversation as resolved.
Show resolved Hide resolved

add_definitions(-D_USE_MATH_DEFINES)
find_package(iDynTree REQUIRED)
find_package(Eigen3 CONFIG REQUIRED)
Nicogene marked this conversation as resolved.
Show resolved Hide resolved

include_directories(${CMAKE_SOURCE_DIR}
Nicogene marked this conversation as resolved.
Show resolved Hide resolved
${RobotTestingFramework_INCLUDE_DIRS})
Nicogene marked this conversation as resolved.
Show resolved Hide resolved

robottestingframework_add_plugin(${PROJECT_NAME} HEADERS ${PROJECT_NAME}.h
SOURCES ${PROJECT_NAME}.cpp)

# add required libraries
target_link_libraries(${PROJECT_NAME} RobotTestingFramework::RTF
RobotTestingFramework::RTF_dll
YARP::YARP_robottestingframework
iDynTree::idyntree-high-level
iDynTree::idyntree-estimation)
# set the installation options
install(TARGETS ${PROJECT_NAME}
EXPORT ${PROJECT_NAME}
COMPONENT runtime
LIBRARY DESTINATION lib)
242 changes: 242 additions & 0 deletions src/imu/imu.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,242 @@
#include <iostream>
#include <cmath>
#include <numeric>

#include <robottestingframework/TestAssert.h>
#include <robottestingframework/dll/Plugin.h>

#include <yarp/os/Property.h>
#include <yarp/os/Stamp.h>

#include "imu.h"

using namespace robottestingframework;
ROBOTTESTINGFRAMEWORK_PREPARE_PLUGIN(Imu)

Imu::Imu() : TestCase("Imu") { }

Imu::~Imu() { }

bool Imu::setup(yarp::os::Property& property) {

ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(property.check("robot"), "The robot name must be given as the test parameter!");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(property.check("port"), "The port name must be given as the test parameter!");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(property.check("model"), "Please, provide the urdf model path.");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(property.check("frame"), "Please, provide the frame name.");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(property.check("sensor"), "Please, provide the sensor name.");

robotName = property.find("robot").asString(); // robot name
portName = property.find("port").asString(); // name of the port from which the data are streamed
modelPath = property.find("model").asString(); // urdf model path
Nicogene marked this conversation as resolved.
Show resolved Hide resolved
frameName = property.find("frame").asString(); // frame on which the sensor is attached
sensorName = property.find("sensor").asString(); // sensor name within urdf

ROBOTTESTINGFRAMEWORK_TEST_REPORT("Running IMU test on "+robotName+"...");

yarp::os::Property options1;
options1.put("device", "multipleanalogsensorsclient");
options1.put("remote", portName);
options1.put("local", "/imuTest/"+portName);

driver1 = new yarp::dev::PolyDriver(options1);

yarp::os::Property options2;
options2.put("device", "remotecontrolboardremapper");
yarp::os::Bottle axesNames;
yarp::os::Bottle & axesList = axesNames.addList();
axesList.addString("neck_pitch");
axesList.addString("neck_roll");
axesList.addString("neck_yaw");
axesList.addString("torso_pitch");
axesList.addString("torso_roll");
axesList.addString("torso_yaw");
axesList.addString("l_shoulder_pitch");
axesList.addString("l_shoulder_roll");
axesList.addString("l_shoulder_yaw");
axesList.addString("l_elbow");
axesList.addString("r_shoulder_pitch");
axesList.addString("r_shoulder_roll");
axesList.addString("r_shoulder_yaw");
axesList.addString("r_elbow");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This list can be parametrized in future improvements in order to be able to test sensors in other kinematic chains


options2.put("axesNames", axesNames.get(0));

yarp::os::Bottle remoteControlBoards;
yarp::os::Bottle & remoteControlBoardsList = remoteControlBoards.addList();
remoteControlBoardsList.addString("/"+robotName+"/torso");
remoteControlBoardsList.addString("/"+robotName+"/head");
remoteControlBoardsList.addString("/"+robotName+"/left_arm");
remoteControlBoardsList.addString("/"+robotName+"/right_arm");
options2.put("remoteControlBoards", remoteControlBoards.get(0));
options2.put("localPortPrefix", "/test");

driver2 = new yarp::dev::PolyDriver(options2);
Nicogene marked this conversation as resolved.
Show resolved Hide resolved
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(driver1->isValid(), "Device driver cannot be opened");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(driver1->view(iorientation), "Unable to open orientation interface");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(driver2->isValid(), "Device driver cannot be opened");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(driver2->view(ipos), "Unable to open position control interface");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(driver2->view(ienc), "Unable to open encoder interface");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(driver2->view(iaxes), "Unable to open axes interface");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(driver2->view(ilim), "Unable to open limits interface");


outputPort.open("/test-imu/out");
ROBOTTESTINGFRAMEWORK_TEST_REPORT("Opening port "+outputPort.getName()+"...");

ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(ienc->getAxes(&axes), "Cannot get number of controlled axes");
std::string axisName;
std::vector<std::string> axis;

for (int i = 0; i < axes; i++)
{
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(iaxes->getAxisName(i, axisName), "Cannot get the name of controlled axes");
axis.push_back(axisName);
}

ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(model.loadReducedModelFromFile(modelPath.c_str(), axis), Asserter::format("Cannot load model %s", modelPath.c_str()));
kinDynComp.loadRobotModel(model.model());
traversaro marked this conversation as resolved.
Show resolved Hide resolved

iDynTree::Vector3 baseLinkOrientationRad;
baseLinkOrientationRad.zero();

baseLinkOrientation = iDynTree::Rotation::RPY(baseLinkOrientationRad[0], baseLinkOrientationRad[1], baseLinkOrientationRad[2]);
I_T_base = iDynTree::Transform(baseLinkOrientation, iDynTree::Position::Zero());
iDynTree::Twist baseVelocity = iDynTree::Twist::Zero();

unsigned int dofs = kinDynComp.model().getNrOfDOFs();
s.resize(dofs);
ds.resize(dofs);

positions.resize(axes);
velocities.resize(axes);
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(ienc->getEncoders(positions.data()), "Cannot get joint positions");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(ienc->getEncoderSpeeds(velocities.data()), "Cannot get joint positions");

for(auto i = 0; i < axes; i++)
{
s.setVal(i, iDynTree::deg2rad(positions[i]));
ds.setVal(i, iDynTree::deg2rad(velocities[i]));
}

gravity.zero();
gravity(2) = -9.81;

kinDynComp.setRobotState(
I_T_base,
s,
baseVelocity,
ds,
gravity
);

return true;
}

void Imu::tearDown() {
outputPort.interrupt();
outputPort.close();

if(driver1)
{
delete driver1;
driver1 = 0;
}

if(driver2)
{
delete driver2;
driver2 = 0;
}
}

void Imu::run() {
ROBOTTESTINGFRAMEWORK_TEST_REPORT("Starting reading IMU orientation values...");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(iorientation->getOrientationSensorMeasureAsRollPitchYaw(0, rpyValues, timestamp), "Unable to obtain rpy measurements.");

iDynTree::Rotation I_R_FK = kinDynComp.getWorldTransform(frameName).getRotation();
I_R_I_IMU = (I_R_FK * ((iDynTree::Rotation::RPY(iDynTree::deg2rad(rpyValues[0]), iDynTree::deg2rad(rpyValues[1]), iDynTree::deg2rad(rpyValues[2]))).inverse()));

double minLim;
double maxLim;

for (int i = kinDynComp.model().getJointIndex("neck_pitch"); i <= kinDynComp.model().getJointIndex("neck_yaw"); i++)
Copy link
Member

@Nicogene Nicogene Jan 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also this can be generalized it making it a parameter, ideally the user has to specify the 3 joints that have to be controlled, let's remind it for future versions of the test

{
ilim->getLimits(i, &minLim, &maxLim);

moveJoint(i, minLim + 5);
yarp::os::Time::delay(1.);
moveJoint(i, maxLim - 5);
yarp::os::Time::delay(1.);
}
}

bool Imu::sendData(iDynTree::Vector3 expectedValues, iDynTree::Vector3 imuSignal)
{
yarp::os::Bottle& out = outputPort.prepare();
static yarp::os::Stamp stamp;

stamp.update();
outputPort.setEnvelope(stamp);
out.clear();

out.addFloat64(iDynTree::rad2deg(expectedValues[0]));
out.addFloat64(iDynTree::rad2deg(expectedValues[1]));
out.addFloat64(iDynTree::rad2deg(expectedValues[2]));

out.addFloat64(iDynTree::rad2deg(imuSignal[0]));
out.addFloat64(iDynTree::rad2deg(imuSignal[1]));
out.addFloat64(iDynTree::rad2deg(imuSignal[2]));

out.addFloat64(stamp.getTime());

outputPort.writeStrict();

return true;
}

bool Imu::moveJoint(int ax, double pos)
{
bool done = false;
double refPos;

yarp::os::Time::delay(.1);

ipos->positionMove(ax, pos);
ipos->getTargetPosition(ax, &refPos);

while(!done)
{
iorientation->getOrientationSensorMeasureAsRollPitchYaw(0, rpyValues, timestamp);

ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(ienc->getEncoders(positions.data()), "Cannot get joint positions");
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(ienc->getEncoderSpeeds(velocities.data()), "Cannot get joint positions");

for (auto i = 0; i < axes; i++)
{
s.setVal(i, iDynTree::deg2rad(positions[i]));
ds.setVal(i, iDynTree::deg2rad(velocities[i]));
}

kinDynComp.setRobotState(
I_T_base,
s,
baseVelocity,
ds,
gravity);

iDynTree::Rotation expectedImuSignal = kinDynComp.getWorldTransform(frameName).getRotation();
iDynTree::Rotation imuSignal = (I_R_I_IMU * iDynTree::Rotation::RPY(iDynTree::deg2rad(rpyValues[0]), iDynTree::deg2rad(rpyValues[1]), iDynTree::deg2rad(rpyValues[2])));

auto error = (expectedImuSignal * imuSignal.inverse()).log();
double err_mean = (std::accumulate(error.begin(), error.end(), 0)) / error.size();
ROBOTTESTINGFRAMEWORK_ASSERT_ERROR_IF_FALSE(err_mean < 0.1, "Error > 0.1! Aborting ...");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar to @Nicogene comments, in the future, the threshold could be a parameter, as if for some model/sensors are quite accurate, you may want to make sure that they contibute to be accurate.


sendData(expectedImuSignal.asRPY(), imuSignal.asRPY());
ipos->checkMotionDone(&done);

}

ipos->positionMove(ax, 0.0);

return true;
}
62 changes: 62 additions & 0 deletions src/imu/imu.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
#ifndef _IMU_H_
Nicogene marked this conversation as resolved.
Show resolved Hide resolved
#define _IMU_H_

#include <yarp/dev/PolyDriver.h>
#include <yarp/dev/MultipleAnalogSensorsInterfaces.h>
#include <yarp/dev/IPositionControl.h>
#include <yarp/dev/IEncoders.h>
#include <yarp/dev/IAxisInfo.h>
#include <yarp/dev/IControlLimits.h>
#include <yarp/robottestingframework/TestCase.h>

#include <iDynTree/KinDynComputations.h>
#include <iDynTree/ModelLoader.h>
#include <iDynTree/Model.h>

class Imu : public yarp::robottestingframework::TestCase {
public:
Imu();
virtual ~Imu();
virtual bool setup(yarp::os::Property& property);
virtual void tearDown();
virtual void run();

private:
std::string robotName;
std::string portName;
std::string modelPath;
std::string frameName;
std::string sensorName;

yarp::dev::PolyDriver *driver1;
yarp::dev::PolyDriver *driver2;
yarp::dev::IOrientationSensors* iorientation;
yarp::dev::IPositionControl* ipos;
yarp::dev::IEncoders* ienc;
yarp::dev::IAxisInfo* iaxes;
yarp::dev::IControlLimits* ilim;

yarp::os::BufferedPort <yarp::os::Bottle> outputPort;
yarp::sig::Vector rpyValues;
yarp::sig::Vector positions;
yarp::sig::Vector velocities;

int axes;
double timestamp;

iDynTree::ModelLoader model;
iDynTree::KinDynComputations kinDynComp;

iDynTree::VectorDynSize s;
iDynTree::VectorDynSize ds;
iDynTree::Vector3 gravity;
iDynTree::Rotation baseLinkOrientation;
iDynTree::Twist baseVelocity;
iDynTree::Transform I_T_base;
iDynTree::Rotation I_R_I_IMU;

bool sendData(iDynTree::Vector3 expectedValues, iDynTree::Vector3 imuSignal);
bool moveJoint(int ax, double pos);
};

#endif //_IMU_H_
Loading