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 136 137 138 139 140 141 142 143 144 145 146
|
/***********************************************/
/**
* @file tidesGroup.cpp
*
* @brief Group.
* @see Tides
*
* @author Torsten Mayer-Guerr
* @date 2023-11-13
*
*/
/***********************************************/
#include "base/import.h"
#include "base/sphericalHarmonics.h"
#include "config/config.h"
#include "files/fileMeanPolarMotion.h"
#include "classes/earthRotation/earthRotation.h"
#include "classes/tides/tides.h"
#include "classes/tides/tidesGroup.h"
/***********************************************/
TidesGroup::TidesGroup(Config &config)
{
try
{
readConfig(config, "tides", tides, Config::DEFAULT, "", "");
readConfig(config, "factor", factor, Config::DEFAULT, "1.0", "the result is multiplied by this factor");
if(isCreateSchema(config)) return;
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
Double TidesGroup::potential(const Time &time, const Vector3d &point, const Rotary3d &rotEarth, EarthRotationPtr rotation, EphemeridesPtr ephemerides) const
{
try
{
return factor * tides->potential(time, point, rotEarth, rotation, ephemerides);
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
Double TidesGroup::radialGradient(const Time &time, const Vector3d &point, const Rotary3d &rotEarth, EarthRotationPtr rotation, EphemeridesPtr ephemerides) const
{
try
{
return factor * tides->radialGradient(time, point, rotEarth, rotation, ephemerides);
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
Vector3d TidesGroup::gravity(const Time &time, const Vector3d &point, const Rotary3d &rotEarth, EarthRotationPtr rotation, EphemeridesPtr ephemerides) const
{
try
{
return factor * tides->acceleration(time, point, rotEarth, rotation, ephemerides);
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
Tensor3d TidesGroup::gravityGradient(const Time &time, const Vector3d &point, const Rotary3d &rotEarth, EarthRotationPtr rotation, EphemeridesPtr ephemerides) const
{
try
{
return factor * tides->gradient(time, point, rotEarth, rotation, ephemerides);
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
Vector3d TidesGroup::deformation(const Time &time, const Vector3d &point, const Rotary3d &rotEarth, EarthRotationPtr rotation, EphemeridesPtr ephemerides,
Double gravity, const Vector &hn, const Vector &ln) const
{
try
{
return factor * tides->deformation(time, point, rotEarth, rotation, ephemerides, gravity, hn, ln);
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
void TidesGroup::deformation(const std::vector<Time> &time, const std::vector<Vector3d> &point, const std::vector<Rotary3d> &rotEarth,
EarthRotationPtr rotation, EphemeridesPtr ephemerides, const std::vector<Double> &gravity, const Vector &hn, const Vector &ln,
std::vector<std::vector<Vector3d>> &disp) const
{
try
{
tides->deformation(time, point, rotEarth, rotation, ephemerides, gravity, hn, ln, disp);
if(factor != 1.)
for(auto &ds : disp)
for(auto &d : ds)
d *= factor;
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
SphericalHarmonics TidesGroup::sphericalHarmonics(const Time &time, const Rotary3d &rotEarth, EarthRotationPtr rotation, EphemeridesPtr ephemerides,
UInt maxDegree, UInt minDegree, Double GM, Double R) const
{
try
{
return factor * tides->sphericalHarmonics(time, rotEarth, rotation, ephemerides, maxDegree, minDegree, GM, R);
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
/***********************************************/
|