8#include "gsl/gsl_fft_real.h"
20 if(fieldFile.good()) {
57 std::vector<double> fourierCoefs
65 onAxisFieldPP, onAxisFieldPPP);
71 delete [] onAxisFieldP;
72 delete [] onAxisFieldPP;
73 delete [] onAxisFieldPPP;
102 std::vector<double> fieldComponents;
129 double &,
double &)
const {}
136 <<
" (1D magnetostatic); zini= "
149 bool parsingPassed) {
153 parsingPassed = parsingPassed
154 && interpretLine<double>(fieldFile, tempDouble);
161 double onAxisFieldP[],
162 double onAxisFieldPP[],
163 double onAxisFieldPPP[]) {
169 onAxisFieldP[zStepIndex] = 0.0;
170 onAxisFieldPP[zStepIndex] = 0.0;
171 onAxisFieldPPP[zStepIndex] = 0.0;
177 double coskzn =
cos(kz *
n);
178 double sinkzn =
sin(kz *
n);
180 onAxisFieldP[zStepIndex] += kn * (-fourierCoefs.at(coefIndex) * sinkzn
181 - fourierCoefs.at(coefIndex + 1) * coskzn);
183 double derivCoeff =
pow(kn, 2.0);
184 onAxisFieldPP[zStepIndex] += derivCoeff * (-fourierCoefs.at(coefIndex) * coskzn
185 + fourierCoefs.at(coefIndex + 1) * sinkzn);
187 onAxisFieldPPP[zStepIndex] += derivCoeff * (fourierCoefs.at(coefIndex) * sinkzn
188 + fourierCoefs.at(coefIndex + 1) * coskzn);
198 std::vector<double> fieldComponents)
const {
200 double radiusSq =
pow(
R(0), 2.0) +
pow(
R(1), 2.0);
201 double transverseBFactor = -fieldComponents.at(1) / 2.0
202 + radiusSq * fieldComponents.at(3) / 16.0;
204 B(0) +=
R(0) * transverseBFactor;
205 B(1) +=
R(1) * transverseBFactor;
206 B(2) += fieldComponents.at(0) - fieldComponents.at(2) * radiusSq / 4.0;
211 std::vector<double> &fieldComponents)
const {
226 gsl_fft_real_wavetable *waveTable = gsl_fft_real_wavetable_alloc(totalSize);
227 gsl_fft_real_workspace *workSpace = gsl_fft_real_workspace_alloc(totalSize);
230 double *fieldDataReflected =
new double[totalSize];
233 = fieldData[dataIndex];
236 = fieldData[dataIndex];
239 gsl_fft_real_transform(fieldDataReflected, 1, totalSize, waveTable, workSpace);
241 std::vector<double> fourierCoefs;
242 fourierCoefs.push_back(fieldDataReflected[0] / totalSize);
243 for (
unsigned int coefIndex = 1; coefIndex + 1 < 2 *
accuracy_m; ++ coefIndex)
244 fourierCoefs.push_back(2.0 * fieldDataReflected[coefIndex] / totalSize);
246 delete [] fieldDataReflected;
247 gsl_fft_real_workspace_free(workSpace);
248 gsl_fft_real_wavetable_free(waveTable);
255 double onAxisFieldPP[],
256 double onAxisFieldPPP[]) {
269 z[zStepIndex] =
deltaZ_m * zStepIndex;
304 fourierIterator < fourierCoefs.end(); ++ fourierIterator)
305 *fourierIterator /= maxBz;
310 double fieldData[]) {
314 interpretLine<double>(fieldFile, fieldData[dataIndex]);
315 if(
std::abs(fieldData[dataIndex]) > maxBz)
316 maxBz =
std::abs(fieldData[dataIndex]);
324 std::string tempString;
327 bool parsingPassed =
true;
330 parsingPassed = interpretLine<std::string, unsigned int>(fieldFile,
334 parsingPassed = interpretLine<std::string, unsigned int, std::string>(fieldFile,
340 if (tempString !=
"TRUE" &&
341 tempString !=
"FALSE")
343 "The third string on the first line of 1D field "
344 "maps has to be either TRUE or FALSE");
349 parsingPassed = parsingPassed &&
350 interpretLine<double, double, unsigned int>(fieldFile,
354 parsingPassed = parsingPassed &&
355 interpretLine<double, double, int>(fieldFile,
365 return parsingPassed;
370 std::string tempString;
372 getLine(fieldFile, tempString);
373 getLine(fieldFile, tempString);
374 getLine(fieldFile, tempString);
380 zSampling[zStepIndex] =
deltaZ_m * zStepIndex;
Tps< T > cos(const Tps< T > &x)
Cosine.
Tps< T > pow(const Tps< T > &x, int y)
Integer power.
Tps< T > sin(const Tps< T > &x)
Sine.
PETE_TUTree< FnAbs, typename T::PETE_Expr_t > abs(const PETE_Expr< T > &l)
Inform & endl(Inform &inf)
Inform & level3(Inform &inf)
constexpr double two_pi
The value of.
constexpr double e
The value of.
constexpr double pi
The value of.
std::string::iterator iterator
std::string toUpper(const std::string &str)
bool interpreteEOF(std::ifstream &in)
void checkMap(unsigned int accuracy, std::pair< double, double > fieldDimensions, double deltaZ, const std::vector< double > &fourierCoefficients, gsl_spline *splineCoefficients, gsl_interp_accel *splineAccelerator)
void disableFieldmapWarning()
static std::string typeset_msg(const std::string &msg, const std::string &title)
void getLine(std::ifstream &in, std::string &buffer)
virtual double getFrequency() const
void computeFieldDerivatives(std::vector< double > fourierCoefs, double onAxisFieldP[], double onAxisFieldPP[], double onAxisFieldPPP[])
void computeInterpolationVectors(double onAxisFieldP[], double onAxisFieldPP[], double onAxisFieldPPP[])
gsl_interp_accel * onAxisFieldAccel_m
On axis field third derivative interpolation structure.
void stripFileHeader(std::ifstream &fieldFile)
std::vector< double > computeFourierCoefficients(double fieldData[])
virtual bool getFieldstrength(const Vector_t &R, Vector_t &E, Vector_t &B) const
bool readFileHeader(std::ifstream &fieldFile)
unsigned int accuracy_m
Field grid point spacing.
FM1DMagnetoStatic_fast(std::string aFilename)
void computeFieldOnAxis(double z, std::vector< double > &fieldComponents) const
gsl_spline * onAxisFieldPPInterpolants_m
On axis field first derivative interpolation structure.
gsl_spline * onAxisFieldPInterpolants_m
On axis field interpolation structure.
gsl_spline * onAxisFieldPPPInterpolants_m
On axis field second derivative interpolation structure.
unsigned int numberOfGridPoints_m
Field length.
double rEnd_m
Minimum radius of field.
~FM1DMagnetoStatic_fast()
void prepareForMapCheck(std::vector< double > &fourierCoefs)
virtual void getInfo(Inform *)
double deltaZ_m
Number of grid points in field input file.
void normalizeField(double maxBz, std::vector< double > &fourierCoefs)
double readFileData(std::ifstream &fieldFile, double fieldData[])
double zEnd_m
Longitudinal start of field.
gsl_interp_accel * onAxisFieldPAccel_m
void computeFieldOffAxis(const Vector_t &R, Vector_t &E, Vector_t &B, std::vector< double > fieldComponents) const
double length_m
Longitudinal end of field.
virtual void setFrequency(double freq)
bool checkFileData(std::ifstream &fieldFile, bool parsingPassed)
virtual void getFieldDimensions(double &zBegin, double &zEnd) const
gsl_interp_accel * onAxisFieldPPAccel_m
gsl_spline * onAxisFieldInterpolants_m
On axis field data.
gsl_interp_accel * onAxisFieldPPPAccel_m
double zBegin_m
Maximum radius of field.
virtual bool getFieldDerivative(const Vector_t &R, Vector_t &E, Vector_t &B, const DiffDirection &dir) const