-
Notifications
You must be signed in to change notification settings - Fork 58
/
AirPressureSensor.cc
213 lines (176 loc) · 6.45 KB
/
AirPressureSensor.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
/*
* 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 <ignition/msgs/fluid_pressure.pb.h>
#include <ignition/common/Profiler.hh>
#include <ignition/transport/Node.hh>
#include <ignition/plugin/Register.hh>
#include "ignition/sensors/GaussianNoiseModel.hh"
#include "ignition/sensors/Noise.hh"
#include "ignition/sensors/SensorTypes.hh"
#include "ignition/sensors/SensorFactory.hh"
#include "ignition/sensors/AirPressureSensor.hh"
using namespace ignition;
using namespace sensors;
// Constants. These constants from from RotorS:
// https://github.com/ethz-asl/rotors_simulator/blob/master/rotors_gazebo_plugins/include/rotors_gazebo_plugins/gazebo_pressure_plugin.h
static constexpr double kGasConstantNmPerKmolKelvin = 8314.32;
static constexpr double kMeanMolecularAirWeightKgPerKmol = 28.9644;
static constexpr double kGravityMagnitude = 9.80665;
static constexpr double kEarthRadiusMeters = 6356766.0;
static constexpr double kPressureOneAtmospherePascals = 101325.0;
static constexpr double kSeaLevelTempKelvin = 288.15;
static constexpr double kTempLapseKelvinPerMeter = 0.0065;
static constexpr double kAirConstantDimensionless = kGravityMagnitude *
kMeanMolecularAirWeightKgPerKmol /
(kGasConstantNmPerKmolKelvin * -kTempLapseKelvinPerMeter);
/// \brief Private data for AirPressureSensor
class ignition::sensors::AirPressureSensorPrivate
{
/// \brief node to create publisher
public: transport::Node node;
/// \brief publisher to publish air pressure messages.
public: transport::Node::Publisher pub;
/// \brief true if Load() has been called and was successful
public: bool initialized = false;
/// \brief Pressure in pascals.
public: double pressure = 0.0;
/// \brief Altitude reference, i.e. initial sensor position
public: double referenceAltitude = 0.0;
/// \brief Noise added to sensor data
public: std::map<SensorNoiseType, NoisePtr> noises;
};
//////////////////////////////////////////////////
AirPressureSensor::AirPressureSensor()
: dataPtr(new AirPressureSensorPrivate())
{
}
//////////////////////////////////////////////////
AirPressureSensor::~AirPressureSensor()
{
}
//////////////////////////////////////////////////
bool AirPressureSensor::Init()
{
return this->Sensor::Init();
}
//////////////////////////////////////////////////
bool AirPressureSensor::Load(const sdf::Sensor &_sdf)
{
if (!Sensor::Load(_sdf))
return false;
if (_sdf.Type() != sdf::SensorType::AIR_PRESSURE)
{
ignerr << "Attempting to a load an AirPressure sensor, but received "
<< "a " << _sdf.TypeStr() << std::endl;
return false;
}
if (_sdf.AirPressureSensor() == nullptr)
{
ignerr << "Attempting to a load an AirPressure sensor, but received "
<< "a null sensor." << std::endl;
return false;
}
if (this->Topic().empty())
this->SetTopic("/air_pressure");
this->dataPtr->pub =
this->dataPtr->node.Advertise<ignition::msgs::FluidPressure>(
this->Topic());
if (!this->dataPtr->pub)
{
ignerr << "Unable to create publisher on topic[" << this->Topic() << "].\n";
return false;
}
// Load the noise parameters
if (_sdf.AirPressureSensor()->PressureNoise().Type() != sdf::NoiseType::NONE)
{
this->dataPtr->noises[AIR_PRESSURE_NOISE_PASCALS] =
NoiseFactory::NewNoiseModel(_sdf.AirPressureSensor()->PressureNoise());
}
this->dataPtr->initialized = true;
return true;
}
//////////////////////////////////////////////////
bool AirPressureSensor::Load(sdf::ElementPtr _sdf)
{
sdf::Sensor sdfSensor;
sdfSensor.Load(_sdf);
return this->Load(sdfSensor);
}
//////////////////////////////////////////////////
bool AirPressureSensor::Update(const ignition::common::Time &_now)
{
IGN_PROFILE("AirPressureSensor::Update");
if (!this->dataPtr->initialized)
{
ignerr << "Not initialized, update ignored.\n";
return false;
}
msgs::FluidPressure msg;
msg.mutable_header()->mutable_stamp()->set_sec(_now.sec);
msg.mutable_header()->mutable_stamp()->set_nsec(_now.nsec);
auto frame = msg.mutable_header()->add_data();
frame->set_key("frame_id");
frame->add_value(this->Name());
// This block of code comes from RotorS:
// https://github.com/ethz-asl/rotors_simulator/blob/master/rotors_gazebo_plugins/src/gazebo_pressure_plugin.cpp
{
// Get the current height.
double height = this->dataPtr->referenceAltitude + this->Pose().Pos().Z();
// Compute the geopotential height.
double geoHeight = kEarthRadiusMeters * height /
(kEarthRadiusMeters + height);
// Compute the temperature at the current altitude in Kelvin.
double tempAtHeight =
kSeaLevelTempKelvin - kTempLapseKelvinPerMeter * geoHeight;
// Compute the current air pressure.
this->dataPtr->pressure =
kPressureOneAtmospherePascals * exp(kAirConstantDimensionless *
log(kSeaLevelTempKelvin / tempAtHeight));
}
// Apply pressure noise
if (this->dataPtr->noises.find(AIR_PRESSURE_NOISE_PASCALS) !=
this->dataPtr->noises.end())
{
this->dataPtr->pressure =
this->dataPtr->noises[AIR_PRESSURE_NOISE_PASCALS]->Apply(
this->dataPtr->pressure);
if (this->dataPtr->noises[AIR_PRESSURE_NOISE_PASCALS]->Type() ==
NoiseType::GAUSSIAN)
{
GaussianNoiseModelPtr gaussian =
std::dynamic_pointer_cast<sensors::GaussianNoiseModel>(
this->dataPtr->noises[AIR_PRESSURE_NOISE_PASCALS]);
msg.set_variance(sqrt(gaussian->StdDev()));
}
}
msg.set_pressure(this->dataPtr->pressure);
// publish
this->AddSequence(msg.mutable_header());
this->dataPtr->pub.Publish(msg);
return true;
}
//////////////////////////////////////////////////
void AirPressureSensor::SetReferenceAltitude(double _reference)
{
this->dataPtr->referenceAltitude = _reference;
}
//////////////////////////////////////////////////
double AirPressureSensor::ReferenceAltitude() const
{
return this->dataPtr->referenceAltitude;
}
IGN_SENSORS_REGISTER_SENSOR(AirPressureSensor)