GCATTropModel.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 GCAT_TROP_MODEL_HPP
41 #define GCAT_TROP_MODEL_HPP
42 
43 #include "TropModel.hpp"
44 
45 namespace gnsstk
46 {
85  class GCATTropModel : public TropModel
86  {
87  public:
88 
89 
92  { valid = false; };
93 
94 
100  GCATTropModel(const double& ht);
101 
102 
104  virtual std::string name()
105  { return std::string("GCAT"); }
106 
113  virtual double correction(double elevation) const;
114 
115 
128  virtual double correction( const Position& RX,
129  const Position& SV );
130 
131 
137  virtual double correction( const Position& RX,
138  const Position& SV,
139  const CommonTime& tt )
140  { return correction(RX, SV); };
141 
142 
148  virtual double correction( const Xvt& RX,
149  const Xvt& SV,
150  const CommonTime& tt );
151 
152 
154  virtual double dry_zenith_delay() const;
155 
156 
158  virtual double wet_zenith_delay() const
159  { return 0.1; };
160 
161 
169  virtual double mapping_function(double elevation) const;
170 
171 
173  virtual double dry_mapping_function(double elevation) const
174  { return mapping_function(elevation); };
175 
176 
178  virtual double wet_mapping_function(double elevation) const
179  { return mapping_function(elevation); };
180 
181 
186  virtual void setWeather( const double& T,
187  const double& P,
188  const double& H )
189  {}
190 
191 
196  virtual void setWeather(const WxObservation& wx)
197  {}
198 
199 
201  virtual void setReceiverHeight(const double& ht);
202 
203 
204  private:
205 
207  double gcatHeight;
208  };
209 }
210 #endif
gnsstk::GCATTropModel::gcatHeight
double gcatHeight
Receiver height.
Definition: GCATTropModel.hpp:207
gnsstk::GCATTropModel
Definition: GCATTropModel.hpp:85
gnsstk::GCATTropModel::setReceiverHeight
virtual void setReceiverHeight(const double &ht)
Definition: GCATTropModel.cpp:126
gnsstk::GCATTropModel::mapping_function
virtual double mapping_function(double elevation) const
Definition: GCATTropModel.cpp:113
gnsstk::TropModel
Definition: TropModel.hpp:105
gnsstk::WxObservation
A Single Weather Observation.
Definition: WxObsMap.hpp:55
TropModel.hpp
gnsstk
For Sinex::InputHistory.
Definition: BasicFramework.cpp:50
gnsstk::GCATTropModel::setWeather
virtual void setWeather(const WxObservation &wx)
Definition: GCATTropModel.hpp:196
gnsstk::GCATTropModel::name
virtual std::string name()
Return the name of the model.
Definition: GCATTropModel.hpp:104
gnsstk::GCATTropModel::dry_mapping_function
virtual double dry_mapping_function(double elevation) const
Definition: GCATTropModel.hpp:173
gnsstk::CommonTime
Definition: CommonTime.hpp:84
gnsstk::GCATTropModel::correction
virtual double correction(double elevation) const
Definition: GCATTropModel.cpp:51
gnsstk::GCATTropModel::wet_zenith_delay
virtual double wet_zenith_delay() const
Definition: GCATTropModel.hpp:158
gnsstk::Xvt
Definition: Xvt.hpp:60
gnsstk::TropModel::valid
bool valid
true only if current model parameters are valid
Definition: TropModel.hpp:279
gnsstk::GCATTropModel::wet_mapping_function
virtual double wet_mapping_function(double elevation) const
Definition: GCATTropModel.hpp:178
gnsstk::GCATTropModel::correction
virtual double correction(const Position &RX, const Position &SV, const CommonTime &tt)
Definition: GCATTropModel.hpp:137
gnsstk::GCATTropModel::GCATTropModel
GCATTropModel()
Empty constructor.
Definition: GCATTropModel.hpp:91
gnsstk::GCATTropModel::dry_zenith_delay
virtual double dry_zenith_delay() const
Definition: GCATTropModel.cpp:103
gnsstk::Position
Definition: Position.hpp:136
gnsstk::GCATTropModel::setWeather
virtual void setWeather(const double &T, const double &P, const double &H)
Definition: GCATTropModel.hpp:186


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