-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathMagnetometerSensor.cc
241 lines (201 loc) · 6.71 KB
/
MagnetometerSensor.cc
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
/*
* 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.
*
*/
#if defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable: 4005)
#pragma warning(disable: 4251)
#endif
#include <gz/msgs/magnetometer.pb.h>
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
#include <gz/common/Profiler.hh>
#include <gz/msgs/Utility.hh>
#include <gz/transport/Node.hh>
#include <sdf/Magnetometer.hh>
#include "gz/sensors/MagnetometerSensor.hh"
#include "gz/sensors/Noise.hh"
#include "gz/sensors/SensorFactory.hh"
#include "gz/sensors/SensorTypes.hh"
using namespace gz;
using namespace sensors;
/// \brief Private data for MagnetometerSensor
class gz::sensors::MagnetometerSensorPrivate
{
/// \brief node to create publisher
public: transport::Node node;
/// \brief publisher to publish magnetometer messages.
public: transport::Node::Publisher pub;
/// \brief true if Load() has been called and was successful
public: bool initialized = false;
/// \brief The latest field reading from the sensor, based on the world
/// field and the sensor's current pose.
public: math::Vector3d localField;
/// \brief Store world magnetic field vector. We assume it is uniform
/// everywhere in the world, and that it doesn't change during the simulation.
public: math::Vector3d worldField;
/// \brief World pose of the magnetometer
public: math::Pose3d worldPose;
/// \brief Noise added to sensor data
public: std::map<SensorNoiseType, NoisePtr> noises;
};
//////////////////////////////////////////////////
MagnetometerSensor::MagnetometerSensor()
: dataPtr(new MagnetometerSensorPrivate())
{
}
//////////////////////////////////////////////////
MagnetometerSensor::~MagnetometerSensor()
{
}
//////////////////////////////////////////////////
bool MagnetometerSensor::Init()
{
return this->Sensor::Init();
}
//////////////////////////////////////////////////
bool MagnetometerSensor::Load(const sdf::Sensor &_sdf)
{
if (!Sensor::Load(_sdf))
return false;
if (_sdf.Type() != sdf::SensorType::MAGNETOMETER)
{
gzerr << "Attempting to a load a Magnetometer sensor, but received "
<< "a " << _sdf.TypeStr() << std::endl;
return false;
}
if (_sdf.MagnetometerSensor() == nullptr)
{
gzerr << "Attempting to a load a Magnetometer sensor, but received "
<< "a null sensor." << std::endl;
return false;
}
if (this->Topic().empty())
this->SetTopic("/magnetometer");
this->dataPtr->pub =
this->dataPtr->node.Advertise<msgs::Magnetometer>(
this->Topic());
if (!this->dataPtr->pub)
{
gzerr << "Unable to create publisher on topic[" << this->Topic() << "].\n";
return false;
}
gzdbg << "Magnetometer data for [" << this->Name() << "] advertised on ["
<< this->Topic() << "]" << std::endl;
// Load the noise parameters
if (_sdf.MagnetometerSensor()->XNoise().Type() != sdf::NoiseType::NONE)
{
this->dataPtr->noises[MAGNETOMETER_X_NOISE_TESLA] =
NoiseFactory::NewNoiseModel(_sdf.MagnetometerSensor()->XNoise());
}
if (_sdf.MagnetometerSensor()->YNoise().Type() != sdf::NoiseType::NONE)
{
this->dataPtr->noises[MAGNETOMETER_Y_NOISE_TESLA] =
NoiseFactory::NewNoiseModel(_sdf.MagnetometerSensor()->YNoise());
}
if (_sdf.MagnetometerSensor()->ZNoise().Type() != sdf::NoiseType::NONE)
{
this->dataPtr->noises[MAGNETOMETER_Z_NOISE_TESLA] =
NoiseFactory::NewNoiseModel(_sdf.MagnetometerSensor()->ZNoise());
}
this->dataPtr->initialized = true;
return true;
}
//////////////////////////////////////////////////
bool MagnetometerSensor::Load(sdf::ElementPtr _sdf)
{
sdf::Sensor sdfSensor;
sdfSensor.Load(_sdf);
return this->Load(sdfSensor);
}
//////////////////////////////////////////////////
bool MagnetometerSensor::Update(
const std::chrono::steady_clock::duration &_now)
{
GZ_PROFILE("MagnetometerSensor::Update");
if (!this->dataPtr->initialized)
{
gzerr << "Not initialized, update ignored.\n";
return false;
}
// compute magnetic field in body frame
this->dataPtr->localField =
this->dataPtr->worldPose.Rot().Inverse().RotateVector(
this->dataPtr->worldField);
msgs::Magnetometer msg;
*msg.mutable_header()->mutable_stamp() = msgs::Convert(_now);
auto frame = msg.mutable_header()->add_data();
frame->set_key("frame_id");
frame->add_value(this->FrameId());
// Apply magnetometer noise after converting to body frame
if (this->dataPtr->noises.find(MAGNETOMETER_X_NOISE_TESLA) !=
this->dataPtr->noises.end())
{
this->dataPtr->localField.X(
this->dataPtr->noises[MAGNETOMETER_X_NOISE_TESLA]->Apply(
this->dataPtr->localField.X()));
}
if (this->dataPtr->noises.find(MAGNETOMETER_Y_NOISE_TESLA) !=
this->dataPtr->noises.end())
{
this->dataPtr->localField.Y(
this->dataPtr->noises[MAGNETOMETER_Y_NOISE_TESLA]->Apply(
this->dataPtr->localField.Y()));
}
if (this->dataPtr->noises.find(MAGNETOMETER_Z_NOISE_TESLA) !=
this->dataPtr->noises.end())
{
this->dataPtr->localField.Z(
this->dataPtr->noises[MAGNETOMETER_Z_NOISE_TESLA]->Apply(
this->dataPtr->localField.Z()));
}
msgs::Set(msg.mutable_field_tesla(), this->dataPtr->localField);
// publish
this->AddSequence(msg.mutable_header());
this->dataPtr->pub.Publish(msg);
return true;
}
//////////////////////////////////////////////////
void MagnetometerSensor::SetWorldPose(const math::Pose3d _pose)
{
this->dataPtr->worldPose = _pose;
}
//////////////////////////////////////////////////
math::Pose3d MagnetometerSensor::WorldPose() const
{
return this->dataPtr->worldPose;
}
//////////////////////////////////////////////////
void MagnetometerSensor::SetWorldMagneticField(const math::Vector3d &_field)
{
this->dataPtr->worldField = _field;
}
//////////////////////////////////////////////////
math::Vector3d MagnetometerSensor::WorldMagneticField() const
{
return this->dataPtr->worldField;
}
//////////////////////////////////////////////////
math::Vector3d MagnetometerSensor::MagneticField() const
{
return this->dataPtr->localField;
}
//////////////////////////////////////////////////
bool MagnetometerSensor::HasConnections() const
{
return this->dataPtr->pub && this->dataPtr->pub.HasConnections();
}