KT17.hh
5.38 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
/*
* File: KT17.hh
* Author: Furkan - AKKA I&S
*
* Created on January 19, 2022, 4:14 PM
*/
#ifndef KT17_HH
#define KT17_HH
#include "libkt17.h" // If we name it this way
#include "Parameter.hh"
#include "ParamData.hh"
#include "DataTypeMath.hh"
#include "Operation.hh"
#include <vector>
using namespace std;
namespace AMDA
{
namespace Parameters
{
template <typename DataType, class TOutputParamData>
class KT17 : public Operation
{
public:
KT17(Process &pProcess, ParamDataSpec<vector<DataType>> ¶mInput, const std::string &modelname)
: Operation(pProcess), _paramInput(paramInput),
_paramOutput(new TOutputParamData()), _modelname(modelname)
{
_paramDataOutput = _paramOutput;
}
virtual ~KT17()
{
}
void write(ParamDataIndexInfo &pParamDataIndexInfo)
{
for (unsigned int _index = pParamDataIndexInfo._startIndex;
_index < pParamDataIndexInfo._startIndex + pParamDataIndexInfo._nbDataToProcess;
++_index)
{
vector<DataType> in = _paramInput.getDataList()[_index];
if (in[0] == 0)
in[0] = 1e-31;
double crtTime = _paramInput.getTime(_index);
vector<DataType> outputBxyz, outputBrtp;
outputBxyz.resize(3);
outputBrtp.resize(3);
DataType outputBm;
/* Creation of the output vectors */
if (_outputCoord == "cart")
{
GetJupiterField(in, true, outputBxyz);
}
else if (_outputCoord == "pol" || _outputCoord == "mag")
{
GetJupiterField(in, false, outputBrtp);
}
outputBm = sqrt(outputBrtp[0] * outputBrtp[0] + outputBrtp[1] * outputBrtp[1] + outputBrtp[2] * outputBrtp[2]);
_paramOutput->pushTime(crtTime);
pushResult(outputBrtp, outputBm, outputBxyz);
}
}
int GetJupiterField(vector<DataType> &inputCartCoord, bool SetCartOut, vector<DataType> &outputB) // To change ofc
{
/* set the model */
_internalModel.SetModel(_modelname.c_str());
/* set intput and output coordinates */
_internalModel.SetCartIn(true);
_internalModel.SetCartOut(SetCartOut);
/* output field */
double Br, Bt, Bp;
_internalModel.Field(inputCartCoord[0], inputCartCoord[1], inputCartCoord[2], &Br, &Bt, &Bp);
/* Con2020 calculation to add if necessary */
double Be0, Be1, Be2;
if (_addCon2020 > 0)
{
_con2020.SetCartIn(true);
_con2020.SetCartOut(SetCartOut);
switch (_addCon2020)
{
case 1:
_con2020.SetEqType("analytic"); // Fast
break;
case 2:
_con2020.SetEqType("integral"); // Slow
break;
case 3:
_con2020.SetEqType("hybrid"); // In between
break;
default:
_con2020.SetEqType("analytic");
break;
}
_con2020.Field(inputCartCoord[0], inputCartCoord[1], inputCartCoord[2], &Be0, &Be1, &Be2);
}
else
{
Be0 = 0.0;
Be1 = 0.0;
Be2 = 0.0;
}
outputB[0] = Br + Be0;
outputB[1] = Bt + Be1;
outputB[2] = Bp + Be2;
return true;
}
protected:
virtual void
pushResult(vector<DataType> field_pol, DataType magnitude_, vector<DataType> field_cart) = 0;
ParamDataSpec<std::vector<DataType>> &_paramInput;
TOutputParamData *_paramOutput;
Con2020 _con2020;
InternalModel _internalModel;
std::string _modelname;
string _outputCoord;
unsigned int _addCon2020;
};
template <typename DataType>
class KT17Proc : public KT17<DataType, ParamDataSpec<vector<DataType>>>
{
public:
/**
* @brief Constructor.
* @details Create the ParamData type of the input ParamData.
*/
KT17Proc(Process &pProcess, ParamDataSpec<vector<DataType>> ¶mInput, const std::string &modelname, const unsigned int addCon2020) : KT17<DataType, ParamDataSpec<vector<DataType>>>(pProcess, paramInput, modelname, "cart")
{
}
virtual ~KT17Proc()
{
}
protected:
virtual void pushResult(vector<DataType> /*_fieldPol*/, DataType /*magnitude_*/, vector<DataType> _fieldCart)
{
KT17<DataType, ParamDataSpec<vector<DataType>>>::_paramOutput->getDataList().push_back(_fieldCart);
}
};
}
}
#endif /* KT17.hh */