OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
FM3DDynamic.cpp
Go to the documentation of this file.
1 #include "Fields/FM3DDynamic.h"
2 #include "Fields/Fieldmap.hpp"
4 #include "Utilities/Util.h"
5 #include "Utilities/Options.h"
7 
8 #include "Physics/Physics.h"
9 
10 #include <fstream>
11 #include <ios>
12 
13 
14 FM3DDynamic::FM3DDynamic(std::string aFilename):
15  Fieldmap(aFilename),
16  FieldstrengthEz_m(NULL),
17  FieldstrengthEx_m(NULL),
18  FieldstrengthEy_m(NULL),
19  FieldstrengthBz_m(NULL),
20  FieldstrengthBx_m(NULL),
21  FieldstrengthBy_m(NULL)
22 {
23 
24  std::string tmpString;
25  double tmpDouble;
26 
27  Type = T3DDynamic;
28  std::ifstream file(Filename_m.c_str());
29 
30  if(file.good()) {
31  bool parsing_passed = true;
32  try {
33  parsing_passed = interpretLine<std::string>(file, tmpString);
34  } catch (GeneralClassicException &e) {
35  parsing_passed = interpretLine<std::string, std::string>(file, tmpString, tmpString);
36 
37  tmpString = Util::toUpper(tmpString);
38  if (tmpString != "TRUE" &&
39  tmpString != "FALSE")
40  throw GeneralClassicException("FM3DDynamic::FM3DDynamic",
41  "The second string on the first line of 3D field "
42  "maps has to be either TRUE or FALSE");
43 
44  normalize_m = (tmpString == "TRUE");
45  }
46 
47  parsing_passed = parsing_passed &&
48  interpretLine<double>(file, frequency_m);
49  parsing_passed = parsing_passed &&
50  interpretLine<double, double, unsigned int>(file, xbegin_m, xend_m, num_gridpx_m);
51  parsing_passed = parsing_passed &&
52  interpretLine<double, double, unsigned int>(file, ybegin_m, yend_m, num_gridpy_m);
53  parsing_passed = parsing_passed &&
54  interpretLine<double, double, unsigned int>(file, zbegin_m, zend_m, num_gridpz_m);
55 
56  for(unsigned long i = 0; (i < (num_gridpz_m + 1) * (num_gridpx_m + 1) * (num_gridpy_m + 1)) && parsing_passed; ++ i) {
57  parsing_passed = parsing_passed &&
58  interpretLine<double>(file,
59  tmpDouble,
60  tmpDouble,
61  tmpDouble,
62  tmpDouble,
63  tmpDouble,
64  tmpDouble);
65  }
66 
67  parsing_passed = parsing_passed &&
68  interpreteEOF(file);
69 
70  file.close();
71 
72  if(!parsing_passed) {
74  zend_m = zbegin_m - 1e-3;
75  throw GeneralClassicException("FM3DDynamic::FM3DDynamic",
76  "An error occured when reading the fieldmap '" + Filename_m + "'");
77  } else {
79 
80  xbegin_m /= 100.0;
81  xend_m /= 100.0;
82  ybegin_m /= 100.0;
83  yend_m /= 100.0;
84  zbegin_m /= 100.0;
85  zend_m /= 100.0;
86 
90 
91  num_gridpx_m++;
92  num_gridpy_m++;
93  num_gridpz_m++;
94 
95  }
96  } else {
98  zbegin_m = 0.0;
99  zend_m = -1e-3;
100  }
101 }
102 
103 
105  freeMap();
106 }
107 
109  if(FieldstrengthEz_m == NULL) {
110 
111  std::ifstream in(Filename_m.c_str());
112  std::string tmpString;
113  const size_t totalSize = num_gridpx_m * num_gridpy_m * num_gridpz_m;
114 
115  getLine(in, tmpString);
116  getLine(in, tmpString);
117  getLine(in, tmpString);
118  getLine(in, tmpString);
119  getLine(in, tmpString);
120 
121  FieldstrengthEz_m = new double[totalSize];
122  FieldstrengthEx_m = new double[totalSize];
123  FieldstrengthEy_m = new double[totalSize];
124  FieldstrengthBz_m = new double[totalSize];
125  FieldstrengthBx_m = new double[totalSize];
126  FieldstrengthBy_m = new double[totalSize];
127 
128  long ii = 0;
129  for(unsigned int i = 0; i < num_gridpx_m; ++ i) {
130  for(unsigned int j = 0; j < num_gridpy_m; ++ j) {
131  for(unsigned int k = 0; k < num_gridpz_m; ++ k) {
132  interpretLine<double>(in,
133  FieldstrengthEx_m[ii],
134  FieldstrengthEy_m[ii],
135  FieldstrengthEz_m[ii],
136  FieldstrengthBx_m[ii],
137  FieldstrengthBy_m[ii],
138  FieldstrengthBz_m[ii]);
139  ++ ii;
140  }
141  }
142  }
143  in.close();
144 
145  const unsigned int deltaX = num_gridpy_m * num_gridpz_m;
146  const unsigned int deltaY = num_gridpz_m;
147  double Ezmax = 0.0;
148 
149  if (normalize_m) {
150  int index_x = static_cast<int>(ceil(-xbegin_m / hx_m));
151  double lever_x = index_x * hx_m + xbegin_m;
152  if(lever_x > 0.5) {
153  -- index_x;
154  }
155 
156  int index_y = static_cast<int>(ceil(-ybegin_m / hy_m));
157  double lever_y = index_y * hy_m + ybegin_m;
158  if(lever_y > 0.5) {
159  -- index_y;
160  }
161 
162 
163  ii = index_x * deltaX + index_y * deltaY;
164  for(unsigned int i = 0; i < num_gridpz_m; i++) {
165  if(std::abs(FieldstrengthEz_m[ii]) > Ezmax) {
166  Ezmax = std::abs(FieldstrengthEz_m[ii]);
167  }
168  ++ ii;
169  }
170  } else {
171  Ezmax = 1.0;
172  }
173 
174  for(unsigned long i = 0; i < totalSize; ++ i) {
175 
176  FieldstrengthEx_m[i] *= 1e6 / Ezmax;
177  FieldstrengthEy_m[i] *= 1e6 / Ezmax;
178  FieldstrengthEz_m[i] *= 1e6 / Ezmax;
179  FieldstrengthBx_m[i] *= Physics::mu_0 / Ezmax;
180  FieldstrengthBy_m[i] *= Physics::mu_0 / Ezmax;
181  FieldstrengthBz_m[i] *= Physics::mu_0 / Ezmax;
182  }
183 
184  INFOMSG(level3 << typeset_msg("read in fieldmap '" + Filename_m + "'", "info") << "\n"
185  << endl);
186 
187  if (Options::ebDump) {
188  std::vector<Vector_t> ef(num_gridpz_m * num_gridpy_m * num_gridpx_m, 0.0);
189  std::vector<Vector_t> bf(ef);
190  unsigned long l = 0;
191  for (unsigned long k = 0; k < num_gridpz_m; ++ k) {
192  const unsigned long index_z = k;
193  for (unsigned long j = 0; j < num_gridpy_m; ++ j) {
194  const unsigned long index_y = j * deltaY;
195  for (unsigned long i = 0; i < num_gridpx_m; ++ i) {
196  const unsigned long index = i * deltaX + index_y + index_z;
197  ef[l] = Vector_t(FieldstrengthEx_m[index],
198  FieldstrengthEy_m[index],
199  FieldstrengthEz_m[index]);
200  bf[l] = Vector_t(FieldstrengthBx_m[index],
201  FieldstrengthBy_m[index],
202  FieldstrengthBz_m[index]);
203  ++ l;
204  }
205  }
206  }
208  num_gridpy_m,
209  num_gridpz_m,
210  std::make_pair(xbegin_m, xend_m),
211  std::make_pair(ybegin_m, yend_m),
212  std::make_pair(zbegin_m, zend_m),
213  ef,
214  bf);
215  }
216  }
217 }
218 
220  if(FieldstrengthEz_m != NULL) {
221  delete[] FieldstrengthEz_m;
222  delete[] FieldstrengthEx_m;
223  delete[] FieldstrengthEy_m;
224  delete[] FieldstrengthBz_m;
225  delete[] FieldstrengthBx_m;
226  delete[] FieldstrengthBy_m;
227 
228  FieldstrengthEz_m = NULL;
229  FieldstrengthEx_m = NULL;
230  FieldstrengthEy_m = NULL;
231  FieldstrengthBz_m = NULL;
232  FieldstrengthBx_m = NULL;
233  FieldstrengthBy_m = NULL;
234 
235  INFOMSG(level3 << typeset_msg("freed fieldmap '" + Filename_m + "'", "info") << "\n"
236  << endl);
237  }
238 }
239 
241  const unsigned int index_x = static_cast<int>(std::floor((R(0) - xbegin_m) / hx_m));
242  const double lever_x = (R(0) - xbegin_m) / hx_m - index_x;
243 
244  const unsigned int index_y = static_cast<int>(std::floor((R(1) - ybegin_m) / hy_m));
245  const double lever_y = (R(1) - ybegin_m) / hy_m - index_y;
246 
247  const unsigned int index_z = (int)std::floor((R(2) - zbegin_m)/ hz_m);
248  const double lever_z = (R(2) - zbegin_m) / hz_m - index_z;
249 
250  if(index_z >= num_gridpz_m - 2) {
251  return false;
252  }
253 
254  if(index_x >= num_gridpx_m - 2|| index_y >= num_gridpy_m - 2) {
255  return true;
256  }
257  const unsigned int deltaX = num_gridpy_m * num_gridpz_m;
258  const unsigned int deltaY = num_gridpz_m;
259  const unsigned int deltaZ = 1;
260 
261  const unsigned long index1 = index_x * deltaX + index_y * deltaY + index_z * deltaZ;
262 
263  E(0) += (1.0 - lever_x) * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthEx_m[index1 ]
264  + lever_x * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthEx_m[index1 + deltaX ]
265  + (1.0 - lever_x) * lever_y * (1.0 - lever_z) * FieldstrengthEx_m[index1 + deltaY ]
266  + lever_x * lever_y * (1.0 - lever_z) * FieldstrengthEx_m[index1 + deltaX + deltaY ]
267  + (1.0 - lever_x) * (1.0 - lever_y) * lever_z * FieldstrengthEx_m[index1 + deltaZ]
268  + lever_x * (1.0 - lever_y) * lever_z * FieldstrengthEx_m[index1 + deltaX + deltaZ]
269  + (1.0 - lever_x) * lever_y * lever_z * FieldstrengthEx_m[index1 + deltaY + deltaZ]
270  + lever_x * lever_y * lever_z * FieldstrengthEx_m[index1 + deltaX + deltaY + deltaZ];
271 
272  E(1) += (1.0 - lever_x) * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthEy_m[index1 ]
273  + lever_x * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthEy_m[index1 + deltaX ]
274  + (1.0 - lever_x) * lever_y * (1.0 - lever_z) * FieldstrengthEy_m[index1 + deltaY ]
275  + lever_x * lever_y * (1.0 - lever_z) * FieldstrengthEy_m[index1 + deltaX + deltaY ]
276  + (1.0 - lever_x) * (1.0 - lever_y) * lever_z * FieldstrengthEy_m[index1 + deltaZ]
277  + lever_x * (1.0 - lever_y) * lever_z * FieldstrengthEy_m[index1 + deltaX + deltaZ]
278  + (1.0 - lever_x) * lever_y * lever_z * FieldstrengthEy_m[index1 + deltaY + deltaZ]
279  + lever_x * lever_y * lever_z * FieldstrengthEy_m[index1 + deltaX + deltaY + deltaZ];
280 
281  E(2) += (1.0 - lever_x) * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthEz_m[index1 ]
282  + lever_x * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthEz_m[index1 + deltaX ]
283  + (1.0 - lever_x) * lever_y * (1.0 - lever_z) * FieldstrengthEz_m[index1 + deltaY ]
284  + lever_x * lever_y * (1.0 - lever_z) * FieldstrengthEz_m[index1 + deltaX + deltaY ]
285  + (1.0 - lever_x) * (1.0 - lever_y) * lever_z * FieldstrengthEz_m[index1 + deltaZ]
286  + lever_x * (1.0 - lever_y) * lever_z * FieldstrengthEz_m[index1 + deltaX + deltaZ]
287  + (1.0 - lever_x) * lever_y * lever_z * FieldstrengthEz_m[index1 + deltaY + deltaZ]
288  + lever_x * lever_y * lever_z * FieldstrengthEz_m[index1 + deltaX + deltaY + deltaZ];
289 
290  B(0) += (1.0 - lever_x) * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthBx_m[index1 ]
291  + lever_x * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthBx_m[index1 + deltaX ]
292  + (1.0 - lever_x) * lever_y * (1.0 - lever_z) * FieldstrengthBx_m[index1 + deltaY ]
293  + lever_x * lever_y * (1.0 - lever_z) * FieldstrengthBx_m[index1 + deltaX + deltaY ]
294  + (1.0 - lever_x) * (1.0 - lever_y) * lever_z * FieldstrengthBx_m[index1 + deltaZ]
295  + lever_x * (1.0 - lever_y) * lever_z * FieldstrengthBx_m[index1 + deltaX + deltaZ]
296  + (1.0 - lever_x) * lever_y * lever_z * FieldstrengthBx_m[index1 + deltaY + deltaZ]
297  + lever_x * lever_y * lever_z * FieldstrengthBx_m[index1 + deltaX + deltaY + deltaZ];
298 
299  B(1) += (1.0 - lever_x) * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthBy_m[index1 ]
300  + lever_x * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthBy_m[index1 + deltaX ]
301  + (1.0 - lever_x) * lever_y * (1.0 - lever_z) * FieldstrengthBy_m[index1 + deltaY ]
302  + lever_x * lever_y * (1.0 - lever_z) * FieldstrengthBy_m[index1 + deltaX + deltaY ]
303  + (1.0 - lever_x) * (1.0 - lever_y) * lever_z * FieldstrengthBy_m[index1 + deltaZ]
304  + lever_x * (1.0 - lever_y) * lever_z * FieldstrengthBy_m[index1 + deltaX + deltaZ]
305  + (1.0 - lever_x) * lever_y * lever_z * FieldstrengthBy_m[index1 + deltaY + deltaZ]
306  + lever_x * lever_y * lever_z * FieldstrengthBy_m[index1 + deltaX + deltaY + deltaZ];
307 
308  B(2) += (1.0 - lever_x) * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthBz_m[index1 ]
309  + lever_x * (1.0 - lever_y) * (1.0 - lever_z) * FieldstrengthBz_m[index1 + deltaX ]
310  + (1.0 - lever_x) * lever_y * (1.0 - lever_z) * FieldstrengthBz_m[index1 + deltaY ]
311  + lever_x * lever_y * (1.0 - lever_z) * FieldstrengthBz_m[index1 + deltaX + deltaY ]
312  + (1.0 - lever_x) * (1.0 - lever_y) * lever_z * FieldstrengthBz_m[index1 + deltaZ]
313  + lever_x * (1.0 - lever_y) * lever_z * FieldstrengthBz_m[index1 + deltaX + deltaZ]
314  + (1.0 - lever_x) * lever_y * lever_z * FieldstrengthBz_m[index1 + deltaY + deltaZ]
315  + lever_x * lever_y * lever_z * FieldstrengthBz_m[index1 + deltaX + deltaY + deltaZ];
316 
317  return false;
318 }
319 
320 bool FM3DDynamic::getFieldDerivative(const Vector_t &/*R*/, Vector_t &/*E*/, Vector_t &/*B*/, const DiffDirection &/*dir*/) const {
321  return false;
322 }
323 
324 void FM3DDynamic::getFieldDimensions(double &zBegin, double &zEnd) const {
325  zBegin = zbegin_m;
326  zEnd = zend_m;
327 }
328 void FM3DDynamic::getFieldDimensions(double &/*xIni*/, double &/*xFinal*/, double &/*yIni*/, double &/*yFinal*/, double &/*zIni*/, double &/*zFinal*/) const {}
329 
331 
333  (*msg) << Filename_m << " (3D dynamic) "
334  << " xini= " << xbegin_m << " xfinal= " << xend_m
335  << " yini= " << ybegin_m << " yfinal= " << yend_m
336  << " zini= " << zbegin_m << " zfinal= " << zend_m << " (m) " << endl;
337 }
338 
340  return frequency_m;
341 }
342 
343 void FM3DDynamic::setFrequency(double freq) {
344  frequency_m = freq;
345 }
346 
347 void FM3DDynamic::getOnaxisEz(std::vector<std::pair<double, double> > & F) {
348  F.resize(num_gridpz_m);
349 
350  int index_x = static_cast<int>(ceil(-xbegin_m / hx_m));
351  double lever_x = index_x * hx_m + xbegin_m;
352  if(lever_x > 0.5) {
353  -- index_x;
354  }
355 
356  int index_y = static_cast<int>(ceil(-ybegin_m / hy_m));
357  double lever_y = index_y * hy_m + ybegin_m;
358  if(lever_y > 0.5) {
359  -- index_y;
360  }
361 
362  unsigned int ii = (index_y + index_x * num_gridpy_m) * num_gridpz_m;
363  for(unsigned int i = 0; i < num_gridpz_m; ++ i) {
364  F[i].first = hz_m * i;
365  F[i].second = FieldstrengthEz_m[ii ++] / 1e6;
366  }
367 
368  auto opal = OpalData::getInstance();
369  if (opal->isOptimizerRun()) return;
370 
371  std::string fname = Util::combineFilePath({
372  opal->getAuxiliaryOutputDirectory(),
373  Filename_m
374  });
375  std::ofstream out(fname);
376  for(unsigned int i = 0; i < num_gridpz_m; ++ i) {
377  Vector_t R(0,0,zbegin_m + F[i].first), B(0.0), E(0.0);
378  getFieldstrength(R, E, B);
379  out << std::setw(16) << std::setprecision(8) << F[i].first
380  << std::setw(16) << std::setprecision(8) << E(0)
381  << std::setw(16) << std::setprecision(8) << E(1)
382  << std::setw(16) << std::setprecision(8) << E(2)
383  << std::setw(16) << std::setprecision(8) << B(0)
384  << std::setw(16) << std::setprecision(8) << B(1)
385  << std::setw(16) << std::setprecision(8) << B(2) << "\n";
386  }
387  out.close();
388 }
@ T3DDynamic
Definition: Fieldmap.h:30
DiffDirection
Definition: Fieldmap.h:54
PETE_TUTree< FnAbs, typename T::PETE_Expr_t > abs(const PETE_Expr< T > &l)
PETE_TUTree< FnCeil, typename T::PETE_Expr_t > ceil(const PETE_Expr< T > &l)
Definition: PETE.h:728
PETE_TUTree< FnFloor, typename T::PETE_Expr_t > floor(const PETE_Expr< T > &l)
Definition: PETE.h:733
Inform & endl(Inform &inf)
Definition: Inform.cpp:42
Inform & level3(Inform &inf)
Definition: Inform.cpp:47
#define INFOMSG(msg)
Definition: IpplInfo.h:348
constexpr double two_pi
The value of.
Definition: Physics.h:33
constexpr double e
The value of.
Definition: Physics.h:39
constexpr double mu_0
The permeability of vacuum in Vs/Am.
Definition: Physics.h:54
bool ebDump
Definition: Options.cpp:65
std::string combineFilePath(std::initializer_list< std::string > ilist)
Definition: Util.cpp:139
std::string toUpper(const std::string &str)
Definition: Util.cpp:132
static OpalData * getInstance()
Definition: OpalData.cpp:195
MapType Type
Definition: Fieldmap.h:114
bool interpreteEOF(std::ifstream &in)
Definition: Fieldmap.cpp:558
void disableFieldmapWarning()
Definition: Fieldmap.cpp:613
static std::string typeset_msg(const std::string &msg, const std::string &title)
Definition: Fieldmap.cpp:652
std::string Filename_m
Definition: Fieldmap.h:117
void getLine(std::ifstream &in, std::string &buffer)
Definition: Fieldmap.h:121
void noFieldmapWarning()
Definition: Fieldmap.cpp:621
void write3DField(unsigned int nx, unsigned int ny, unsigned int nz, const std::pair< double, double > &xrange, const std::pair< double, double > &yrange, const std::pair< double, double > &zrange, const std::vector< Vector_t > &ef, const std::vector< Vector_t > &bf)
Definition: Fieldmap.cpp:737
virtual void getInfo(Inform *msg)
double * FieldstrengthEx_m
Definition: FM3DDynamic.h:28
double hy_m
Definition: FM3DDynamic.h:46
double * FieldstrengthBx_m
Definition: FM3DDynamic.h:31
double xend_m
Definition: FM3DDynamic.h:37
unsigned int num_gridpz_m
Definition: FM3DDynamic.h:50
double zbegin_m
Definition: FM3DDynamic.h:42
unsigned int num_gridpy_m
Definition: FM3DDynamic.h:49
double frequency_m
Definition: FM3DDynamic.h:34
double * FieldstrengthEz_m
Definition: FM3DDynamic.h:27
double ybegin_m
Definition: FM3DDynamic.h:39
unsigned int num_gridpx_m
Definition: FM3DDynamic.h:48
double zend_m
Definition: FM3DDynamic.h:43
bool normalize_m
Definition: FM3DDynamic.h:52
virtual void swap()
virtual void getOnaxisEz(std::vector< std::pair< double, double > > &F)
virtual void freeMap()
virtual bool getFieldstrength(const Vector_t &R, Vector_t &E, Vector_t &B) const
double * FieldstrengthBy_m
Definition: FM3DDynamic.h:32
virtual void setFrequency(double freq)
FM3DDynamic(std::string aFilename)
Definition: FM3DDynamic.cpp:14
virtual void readMap()
double hx_m
Definition: FM3DDynamic.h:45
double xbegin_m
Definition: FM3DDynamic.h:36
double * FieldstrengthBz_m
Definition: FM3DDynamic.h:30
virtual void getFieldDimensions(double &zBegin, double &zEnd) const
double yend_m
Definition: FM3DDynamic.h:40
virtual bool getFieldDerivative(const Vector_t &R, Vector_t &E, Vector_t &B, const DiffDirection &dir) const
virtual double getFrequency() const
double hz_m
Definition: FM3DDynamic.h:47
double * FieldstrengthEy_m
Definition: FM3DDynamic.h:29
Definition: Inform.h:42
Vektor< double, 3 > Vector_t
Definition: Vektor.h:6