SimpleTropModel.hpp
Go to the documentation of this file.
1 //==============================================================================
2 //
3 // This file is part of GNSSTk, the ARL:UT GNSS Toolkit.
4 //
5 // The GNSSTk is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU Lesser General Public License as published
7 // by the Free Software Foundation; either version 3.0 of the License, or
8 // any later version.
9 //
10 // The GNSSTk is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with GNSSTk; if not, write to the Free Software Foundation,
17 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
18 //
19 // This software was developed by Applied Research Laboratories at the
20 // University of Texas at Austin.
21 // Copyright 2004-2022, The Board of Regents of The University of Texas System
22 //
23 //==============================================================================
24 
25 //==============================================================================
26 //
27 // This software was developed by Applied Research Laboratories at the
28 // University of Texas at Austin, under contract to an agency or agencies
29 // within the U.S. Department of Defense. The U.S. Government retains all
30 // rights to use, duplicate, distribute, disclose, or release this software.
31 //
32 // Pursuant to DoD Directive 523024
33 //
34 // DISTRIBUTION STATEMENT A: This software has been approved for public
35 // release, distribution is unlimited.
36 //
37 //==============================================================================
38 
39 
40 #ifndef SIMPLE_TROP_MODEL_HPP
41 #define SIMPLE_TROP_MODEL_HPP
42 
43 #include "TropModel.hpp"
44 
45 namespace gnsstk
46 {
48  class SimpleTropModel : public TropModel
49  {
50  public:
53 
58  SimpleTropModel(const WxObservation& wx);
59 
66  SimpleTropModel(const double& T,
67  const double& P,
68  const double& H);
69 
71  virtual std::string name()
72  { return std::string("Simple"); }
73 
75  virtual double dry_zenith_delay() const;
76 
78  virtual double wet_zenith_delay() const;
79 
81  virtual double dry_mapping_function(double elevation) const;
82 
84  virtual double wet_mapping_function(double elevation) const;
85 
87  virtual void setWeather(const double& T,
88  const double& P,
89  const double& H);
90 
92  virtual void setWeather(const WxObservation& wx);
93 
94  private:
95  double Cdrydelay;
96  double Cwetdelay;
97  double Cdrymap;
98  double Cwetmap;
99  };
100 }
101 #endif
gnsstk::SimpleTropModel::Cdrymap
double Cdrymap
computed dry map function
Definition: SimpleTropModel.hpp:97
gnsstk::SimpleTropModel::Cdrydelay
double Cdrydelay
computed dry delay
Definition: SimpleTropModel.hpp:95
gnsstk::SimpleTropModel::SimpleTropModel
SimpleTropModel()
Empty constructor.
Definition: SimpleTropModel.cpp:44
gnsstk::SimpleTropModel::setWeather
virtual void setWeather(const double &T, const double &P, const double &H)
Definition: SimpleTropModel.cpp:71
gnsstk::TropModel
Definition: TropModel.hpp:105
gnsstk::SimpleTropModel::Cwetdelay
double Cwetdelay
computed wet delay
Definition: SimpleTropModel.hpp:96
gnsstk::WxObservation
A Single Weather Observation.
Definition: WxObsMap.hpp:55
TropModel.hpp
gnsstk
For Sinex::InputHistory.
Definition: BasicFramework.cpp:50
gnsstk::SimpleTropModel::wet_mapping_function
virtual double wet_mapping_function(double elevation) const
Definition: SimpleTropModel.cpp:118
gnsstk::SimpleTropModel::dry_zenith_delay
virtual double dry_zenith_delay() const
Definition: SimpleTropModel.cpp:92
gnsstk::SimpleTropModel::dry_mapping_function
virtual double dry_mapping_function(double elevation) const
Definition: SimpleTropModel.cpp:106
gnsstk::TrackingCode::P
@ P
Legacy GPS precise code.
gnsstk::SimpleTropModel::name
virtual std::string name()
Return the name of the model.
Definition: SimpleTropModel.hpp:71
gnsstk::SimpleTropModel
A simple Black model of the troposphere. temp is in Kelvin.
Definition: SimpleTropModel.hpp:48
gnsstk::SimpleTropModel::Cwetmap
double Cwetmap
computed wet map function
Definition: SimpleTropModel.hpp:98
gnsstk::SimpleTropModel::wet_zenith_delay
virtual double wet_zenith_delay() const
Definition: SimpleTropModel.cpp:99


gnsstk
Author(s):
autogenerated on Wed Oct 25 2023 02:40:41