Blame view

src/ExternLib/Maglib/Posmag.hh 7.6 KB
0b31214e   Hacene SI HADJ MOHAND   Maglib
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
/*
 * 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> >&paramInput, 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> >&paramInput) :
            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(&timestamp);
d7cb2fe5   Hacene SI HADJ MOHAND   progress
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
                    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) 
                     */
0b31214e   Hacene SI HADJ MOHAND   Maglib
114
115

                    maglib::maglibWarpper::getPosmag(1900 + tmp->tm_year, 1 + tmp->tm_yday, tmp->tm_hour,
d7cb2fe5   Hacene SI HADJ MOHAND   progress
116
117
118
119
120
121
122
123
                            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);
0b31214e   Hacene SI HADJ MOHAND   Maglib
124
125
                }

d7cb2fe5   Hacene SI HADJ MOHAND   progress
126

0b31214e   Hacene SI HADJ MOHAND   Maglib
127
            }
d7cb2fe5   Hacene SI HADJ MOHAND   progress
128
            virtual void pushData(DataType tgl, DataType xlamb, DataType flg) = 0;
0b31214e   Hacene SI HADJ MOHAND   Maglib
129
130
131
132

        protected:
            int _isatex;
            int _magout;
d7cb2fe5   Hacene SI HADJ MOHAND   progress
133
134
135
136
137
138
139
140
            private:
                ParamDataSpec<std::vector<DataType> >& _paramInput;
                ParamDataSpec<DataType>* _paramOutput;
        };
       
        /**
         * Ecriture de temps geomagnetique local du satellite (heure fractionnée)
         */
6774d8ba   Hacene SI HADJ MOHAND   progressss
141
142
        template<typename DataType>
        class MLT : public Posmag<DataType, ParamDataSpec < DataType > >{
d7cb2fe5   Hacene SI HADJ MOHAND   progress
143
144
            
               MLT(Process& pProcess, ParamDataSpec<vector<DataType> >& paramInput, int isatex, int magout):
6774d8ba   Hacene SI HADJ MOHAND   progressss
145
                Posmag<DataType, ParamDataSpec < DataType > > :: Posmag(pProcess, paramInput, isatex, magout){
d7cb2fe5   Hacene SI HADJ MOHAND   progress
146
147
148
149
                }
            
            void pushData(DataType tgl, DataType /*xlamb*/, DataType /*flg*/){
                
6774d8ba   Hacene SI HADJ MOHAND   progressss
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
                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);
d7cb2fe5   Hacene SI HADJ MOHAND   progress
167
                }
6774d8ba   Hacene SI HADJ MOHAND   progressss
168
169
170
171
172
173
174
        };
        
                        /**
         * Ecriture du parametre L
         */
        template<typename DataType>
        class Lparam : public Posmag<DataType, ParamDataSpec < DataType > >{
d7cb2fe5   Hacene SI HADJ MOHAND   progress
175
            
6774d8ba   Hacene SI HADJ MOHAND   progressss
176
177
178
               Lparam(Process& pProcess, ParamDataSpec<vector<DataType> >& paramInput, int isatex, int magout):
                Posmag<DataType, ParamDataSpec < DataType > > :: Posmag(pProcess, paramInput, isatex, magout){
                }
d7cb2fe5   Hacene SI HADJ MOHAND   progress
179
            
6774d8ba   Hacene SI HADJ MOHAND   progressss
180
181
182
183
            void pushData(DataType /*tgl*/, DataType /*xlamb*/, DataType flg){
                
                Posmag<DataType, ParamDataSpec < DataType > > :: _paramDataOutput.getDataList().push_back(flg);
                }
0b31214e   Hacene SI HADJ MOHAND   Maglib
184
        };
6774d8ba   Hacene SI HADJ MOHAND   progressss
185
        
0b31214e   Hacene SI HADJ MOHAND   Maglib
186
    }
d7cb2fe5   Hacene SI HADJ MOHAND   progress
187
    
0b31214e   Hacene SI HADJ MOHAND   Maglib
188
189
190
191
}


#endif /* POSMAG_HH */