-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathimu.cc
More file actions
278 lines (236 loc) · 9.22 KB
/
imu.cc
File metadata and controls
278 lines (236 loc) · 9.22 KB
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
/*
* Copyright (C) 2019 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <gtest/gtest.h>
#include <sdf/sdf.hh>
#include <gz/msgs/imu.pb.h>
#include <gz/sensors/ImuSensor.hh>
#include <gz/sensors/SensorFactory.hh>
#include "test_config.hh" // NOLINT(build/include)
#include "TransportTestTools.hh"
/// \brief Helper function to create an imu sdf element
sdf::ElementPtr ImuToSdf(const std::string &_name,
const gz::math::Pose3d &_pose, const double _updateRate,
const std::string &_topic, const bool _alwaysOn,
const bool _visualize)
{
std::ostringstream stream;
stream
<< "<?xml version='1.0'?>"
<< "<sdf version='1.6'>"
<< " <model name='m1'>"
<< " <link name='link1'>"
<< " <sensor name='" << _name << "' type='imu'>"
<< " <pose>" << _pose << "</pose>"
<< " <topic>" << _topic << "</topic>"
<< " <update_rate>"<< _updateRate <<"</update_rate>"
<< " <alwaysOn>" << _alwaysOn <<"</alwaysOn>"
<< " <visualize>" << _visualize << "</visualize>"
<< " </sensor>"
<< " </link>"
<< " </model>"
<< "</sdf>";
sdf::SDFPtr sdfParsed(new sdf::SDF());
sdf::init(sdfParsed);
if (!sdf::readString(stream.str(), sdfParsed))
return sdf::ElementPtr();
return sdfParsed->Root()->GetElement("model")->GetElement("link")
->GetElement("sensor");
}
/// \brief Test IMU sensor
class ImuSensorTest: public testing::Test
{
// Documentation inherited
protected: void SetUp() override
{
gz::common::Console::SetVerbosity(4);
}
};
/////////////////////////////////////////////////
TEST_F(ImuSensorTest, CreateImu)
{
// Create SDF describing an imu sensor
const std::string name = "TestImu";
const std::string topic = "/gz/sensors/test/imu";
const double updateRate = 30;
const bool alwaysOn = 1;
const bool visualize = 1;
// Create sensor SDF
gz::math::Pose3d sensorPose(gz::math::Vector3d(0.25, 0.0, 0.5),
gz::math::Quaterniond::Identity);
sdf::ElementPtr imuSdf = ImuToSdf(name, sensorPose,
updateRate, topic, alwaysOn, visualize);
// create the sensor using sensor factory
gz::sensors::SensorFactory sf;
std::unique_ptr<gz::sensors::ImuSensor> sensor =
sf.CreateSensor<gz::sensors::ImuSensor>(imuSdf);
ASSERT_NE(nullptr, sensor);
EXPECT_EQ(name, sensor->Name());
EXPECT_EQ(topic, sensor->Topic());
EXPECT_DOUBLE_EQ(updateRate, sensor->UpdateRate());
}
/////////////////////////////////////////////////
TEST_F(ImuSensorTest, SensorReadings)
{
// Create SDF describing an imu sensor
const std::string name = "TestImu";
const std::string topic = "/gz/sensors/test/imu";
const double updateRate = 30;
const bool alwaysOn = 1;
const bool visualize = 1;
// Create sensor SDF
gz::math::Pose3d sensorPose(gz::math::Vector3d(0.25, 0.0, 0.5),
gz::math::Quaterniond::Identity);
sdf::ElementPtr imuSdf = ImuToSdf(name, sensorPose,
updateRate, topic, alwaysOn, visualize);
// create the sensor using sensor factory
gz::sensors::SensorFactory sf;
auto sensor = sf.CreateSensor<gz::sensors::ImuSensor>(imuSdf);
ASSERT_NE(nullptr, sensor);
EXPECT_FALSE(sensor->HasConnections());
// subscribe to the topic
WaitForMessageTestHelper<gz::msgs::IMU> msgHelper(topic);
EXPECT_TRUE(sensor->HasConnections());
// verify initial readings
EXPECT_EQ(gz::math::Pose3d::Zero, sensor->WorldPose());
EXPECT_EQ(gz::math::Vector3d::Zero, sensor->LinearAcceleration());
EXPECT_EQ(gz::math::Vector3d::Zero, sensor->AngularVelocity());
EXPECT_EQ(gz::math::Vector3d::Zero, sensor->Gravity());
EXPECT_EQ(gz::math::Quaterniond::Identity,
sensor->OrientationReference());
EXPECT_EQ(gz::math::Quaterniond::Identity, sensor->Orientation());
// 1. Verify imu readings at rest
// set orientation reference and verify readings
// this sets the initial imu rotation to be +90 degrees in z
gz::math::Quaterniond orientRef(
gz::math::Vector3d(0, 0, 1.57));
sensor->SetOrientationReference(orientRef);
EXPECT_EQ(orientRef, sensor->OrientationReference());
// set gravity and verify
gz::math::Vector3d gravity(0, 0, -4);
sensor->SetGravity(gravity);
EXPECT_EQ(gravity, sensor->Gravity());
// set world pose and verify
gz::math::Vector3d position(1, 0, 3);
gz::math::Quaterniond orientation =
gz::math::Quaterniond::Identity;
gz::math::Pose3d pose(position, orientation);
sensor->SetWorldPose(pose);
EXPECT_EQ(pose, sensor->WorldPose());
// orientation should still be identity before update
EXPECT_EQ(gz::math::Quaterniond::Identity, sensor->Orientation());
// update sensor and verify new readings
EXPECT_TRUE(sensor->Update(std::chrono::steady_clock::duration(
std::chrono::seconds(1))));
EXPECT_EQ(orientRef, sensor->OrientationReference());
EXPECT_EQ(gravity, sensor->Gravity());
EXPECT_EQ(pose, sensor->WorldPose());
EXPECT_EQ(gz::math::Vector3d::Zero, sensor->AngularVelocity());
EXPECT_EQ(-gravity, sensor->LinearAcceleration());
EXPECT_EQ(gz::math::Quaterniond(gz::math::Vector3d(0, 0, -1.57)),
sensor->Orientation());
// verify msg received on the topic
EXPECT_TRUE(msgHelper.WaitForMessage()) << msgHelper;
auto msg = msgHelper.Message();
EXPECT_EQ(1, msg.header().stamp().sec());
EXPECT_EQ(0, msg.header().stamp().nsec());
EXPECT_EQ(gz::math::Vector3d::Zero,
gz::msgs::Convert(msg.angular_velocity()));
EXPECT_EQ(-gravity, gz::msgs::Convert(msg.linear_acceleration()));
EXPECT_EQ(gz::math::Quaterniond(gz::math::Vector3d(0, 0, -1.57)),
gz::msgs::Convert(msg.orientation()));
// 2. Turn imu upside down, give it some linear acc and angular velocity and
// verify readings
// set angular velocity and verify
gz::math::Vector3d angularVel(1.0, 2.0, 3.0);
sensor->SetAngularVelocity(angularVel);
EXPECT_EQ(angularVel, sensor->AngularVelocity());
// set linear acceleration and verify
gz::math::Vector3d linearAcc(0, 0, 3);
sensor->SetLinearAcceleration(linearAcc);
EXPECT_EQ(linearAcc, sensor->LinearAcceleration());
// set orientation and verify
gz::math::Quaterniond newOrientation(0, 3.14, 0);
gz::math::Pose3d newPose(position, newOrientation);
sensor->SetWorldPose(newPose);
EXPECT_EQ(newPose, sensor->WorldPose());
// update sensor and verify new readings
EXPECT_TRUE(sensor->Update(std::chrono::steady_clock::duration(
std::chrono::seconds(2)), false));
EXPECT_EQ(orientRef, sensor->OrientationReference());
EXPECT_EQ(gravity, sensor->Gravity());
EXPECT_EQ(angularVel, sensor->AngularVelocity());
EXPECT_EQ(newPose, sensor->WorldPose());
gz::math::Vector3d expectedLinAcc = linearAcc + gravity;
EXPECT_NEAR(expectedLinAcc.X(), sensor->LinearAcceleration().X(), 1e-2);
EXPECT_NEAR(expectedLinAcc.Y(), sensor->LinearAcceleration().Y(), 1e-6);
EXPECT_NEAR(expectedLinAcc.Z(), sensor->LinearAcceleration().Z(), 1e-5);
EXPECT_EQ(
gz::math::Quaterniond(gz::math::Vector3d(0, 3.14, -1.57)),
sensor->Orientation());
// verify updated msg
EXPECT_TRUE(msgHelper.WaitForMessage()) << msgHelper;
msg = msgHelper.Message();
EXPECT_EQ(2, msg.header().stamp().sec());
EXPECT_EQ(0, msg.header().stamp().nsec());
EXPECT_EQ(angularVel,
gz::msgs::Convert(msg.angular_velocity()));
gz::math::Vector3d actualLinAcc =
gz::msgs::Convert(msg.linear_acceleration());
EXPECT_NEAR(expectedLinAcc.X(), actualLinAcc.X(), 1e-2);
EXPECT_NEAR(expectedLinAcc.Y(), actualLinAcc.Y(), 1e-6);
EXPECT_NEAR(expectedLinAcc.Z(), actualLinAcc.Z(), 1e-5);
EXPECT_EQ(
gz::math::Quaterniond(gz::math::Vector3d(0, 3.14, -1.57)),
gz::msgs::Convert(msg.orientation()));
}
/////////////////////////////////////////////////
TEST_F(ImuSensorTest, Topic)
{
const std::string name = "TestImu";
const double updateRate = 30;
const bool alwaysOn = 1;
const bool visualize = 1;
auto sensorPose = gz::math::Pose3d();
// Factory
gz::sensors::SensorFactory factory;
// Default topic
{
const std::string topic;
auto imuSdf = ImuToSdf(name, sensorPose,
updateRate, topic, alwaysOn, visualize);
auto imu = factory.CreateSensor<gz::sensors::ImuSensor>(imuSdf);
ASSERT_NE(nullptr, imu);
EXPECT_EQ("/imu", imu->Topic());
}
// Convert to valid topic
{
const std::string topic = "/topic with spaces/@~characters//";
auto imuSdf = ImuToSdf(name, sensorPose,
updateRate, topic, alwaysOn, visualize);
auto imu = factory.CreateSensor<gz::sensors::ImuSensor>(imuSdf);
ASSERT_NE(nullptr, imu);
EXPECT_EQ("/topic_with_spaces/characters", imu->Topic());
}
// Invalid topic
{
const std::string topic = "@@@";
auto imuSdf = ImuToSdf(name, sensorPose,
updateRate, topic, alwaysOn, visualize);
auto sensor = factory.CreateSensor<gz::sensors::ImuSensor>(imuSdf);
ASSERT_EQ(nullptr, sensor);
}
}