OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
FM1DDynamic_fast.cpp
Go to the documentation of this file.
2 #include "Fields/Fieldmap.hpp"
3 #include "Physics/Physics.h"
5 #include "Utilities/Util.h"
6 
7 #include "gsl/gsl_fft_real.h"
8 
9 #include <fstream>
10 #include <ios>
11 
12 FM1DDynamic_fast::FM1DDynamic_fast(std::string aFilename):
13  Fieldmap(aFilename),
14  accuracy_m(0)
15 {
16 
17  Type = T1DDynamic;
18  onAxisField_m = NULL;
19 
20  std::ifstream fieldFile(Filename_m.c_str());
21  if (fieldFile.good()) {
22 
23  bool parsingPassed = readFileHeader(fieldFile);
24  parsingPassed = checkFileData(fieldFile, parsingPassed);
25  fieldFile.close();
26 
27  if (!parsingPassed) {
29  zEnd_m = zBegin_m - 1.0e-3;
30  } else
32 
35 
36  } else {
38  zBegin_m = 0.0;
39  zEnd_m = -1.0e-3;
40  }
41 }
42 
44  freeMap();
45 }
46 
48 
49  if (onAxisField_m == NULL) {
50 
51  std::ifstream fieldFile(Filename_m.c_str());
52  stripFileHeader(fieldFile);
53 
54  onAxisField_m = new double[numberOfGridPoints_m];
55  double maxEz = readFileData(fieldFile, onAxisField_m);
56  fieldFile.close();
57 
58  std::vector<double> fourierCoefs = computeFourierCoefficients(onAxisField_m);
59  normalizeField(maxEz, fourierCoefs);
60 
61  double *onAxisFieldP = new double[numberOfGridPoints_m];
62  double *onAxisFieldPP = new double[numberOfGridPoints_m];
63  double *onAxisFieldPPP = new double[numberOfGridPoints_m];
64  computeFieldDerivatives(fourierCoefs, onAxisFieldP,
65  onAxisFieldPP, onAxisFieldPPP);
66  computeInterpolationVectors(onAxisFieldP, onAxisFieldPP,
67  onAxisFieldPPP);
68 
69  prepareForMapCheck(fourierCoefs);
70 
71  delete [] onAxisFieldP;
72  delete [] onAxisFieldPP;
73  delete [] onAxisFieldPPP;
74 
75  INFOMSG(typeset_msg("Read in fieldmap '" + Filename_m + "'", "info")
76  << endl);
77  }
78 }
79 
81  if (onAxisField_m != NULL) {
82  delete [] onAxisField_m;
83  onAxisField_m = NULL;
84 
85  gsl_spline_free(onAxisFieldInterpolants_m);
86  gsl_spline_free(onAxisFieldPInterpolants_m);
87  gsl_spline_free(onAxisFieldPPInterpolants_m);
88  gsl_spline_free(onAxisFieldPPPInterpolants_m);
89  gsl_interp_accel_free(onAxisFieldAccel_m);
90  gsl_interp_accel_free(onAxisFieldPAccel_m);
91  gsl_interp_accel_free(onAxisFieldPPAccel_m);
92  gsl_interp_accel_free(onAxisFieldPPPAccel_m);
93 
94  INFOMSG(level3 << typeset_msg("freed fieldmap '" + Filename_m + "'", "info")
95  << endl);
96  }
97 }
98 
100  Vector_t &B) const {
101 
102  std::vector<double> fieldComponents;
103  computeFieldOnAxis(R(2) - zBegin_m, fieldComponents);
104  computeFieldOffAxis(R, E, B, fieldComponents);
105 
106  return false;
107 }
108 
110  Vector_t &E,
111  Vector_t &/*B*/,
112  const DiffDirection &/*dir*/) const {
113 
114  E(2) += gsl_spline_eval(onAxisFieldPInterpolants_m, R(2) - zBegin_m,
116 
117  return false;
118 }
119 
120 void FM1DDynamic_fast::getFieldDimensions(double &zBegin, double &zEnd) const {
121  zBegin = zBegin_m;
122  zEnd = zEnd_m;
123 }
124 
125 void FM1DDynamic_fast::getFieldDimensions(double &/*xIni*/, double &/*xFinal*/,
126  double &/*yIni*/, double &/*yFinal*/,
127  double &/*zIni*/, double &/*zFinal*/) const {}
128 
130 { }
131 
133  (*msg) << Filename_m
134  << " (1D dynamic); zini= "
135  << zBegin_m << " m; zfinal= "
136  << zEnd_m << " m;" << endl;
137 }
138 
140  return frequency_m;
141 }
142 
144  frequency_m = freq;
145 }
146 
147 void FM1DDynamic_fast::getOnaxisEz(std::vector<std::pair<double, double>> &eZ) {
148 
149  eZ.resize(numberOfGridPoints_m);
150  std::ifstream fieldFile(Filename_m.c_str());
151  stripFileHeader(fieldFile);
152  double maxEz = readFileData(fieldFile, eZ);
153  fieldFile.close();
154  scaleField(maxEz, eZ);
155 
156 }
157 
158 bool FM1DDynamic_fast::checkFileData(std::ifstream &fieldFile,
159  bool parsingPassed) {
160 
161  double tempDouble;
162  for (unsigned int dataIndex = 0; dataIndex < numberOfGridPoints_m; ++ dataIndex)
163  parsingPassed = parsingPassed
164  && interpretLine<double>(fieldFile, tempDouble);
165 
166  return parsingPassed && interpreteEOF(fieldFile);
167 
168 }
169 
170 void FM1DDynamic_fast::computeFieldDerivatives(std::vector<double> fourierCoefs,
171  double onAxisFieldP[],
172  double onAxisFieldPP[],
173  double onAxisFieldPPP[]) {
174 
175  for (unsigned int zStepIndex = 0; zStepIndex < numberOfGridPoints_m; ++ zStepIndex) {
176 
177  double z = deltaZ_m * zStepIndex;
178  double kz = Physics::two_pi * z / length_m + Physics::pi;
179  onAxisFieldP[zStepIndex] = 0.0;
180  onAxisFieldPP[zStepIndex] = 0.0;
181  onAxisFieldPPP[zStepIndex] = 0.0;
182 
183  int coefIndex = 1;
184  for (unsigned int n = 1; n < accuracy_m; ++ n) {
185 
186  double kn = n * Physics::two_pi / length_m;
187  double coskzn = cos(kz * n);
188  double sinkzn = sin(kz * n);
189 
190  onAxisFieldP[zStepIndex] += kn * (-fourierCoefs.at(coefIndex) * sinkzn
191  - fourierCoefs.at(coefIndex + 1) * coskzn);
192 
193  double derivCoeff = pow(kn, 2.0);
194  onAxisFieldPP[zStepIndex] += derivCoeff * (-fourierCoefs.at(coefIndex) * coskzn
195  + fourierCoefs.at(coefIndex + 1) * sinkzn);
196  derivCoeff *= kn;
197  onAxisFieldPPP[zStepIndex] += derivCoeff * (fourierCoefs.at(coefIndex) * sinkzn
198  + fourierCoefs.at(coefIndex + 1) * coskzn);
199 
200  coefIndex += 2;
201  }
202  }
203 
204 }
205 
207  Vector_t &E,
208  Vector_t &B,
209  std::vector<double> fieldComponents) const {
210 
211  double radiusSq = pow(R(0), 2.0) + pow(R(1), 2.0);
212  double transverseEFactor = (fieldComponents.at(1)
213  * (0.5 - radiusSq * twoPiOverLambdaSq_m / 16.0)
214  - radiusSq * fieldComponents.at(3) / 16.0);
215  double transverseBFactor = ((fieldComponents.at(0)
216  * (0.5 - radiusSq * twoPiOverLambdaSq_m / 16.0)
217  - radiusSq * fieldComponents.at(2) / 16.0)
219 
220  E(0) += - R(0) * transverseEFactor;
221  E(1) += - R(1) * transverseEFactor;
222  E(2) += (fieldComponents.at(0) * (1.0 - radiusSq * twoPiOverLambdaSq_m / 4.0)
223  - radiusSq * fieldComponents.at(2) / 4.0);
224 
225  B(0) += - R(1) * transverseBFactor;
226  B(1) += R(0) * transverseBFactor;
227 
228 }
229 
231  std::vector<double> &fieldComponents)
232  const {
233 
234  fieldComponents.push_back(gsl_spline_eval(onAxisFieldInterpolants_m,
235  z, onAxisFieldAccel_m));
236  fieldComponents.push_back(gsl_spline_eval(onAxisFieldPInterpolants_m,
237  z, onAxisFieldPAccel_m));
238  fieldComponents.push_back(gsl_spline_eval(onAxisFieldPPInterpolants_m,
240  fieldComponents.push_back(gsl_spline_eval(onAxisFieldPPPInterpolants_m,
242 }
243 
244 std::vector<double> FM1DDynamic_fast::computeFourierCoefficients(double fieldData[]) {
245  const unsigned int totalSize = 2 * numberOfGridPoints_m - 1;
246  gsl_fft_real_wavetable *waveTable = gsl_fft_real_wavetable_alloc(totalSize);
247  gsl_fft_real_workspace *workSpace = gsl_fft_real_workspace_alloc(totalSize);
248 
249  // Reflect field about minimum z value to ensure that it is periodic.
250  double *fieldDataReflected = new double[totalSize];
251  for (unsigned int dataIndex = 0; dataIndex < numberOfGridPoints_m; ++ dataIndex) {
252  fieldDataReflected[numberOfGridPoints_m - 1 + dataIndex]
253  = fieldData[dataIndex];
254  if (dataIndex != 0)
255  fieldDataReflected[numberOfGridPoints_m - 1 - dataIndex]
256  = fieldData[dataIndex];
257  }
258 
259  gsl_fft_real_transform(fieldDataReflected, 1,
260  totalSize,
261  waveTable, workSpace);
262 
263  std::vector<double> fourierCoefs;
264  fourierCoefs.push_back(fieldDataReflected[0] / totalSize);
265  for (unsigned int coefIndex = 1; coefIndex < 2 * accuracy_m - 1; ++ coefIndex)
266  fourierCoefs.push_back(2.0 * fieldDataReflected[coefIndex] / totalSize);
267 
268  delete [] fieldDataReflected;
269  gsl_fft_real_workspace_free(workSpace);
270  gsl_fft_real_wavetable_free(waveTable);
271 
272  return fourierCoefs;
273 
274 }
275 
277  double onAxisFieldPP[],
278  double onAxisFieldPPP[]) {
279 
280  onAxisFieldInterpolants_m = gsl_spline_alloc(gsl_interp_cspline,
282  onAxisFieldPInterpolants_m = gsl_spline_alloc(gsl_interp_cspline,
284  onAxisFieldPPInterpolants_m = gsl_spline_alloc(gsl_interp_cspline,
286  onAxisFieldPPPInterpolants_m = gsl_spline_alloc(gsl_interp_cspline,
288 
289  double *z = new double[numberOfGridPoints_m];
290  for (unsigned int zStepIndex = 0; zStepIndex < numberOfGridPoints_m; ++ zStepIndex)
291  z[zStepIndex] = deltaZ_m * zStepIndex;
292  gsl_spline_init(onAxisFieldInterpolants_m, z,
294  gsl_spline_init(onAxisFieldPInterpolants_m, z,
295  onAxisFieldP, numberOfGridPoints_m);
296  gsl_spline_init(onAxisFieldPPInterpolants_m, z,
297  onAxisFieldPP, numberOfGridPoints_m);
298  gsl_spline_init(onAxisFieldPPPInterpolants_m, z,
299  onAxisFieldPPP, numberOfGridPoints_m);
300 
301  onAxisFieldAccel_m = gsl_interp_accel_alloc();
302  onAxisFieldPAccel_m = gsl_interp_accel_alloc();
303  onAxisFieldPPAccel_m = gsl_interp_accel_alloc();
304  onAxisFieldPPPAccel_m = gsl_interp_accel_alloc();
305 
306  delete [] z;
307 }
308 
310 
311  // Convert to angular frequency in Hz.
312  frequency_m *= Physics::two_pi * 1.0e6;
313 
314  // Convert to m.
315  rBegin_m /= 100.0;
316  rEnd_m /= 100.0;
317  zBegin_m /= 100.0;
318  zEnd_m /= 100.0;
319 
321 }
322 
324  std::vector<double> &fourierCoefs) {
325 
326  for (unsigned int dataIndex = 0; dataIndex < numberOfGridPoints_m; ++ dataIndex)
327  onAxisField_m[dataIndex] *= 1.0e6 / maxEz;
328 
329  for (std::vector<double>::iterator fourierIterator = fourierCoefs.begin();
330  fourierIterator < fourierCoefs.end(); ++ fourierIterator)
331  *fourierIterator *= 1.0e6 / maxEz;
332 
333 }
334 
335 double FM1DDynamic_fast::readFileData(std::ifstream &fieldFile,
336  double fieldData[]) {
337 
338  double maxEz = 0.0;
339  for (unsigned int dataIndex = 0; dataIndex < numberOfGridPoints_m; ++ dataIndex) {
340  interpretLine<double>(fieldFile, fieldData[dataIndex]);
341  if (std::abs(fieldData[dataIndex]) > maxEz)
342  maxEz = std::abs(fieldData[dataIndex]);
343  }
344 
345  if (!normalize_m)
346  maxEz = 1.0;
347 
348  return maxEz;
349 }
350 
351 double FM1DDynamic_fast::readFileData(std::ifstream &fieldFile,
352  std::vector<std::pair<double, double>> &eZ) {
353 
354  double maxEz = 0.0;
355  double deltaZ = (zEnd_m - zBegin_m) / (numberOfGridPoints_m - 1);
356  for (unsigned int dataIndex = 0; dataIndex < numberOfGridPoints_m; ++ dataIndex) {
357  eZ.at(dataIndex).first = deltaZ * dataIndex;
358  interpretLine<double>(fieldFile, eZ.at(dataIndex).second);
359  if (std::abs(eZ.at(dataIndex).second) > maxEz)
360  maxEz = std::abs(eZ.at(dataIndex).second);
361  }
362 
363  if (!normalize_m)
364  maxEz = 1.0;
365 
366  return maxEz;
367 }
368 
369 bool FM1DDynamic_fast::readFileHeader(std::ifstream &fieldFile) {
370 
371  std::string tempString;
372  int tempInt;
373 
374  bool parsingPassed = true;
375  try {
376  parsingPassed = interpretLine<std::string, unsigned int>(fieldFile,
377  tempString,
378  accuracy_m);
379  } catch (GeneralClassicException &e) {
380  parsingPassed = interpretLine<std::string, unsigned int, std::string>(fieldFile,
381  tempString,
382  accuracy_m,
383  tempString);
384 
385  tempString = Util::toUpper(tempString);
386  if (tempString != "TRUE" &&
387  tempString != "FALSE")
388  throw GeneralClassicException("FM1DDynamic_fast::readFileHeader",
389  "The third string on the first line of 1D field "
390  "maps has to be either TRUE or FALSE");
391 
392  normalize_m = (tempString == "TRUE");
393  }
394  parsingPassed = parsingPassed &&
395  interpretLine<double, double, unsigned int>(fieldFile,
396  zBegin_m,
397  zEnd_m,
399  parsingPassed = parsingPassed &&
400  interpretLine<double>(fieldFile, frequency_m);
401  parsingPassed = parsingPassed &&
402  interpretLine<double, double, int>(fieldFile,
403  rBegin_m,
404  rEnd_m,
405  tempInt);
406 
408 
411 
412  return parsingPassed;
413 }
414 
416  std::vector<std::pair<double, double>> &eZ) {
417  if (!normalize_m) return;
418 
419  for (unsigned int dataIndex = 0; dataIndex < numberOfGridPoints_m; ++ dataIndex)
420  eZ.at(dataIndex).second /= maxEz;
421 }
422 
423 void FM1DDynamic_fast::stripFileHeader(std::ifstream &fieldFile) {
424 
425  std::string tempString;
426 
427  getLine(fieldFile, tempString);
428  getLine(fieldFile, tempString);
429  getLine(fieldFile, tempString);
430  getLine(fieldFile, tempString);
431 }
432 
433 void FM1DDynamic_fast::prepareForMapCheck(std::vector<double> &fourierCoefs) {
434  std::vector<double> zSampling(numberOfGridPoints_m);
435  for (unsigned int zStepIndex = 0; zStepIndex < numberOfGridPoints_m; ++ zStepIndex)
436  zSampling[zStepIndex] = deltaZ_m * zStepIndex;
437 
439  length_m,
440  zSampling,
441  fourierCoefs,
444 }
Tps< T > cos(const Tps< T > &x)
Cosine.
Definition: TpsMath.h:129
Tps< T > pow(const Tps< T > &x, int y)
Integer power.
Definition: TpsMath.h:76
Tps< T > sin(const Tps< T > &x)
Sine.
Definition: TpsMath.h:111
@ T1DDynamic
Definition: Fieldmap.h:16
DiffDirection
Definition: Fieldmap.h:54
PETE_TUTree< FnAbs, typename T::PETE_Expr_t > abs(const PETE_Expr< T > &l)
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 c
The velocity of light in m/s.
Definition: Physics.h:51
constexpr double pi
The value of.
Definition: Physics.h:30
std::string::iterator iterator
Definition: MSLang.h:16
std::string toUpper(const std::string &str)
Definition: Util.cpp:132
MapType Type
Definition: Fieldmap.h:114
bool interpreteEOF(std::ifstream &in)
Definition: Fieldmap.cpp:558
void checkMap(unsigned int accuracy, std::pair< double, double > fieldDimensions, double deltaZ, const std::vector< double > &fourierCoefficients, gsl_spline *splineCoefficients, gsl_interp_accel *splineAccelerator)
Definition: Fieldmap.cpp:451
void disableFieldmapWarning()
Definition: Fieldmap.cpp:613
bool normalize_m
Definition: Fieldmap.h:120
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
gsl_interp_accel * onAxisFieldAccel_m
On axis field third derivative interpolation structure.
FM1DDynamic_fast(std::string aFilename)
virtual void getFieldDimensions(double &zBegin, double &zEnd) const
gsl_spline * onAxisFieldPInterpolants_m
On axis field interpolation structure.
void stripFileHeader(std::ifstream &fieldFile)
virtual bool getFieldstrength(const Vector_t &R, Vector_t &E, Vector_t &B) const
gsl_spline * onAxisFieldInterpolants_m
On axis field data.
double rEnd_m
Minimum radius of field.
double zBegin_m
Maximum radius of field.
gsl_interp_accel * onAxisFieldPPPAccel_m
void computeFieldOffAxis(const Vector_t &R, Vector_t &E, Vector_t &B, std::vector< double > fieldComponents) const
double zEnd_m
Longitudinal start of field.
void computeFieldOnAxis(double z, std::vector< double > &fieldComponents) const
virtual void setFrequency(double freq)
gsl_interp_accel * onAxisFieldPPAccel_m
std::vector< double > computeFourierCoefficients(double fieldData[])
double length_m
Longitudinal end of field.
virtual void readMap()
gsl_spline * onAxisFieldPPPInterpolants_m
On axis field second derivative interpolation structure.
virtual double getFrequency() const
void normalizeField(double maxEz, std::vector< double > &fourierCoefs)
virtual void getOnaxisEz(std::vector< std::pair< double, double >> &eZ)
virtual void swap()
void computeInterpolationVectors(double onAxisFieldP[], double onAxisFieldPP[], double onAxisFieldPPP[])
double readFileData(std::ifstream &fieldFile, double fieldData[])
void prepareForMapCheck(std::vector< double > &fourierCoefs)
unsigned int numberOfGridPoints_m
Field length.
void computeFieldDerivatives(std::vector< double > fourierCoefs, double onAxisFieldP[], double onAxisFieldPP[], double onAxisFieldPPP[])
virtual bool getFieldDerivative(const Vector_t &R, Vector_t &E, Vector_t &B, const DiffDirection &dir) const
gsl_spline * onAxisFieldPPInterpolants_m
On axis field first derivative interpolation structure.
virtual void freeMap()
void scaleField(double maxEz, std::vector< std::pair< double, double >> &eZ)
bool checkFileData(std::ifstream &fieldFile, bool parsingPassed)
bool readFileHeader(std::ifstream &fieldFile)
virtual void getInfo(Inform *)
gsl_interp_accel * onAxisFieldPAccel_m
unsigned int accuracy_m
Field grid point spacing.
double deltaZ_m
Number of grid points in field input file.
double rBegin_m
2 Pi divided by the field RF wavelength squared.
double twoPiOverLambdaSq_m
Field angular frequency (Hz).
Definition: Inform.h:42