File: orbit2BetaPrimeAngle.cpp

package info (click to toggle)
groops 0%2Bgit20250907%2Bds-1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 11,140 kB
  • sloc: cpp: 135,607; fortran: 1,603; makefile: 20
file content (115 lines) | stat: -rw-r--r-- 4,044 bytes parent folder | download | duplicates (2)
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
/***********************************************/
/**
* @file orbit2BetaPrimeAngle.cpp
*
* @brief Computes beta prime angle.
*
* @author Beate Klinger
* @author Norbert Zehentner
* @date 2016-08-01
*
*/
/***********************************************/

// Latex documentation
#define DOCSTRING docstring
static const char *docstring = R"(
This program computes the beta prime angle (between the orbital plane and earth-sun direction)
and writes it as MISCVALUE(S) \file{instrument file}{instrument}. The angle is calculated w.r.t the sun (per default),
but can be changed.
The data of \configFile{inputfileInstrument}{instrument} are appended as values to each epoch.
)";

/***********************************************/

#include "programs/program.h"
#include "files/fileInstrument.h"
#include "classes/ephemerides/ephemerides.h"

/***** CLASS ***********************************/

/** @brief Beta prime angle.
* @ingroup programsGroup */
class Orbit2BetaPrimeAngle
{
public:
  void run(Config &config, Parallel::CommunicatorPtr comm);
};

GROOPS_REGISTER_PROGRAM(Orbit2BetaPrimeAngle, PARALLEL, "Beta prime angle", Orbit, Instrument)
GROOPS_RENAMED_PROGRAM(InstrumentOrbit2BetaPrimeAngle, Orbit2BetaPrimeAngle, date2time(2020, 05, 25))

/***********************************************/

void Orbit2BetaPrimeAngle::run(Config &config, Parallel::CommunicatorPtr comm)
{
  try
  {
    FileName              fileNameOut, fileNameOrbit;
    std::vector<FileName> fileNamesInstrument;
    EphemeridesPtr        ephemerides;
    Ephemerides::Planet   planet;
    std::string           choice;

    readConfig(config, "outputfileBetaAngle", fileNameOut,         Config::MUSTSET,  "",    "instrument file (MISCVALUE(S): beta', ...)");
    readConfig(config, "inputfileOrbit",      fileNameOrbit,       Config::MUSTSET,  "",    "");
    readConfig(config, "inputfileInstrument", fileNamesInstrument, Config::OPTIONAL, "",    "data are appended");
    readConfig(config, "ephemerides",         ephemerides,         Config::MUSTSET,  "",    "");
    readConfig(config, "planet",              planet,              Config::DEFAULT,  "sun", "");
    if(isCreateSchema(config)) return;

    // =======================

    logStatus<<"computing beta prime angle"<<Log::endl;
    InstrumentFile orbitFile(fileNameOrbit);
    UInt dataCount = 2;  // time, beta
    std::vector<InstrumentFilePtr> instrumentFile;
    for(auto &fileName : fileNamesInstrument)
    {
      instrumentFile.push_back(InstrumentFile::newFile(fileName));
      InstrumentFile::checkArcCount({orbitFile, *instrumentFile.back()});
      dataCount += instrumentFile.back()->dataCount(TRUE/*mustDefined*/);
    }

    std::vector<Arc> arcList(orbitFile.arcCount());
    Parallel::forEach(arcList, [&] (UInt arcNo)
    {
      const OrbitArc orbit = orbitFile.readArc(arcNo);
      Matrix A(orbit.size(), dataCount);
      for(UInt i=0; i<orbit.size(); i++)
      {
        if(orbit.at(i).velocity.r()==0)
          throw(Exception("no velocity given"));
        const Vector3d planetPos = normalize(ephemerides->position(orbit.at(i).time, planet)); // direction from central-body to planet (earth-sun direction)
        A(i, 1) = std::acos(inner(normalize(crossProduct(normalize(orbit.at(i).velocity), normalize(orbit.at(i).position))), planetPos)) - PI/2;
      }

      UInt idx = 2;
      for(auto &file: instrumentFile)
      {
        Arc arc = file->readArc(arcNo);
        Arc::checkSynchronized({orbit, arc});
        Matrix B = arc.matrix();
        copy(B.column(1, B.columns()-1), A.column(idx, B.columns()-1));
        idx += B.columns()-1;
      }

      return Arc(orbit.times(), A);
    }, comm);

    // write results
    // -------------
    if(Parallel::isMaster(comm))
    {
      logStatus<<"write beta prime angle to file <"<<fileNameOut<<">"<<Log::endl;
      InstrumentFile::write(fileNameOut, arcList);
      Arc::printStatistics(arcList);
    }
  }
  catch(std::exception &e)
  {
    GROOPS_RETHROW(e)
  }
}

/***********************************************/