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
|
/***********************************************/
/**
* @file tideGeneratingPotential.h
*
* @brief Tide generating potential.
*
* @author Torsten Mayer-Guerr
* @date 2008-01-30
*
*/
/***********************************************/
#ifndef __GROOPS_TIDEGENERATINGPOTENTIAL__
#define __GROOPS_TIDEGENERATINGPOTENTIAL__
#include "base/importStd.h"
#include "base/time.h"
#include "base/matrix.h"
#include "base/doodson.h"
/***** CLASS ***********************************/
/**
* @brief Single constituent of the tide generatin potential.
* @ingroup base
* The potential can be computed with
* @f[ V_{tide}(\lambda,\vartheta,r) = \left(\frac{r}{R}\right)^2 ((c\cos(\theta_f)+s\sin(\theta_f))C_{2m} + (s\cos(\theta_f)-c\sin(\theta_f))S_{2m}) @f]
* R is @a DEFAULT_R, m is @a d[0] of the Doodson number (long periodic, diurnal, semidiurnal).
* c and s with unit m^2/s^2.
* @see TideGeneratingPotential
* @relates TideGeneratingPotential */
class TideGeneratingConstituent : public Doodson
{
public:
UInt degree; //!< spherical harmonics degree.
Double c, s; //!< potential [m^2/s^2].
/// Default Constructor.
TideGeneratingConstituent() : degree(0), c(0), s(0) {}
/// Constructor.
TideGeneratingConstituent(const Doodson &doodson, UInt degree, Double c, Double s) : Doodson(doodson), degree(degree), c(c), s(s) {}
/// Amplitude [m^2/s^2].
Double amplitude() const {return std::sqrt(c*c+s*s);}
/// Admitance factor [m^2/s^2].
Double admit() const {return c+s;}
/** @brief Doodson-Wartburg phase correction.
* Possible values: 0, PI, +-PI/2.
* see IERS conventions 2003, table 6.4. */
Double xi() const;
/** @brief Implementation of Comparable (comparison of frequency). */
Bool operator== (const TideGeneratingConstituent &x) const {return (d == x.d) && (degree == x.degree);}
/** @brief Implementation of Comparable (comparison of frequency). */
Bool operator!= (const TideGeneratingConstituent &x) const {return (d != x.d) || (degree != x.degree);}
/** @brief Implementation of Comparable (comparison of frequency). */
Bool operator< (const TideGeneratingConstituent &x) const {return (d == x.d) ? (degree < x.degree) : (frequency() < x.frequency());}
};
/***** CLASS ***********************************/
/**
@brief Tide generating potential of sun and moon.
* @ingroup base
*/
class TideGeneratingPotential : public std::vector<TideGeneratingConstituent>
{
public:
/** @brief Doodson-Wartburg phase correction.
* Possible values: 0, PI, +-PI/2.
* see IERS conventions 2003, table 6.4. */
Double xi(const Doodson &doodson) const;
};
/***********************************************/
inline Double TideGeneratingConstituent::xi() const
{
try
{
Double phase = std::atan2(s, c);
if(degree == 2)
{
if(d[0] == 0) return std::fmod(phase + PI, 2*PI); // c
if(d[0] == 1) return std::fmod(phase + PI, 2*PI); // s
if(d[0] == 2) return phase; // c
}
if(degree == 3)
{
if(d[0] == 0) return phase; // s
if(d[0] == 1) return std::fmod(phase + PI, 2*PI); // c
if(d[0] == 2) return std::fmod(phase + PI, 2*PI); // s
if(d[0] == 3) return phase; // c
}
throw(Exception("xi not (yet) defined for "+code()));
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
inline Double TideGeneratingPotential::xi(const Doodson &doodson) const
{
try
{
if(doodson == Doodson(std::vector<Int>{0, 0, 1, 0, 0, 0})) // special case: SA
return 0;
if(doodson == Doodson(std::vector<Int>{1, 1,-1, 0, 0, 0})) // special case: S1
return PI;
if(doodson == Doodson(std::vector<Int>{3, 3,-4, 0, 0, 0})) // non-linear T3
return 0;
if(doodson == Doodson(std::vector<Int>{3, 3,-2, 0, 0, 0})) // non-linear R3
return 0;
if(doodson.d[0] > 3) // non-linear tides
return 0;
for(UInt i=0; i<size(); i++)
if(doodson == at(i))
return at(i).xi();
throw(Exception("constituent "+doodson.code()+" not in list"));
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
#endif
|