Posmag.hh
7.6 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: Posmag.hh
* Author: hacene
*
* Created on July 21, 2020, 3:42 PM
*/
#ifndef POSMAG_HH
#define POSMAG_HH
#include "MaglibWarpper.hh"
#include "Parameter.hh"
#include "ParamData.hh"
#include "DataTypeMath.hh"
#include "Operation.hh"
#include "SpiceKernelMgr.hh"
#include <vector>
namespace AMDA {
namespace Parameters {
template<typename DataType, class TOutputParamData>
class Posmag : public Operation {
public:
/**
* @brief Constructor.
* @details Create the ParamData type of the input ParamData.
*/
Posmag(Process& pProcess, ParamDataSpec<vector<DataType> >¶mInput, int isatex, int magout) :
Operation(pProcess),
_paramInput(paramInput),
_paramOutput(new TOutputParamData()),
_isatex(isatex),
_magout(magout) {
_paramDataOutput = _paramOutput;
};
/**
* @brief Constructor.
* @details Create the ParamData type of the input ParamData.
*/
Posmag(Process& pProcess, ParamDataSpec<vector<DataType> >¶mInput) :
Operation(pProcess),
_paramInput(paramInput),
_paramOutput(new TOutputParamData()),
_isatex(0),
_magout(2) {
_paramDataOutput = _paramOutput;
}
virtual ~Posmag() {
}
/**
* @overload Operation::write(ParamDataIndexInfo &pParamDataIndexInfo)
*/
void write(ParamDataIndexInfo &pParamDataIndexInfo) {
for (unsigned int _index = pParamDataIndexInfo._startIndex;
_index < pParamDataIndexInfo._startIndex + pParamDataIndexInfo._nbDataToProcess;
++_index) {
vector<DataType> in = _paramInput.getDataList()[_index];
double crtTime = _paramInput.getTime(_index);
ime_t timestamp = crtTime;
struct tm *tmp;
tmp = gmtime(×tamp);
float i_rrmag = in[0];
float i_thetr = in[1];
float i_phir = in[2];
/*
PAR xgsm (O) : coordonnee solaire magnetospherique en x (rayons terrestres)
PAR ygsm (O) : coordonnee solaire magnetospherique en y (rayons terrestres)
PAR zgsm (O) : coordonnee solaire magnetospherique en z (rayons terrestres)
PAR xgse (O) : coordonnee solaire ecliptique en x (rayons terrestres)
PAR ygse (O) : coordonnee solaire ecliptique en y (rayons terrestres)
PAR zgse (O) : coordonnee solaire ecliptique en z (rayons terrestres)
PAR tgl (O) : temps geomagnetique local du satellite
: (heures fractionnaires)
PAR flg (O) : parametre L de Galperin
PAR xlamb (O) : latitude invariante (radians)
PAR tglc (O) : temps geomagnetique local du point conjugue
: (heures fractionnaires)
PAR hsl (O) : hauteur de l'ombre (kilometres)
PAR clatgm (O) : latitude geomagnetique (radians)
PAR clongm (O) : longitude geomagnetique (radians)
PAR iposmg (O) : tableau (dim=15) des indicateurs de positions
PAR ier (O) : code de retour
*/
float xgsm, ygsm, zgsm, xgse, ygse, zgse, tgl,
flg, xlambr, tglc, hsl, fclatgmr, clongmr,
tgl, flg, xlambr, tglc, hsl, clatgmr, clongmr, xlamb, clatgm, clongm;
int ifail;
int iposmg[15];
/**
static void getPosmag(int iyear, int imonth, int iday, int ihour, int imin, int isec, float* rrmag, float* thetr, float* phir,
int* isatex, int* magout, float* xgsm, float* ygsm, float* zgsm, float* xgse, float* ygse, float* zgse, float* tgl,
float* flg, float* xlambr, float* tglc, float* hsl, float* clatgmr, float* clongmr, float * iposmg[15], int* ifai)
*/
maglib::maglibWarpper::getPosmag(1900 + tmp->tm_year, 1 + tmp->tm_yday, tmp->tm_hour,
tmp->tm_min, tmp->tm_sec, i_rrmag, i_thetr, i_phir, _isatex, _magout, xgsm, ygsm, zgsm, xgse, ygse, zgse, tgl,
flg, xlambr, tglc, hsl, fclatgmr, clongmr, iposmg, ifail);
DataType tgl_res = (DataType) tgl;
DataType xlamb_res = (DataType) xlamb;
DataType flg_res = (DataType) flg;
_paramOutput->pushTime(crtTime);
pushData(tgl_res, xlamb_res, flg_res);
}
}
virtual void pushData(DataType tgl, DataType xlamb, DataType flg) = 0;
protected:
int _isatex;
int _magout;
private:
ParamDataSpec<std::vector<DataType> >& _paramInput;
ParamDataSpec<DataType>* _paramOutput;
};
/**
* Ecriture de temps geomagnetique local du satellite (heure fractionnée)
*/
template<typename DataType>
class MLT : public Posmag<DataType, ParamDataSpec < DataType > >{
MLT(Process& pProcess, ParamDataSpec<vector<DataType> >& paramInput, int isatex, int magout):
Posmag<DataType, ParamDataSpec < DataType > > :: Posmag(pProcess, paramInput, isatex, magout){
}
void pushData(DataType tgl, DataType /*xlamb*/, DataType /*flg*/){
Posmag<DataType, ParamDataSpec < DataType > > :: _paramDataOutput.getDataList().push_back(tgl);
}
};
/**
* Ecriture de invariant latitude
*/
template<typename DataType>
class InvLat : public Posmag<DataType, ParamDataSpec < DataType > >{
InvLat(Process& pProcess, ParamDataSpec<vector<DataType> >& paramInput, int isatex, int magout):
Posmag<DataType, ParamDataSpec < DataType > > :: Posmag(pProcess, paramInput, isatex, magout){
}
void pushData(DataType /*tgl*/, DataType xlamb, DataType /*flg*/){
Posmag<DataType, ParamDataSpec < DataType > > :: _paramDataOutput.getDataList().push_back(xlamb);
}
};
/**
* Ecriture du parametre L
*/
template<typename DataType>
class Lparam : public Posmag<DataType, ParamDataSpec < DataType > >{
Lparam(Process& pProcess, ParamDataSpec<vector<DataType> >& paramInput, int isatex, int magout):
Posmag<DataType, ParamDataSpec < DataType > > :: Posmag(pProcess, paramInput, isatex, magout){
}
void pushData(DataType /*tgl*/, DataType /*xlamb*/, DataType flg){
Posmag<DataType, ParamDataSpec < DataType > > :: _paramDataOutput.getDataList().push_back(flg);
}
};
}
}
#endif /* POSMAG_HH */