00001 #pragma ident "$Id: SolidTides.hpp 2741 2011-06-22 16:37:02Z nwu $"
00002
00008 #ifndef SOLIDTIDES_HPP
00009 #define SOLIDTIDES_HPP
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include <cmath>
00035 #include <string>
00036
00037 #include "DayTime.hpp"
00038 #include "Triple.hpp"
00039 #include "Position.hpp"
00040 #include "icd_200_constants.hpp"
00041 #include "AstronomicalFunctions.hpp"
00042 #include "SunPosition.hpp"
00043 #include "MoonPosition.hpp"
00044
00045
00046
00047 namespace gpstk
00048 {
00051
00063 class SolidTides
00064 {
00065 public:
00066
00068 SolidTides() throw() {}
00069
00071 virtual ~SolidTides() {}
00072
00073
00087 Triple getSolidTide(const DayTime& t,
00088 const Position& p) const
00089 throw(InvalidRequest);
00090
00091
00092 private:
00093
00095 static const double H_LOVE, L_LOVE;
00096
00098 static const double PH_LAG;
00099
00100
00101 };
00102
00103
00105
00106 }
00107 #endif // SOLIDTIDES_HPP