BarometricFactor.h
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2 
3  * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4  * Atlanta, Georgia 30332-0415
5  * All Rights Reserved
6  * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7 
8  * See LICENSE for the license information
9 
10  * -------------------------------------------------------------------------- */
11 
18 #pragma once
19 
20 #include <gtsam/geometry/Pose3.h>
23 
24 namespace gtsam {
25 
34 class GTSAM_EXPORT BarometricFactor : public NoiseModelFactorN<Pose3, double> {
35  private:
37 
38  double nT_;
39 
40  public:
41 
42  // Provide access to the Matrix& version of evaluateError:
43  using Base::evaluateError;
44 
46  typedef std::shared_ptr<BarometricFactor> shared_ptr;
47 
50 
52  BarometricFactor() : nT_(0) {}
53 
54  ~BarometricFactor() override {}
55 
63  BarometricFactor(Key key, Key baroKey, const double& baroIn,
64  const SharedNoiseModel& model)
65  : Base(model, key, baroKey), nT_(heightOut(baroIn)) {}
66 
69  return std::static_pointer_cast<gtsam::NonlinearFactor>(
71  }
72 
74  void print(
75  const std::string& s = "",
76  const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override;
77 
79  bool equals(const NonlinearFactor& expected,
80  double tol = 1e-9) const override;
81 
83  Vector evaluateError(const Pose3& p, const double& b,
84  OptionalMatrixType H, OptionalMatrixType H2) const override;
85 
86  inline const double& measurementIn() const { return nT_; }
87 
88  inline double heightOut(double n) const {
89  // From https://www.grc.nasa.gov/www/k-12/airplane/atmosmet.html
90  return (std::pow(n / 101.29, 1. / 5.256) * 288.08 - 273.1 - 15.04) /
91  -0.00649;
92  }
93 
94  inline double baroOut(const double& meters) const {
95  double temp = 15.04 - 0.00649 * meters;
96  return 101.29 * std::pow(((temp + 273.1) / 288.08), 5.256);
97  }
98 
99  private:
100 #ifdef GTSAM_ENABLE_BOOST_SERIALIZATION
101  friend class boost::serialization::access;
103  template <class ARCHIVE>
104  void serialize(ARCHIVE& ar, const unsigned int /*version*/) {
105  // NoiseModelFactor1 instead of NoiseModelFactorN for backward compatibility
106  ar& boost::serialization::make_nvp(
107  "NoiseModelFactor1",
108  boost::serialization::base_object<Base>(*this));
109  ar& BOOST_SERIALIZATION_NVP(nT_);
110  }
111 #endif
112 };
113 
114 } // namespace gtsam
H
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy y set format x g set format y g set format x2 g set format y2 g set format z g set angles radians set nogrid set key title set key left top Right noreverse box linetype linewidth samplen spacing width set nolabel set noarrow set nologscale set logscale x set set pointsize set encoding default set nopolar set noparametric set set set set surface set nocontour set clabel set mapping cartesian set nohidden3d set cntrparam order set cntrparam linear set cntrparam levels auto set cntrparam points set size set set xzeroaxis lt lw set x2zeroaxis lt lw set yzeroaxis lt lw set y2zeroaxis lt lw set tics in set ticslevel set tics set mxtics default set mytics default set mx2tics default set my2tics default set xtics border mirror norotate autofreq set ytics border mirror norotate autofreq set ztics border nomirror norotate autofreq set nox2tics set noy2tics set timestamp bottom norotate set rrange[*:*] noreverse nowriteback set trange[*:*] noreverse nowriteback set urange[*:*] noreverse nowriteback set vrange[*:*] noreverse nowriteback set xlabel matrix size set x2label set timefmt d m y n H
Definition: gnuplot_common_settings.hh:74
gtsam::NonlinearFactor::shared_ptr
std::shared_ptr< This > shared_ptr
Definition: NonlinearFactor.h:78
s
RealScalar s
Definition: level1_cplx_impl.h:126
e
Array< double, 1, 3 > e(1./3., 0.5, 2.)
gtsam::BarometricFactor::BarometricFactor
BarometricFactor()
Definition: BarometricFactor.h:52
gtsam::BarometricFactor::clone
gtsam::NonlinearFactor::shared_ptr clone() const override
Definition: BarometricFactor.h:68
gtsam::Vector
Eigen::VectorXd Vector
Definition: Vector.h:38
gtsam::DefaultKeyFormatter
KeyFormatter DefaultKeyFormatter
Assign default key formatter.
Definition: Key.cpp:30
gtsam::BarometricFactor::nT_
double nT_
Height Measurement based on a standard atmosphere.
Definition: BarometricFactor.h:38
n
int n
Definition: BiCGSTAB_simple.cpp:1
gtsam::print
void print(const Matrix &A, const string &s, ostream &stream)
Definition: Matrix.cpp:155
gtsam::KeyFormatter
std::function< std::string(Key)> KeyFormatter
Typedef for a function to format a key, i.e. to convert it to a string.
Definition: Key.h:35
gtsam::Pose3
Definition: Pose3.h:37
NavState.h
Navigation state composing of attitude, position, and velocity.
gtsam::NoiseModelFactorN
Definition: NonlinearFactor.h:431
gtsam::BarometricFactor::This
BarometricFactor This
Typedef to this class.
Definition: BarometricFactor.h:49
cholesky::expected
Matrix expected
Definition: testMatrix.cpp:971
gtsam::BarometricFactor::~BarometricFactor
~BarometricFactor() override
Definition: BarometricFactor.h:54
gtsam::BarometricFactor
Definition: BarometricFactor.h:34
gtsam::BarometricFactor::shared_ptr
std::shared_ptr< BarometricFactor > shared_ptr
shorthand for a smart pointer to a factor
Definition: BarometricFactor.h:46
gtsam::SharedNoiseModel
noiseModel::Base::shared_ptr SharedNoiseModel
Definition: NoiseModel.h:741
ceres::pow
Jet< T, N > pow(const Jet< T, N > &f, double g)
Definition: jet.h:570
model
noiseModel::Diagonal::shared_ptr model
Definition: doc/Code/Pose2SLAMExample.cpp:7
gtsam::BarometricFactor::baroOut
double baroOut(const double &meters) const
Definition: BarometricFactor.h:94
gtsam::equals
Definition: Testable.h:112
gtsam::BarometricFactor::measurementIn
const double & measurementIn() const
Definition: BarometricFactor.h:86
key
const gtsam::Symbol key('X', 0)
gtsam::BarometricFactor::BarometricFactor
BarometricFactor(Key key, Key baroKey, const double &baroIn, const SharedNoiseModel &model)
Constructor from a measurement of pressure in KPa.
Definition: BarometricFactor.h:63
NonlinearFactor.h
Non-linear factor base classes.
gtsam::b
const G & b
Definition: Group.h:79
gtsam::BarometricFactor::heightOut
double heightOut(double n) const
Definition: BarometricFactor.h:88
gtsam
traits
Definition: chartTesting.h:28
gtsam::NonlinearFactor
Definition: NonlinearFactor.h:68
p
float * p
Definition: Tutorial_Map_using.cpp:9
This
#define This
Definition: ActiveSetSolver-inl.h:27
gtsam::BarometricFactor::Base
NoiseModelFactorN< Pose3, double > Base
Definition: BarometricFactor.h:36
gtsam::tol
const G double tol
Definition: Group.h:79
gtsam::OptionalMatrixType
Matrix * OptionalMatrixType
Definition: NonlinearFactor.h:55
gtsam::Key
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:97
Pose3.h
3D Pose


gtsam
Author(s):
autogenerated on Tue Jun 25 2024 03:00:30