8#include "gsl/gsl_fft_real.h"
22 if (fieldFile.good()) {
63 std::vector<double> fourierCoefs
71 onAxisFieldPP, onAxisFieldPPP);
77 delete [] onAxisFieldP;
78 delete [] onAxisFieldPP;
79 delete [] onAxisFieldPPP;
105 std::vector<double> fieldComponents;
131 double &,
double &)
const {}
138 <<
" (1D electrotostatic); zini= "
151 bool parsingPassed) {
155 parsingPassed = parsingPassed
163 double onAxisFieldP[],
164 double onAxisFieldPP[],
165 double onAxisFieldPPP[]) {
171 onAxisFieldP[zStepIndex] = 0.0;
172 onAxisFieldPP[zStepIndex] = 0.0;
173 onAxisFieldPPP[zStepIndex] = 0.0;
176 for (
unsigned int n = 1; n <
accuracy_m; ++ n) {
179 double coskzn =
cos(kz * n);
180 double sinkzn =
sin(kz * n);
182 onAxisFieldP[zStepIndex] += kn * (-fourierCoefs.at(coefIndex) * sinkzn
183 - fourierCoefs.at(coefIndex + 1) * coskzn);
185 double derivCoeff =
pow(kn, 2.0);
186 onAxisFieldPP[zStepIndex] += derivCoeff * (-fourierCoefs.at(coefIndex) * coskzn
187 + fourierCoefs.at(coefIndex + 1) * sinkzn);
189 onAxisFieldPPP[zStepIndex] += derivCoeff * (fourierCoefs.at(coefIndex) * sinkzn
190 + 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 transverseEFactor = -fieldComponents.at(1) / 2.0
202 + radiusSq * fieldComponents.at(3) / 16.0;
204 E(0) += R(0) * transverseEFactor;
205 E(1) += R(1) * transverseEFactor;
206 E(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];
235 fieldData[dataIndex];
238 gsl_fft_real_transform(fieldDataReflected, 1,
240 waveTable, workSpace);
242 std::vector<double> fourierCoefs;
243 fourierCoefs.push_back(fieldDataReflected[0] / totalSize);
244 for (
unsigned int coefIndex = 1; coefIndex + 1 < 2 *
accuracy_m; ++ coefIndex)
245 fourierCoefs.push_back(2.0 * fieldDataReflected[coefIndex] / totalSize);
247 delete [] fieldDataReflected;
248 gsl_fft_real_workspace_free(workSpace);
249 gsl_fft_real_wavetable_free(waveTable);
256 double onAxisFieldPP[],
257 double onAxisFieldPPP[]) {
270 z[zStepIndex] =
deltaZ_m * zStepIndex;
304 for (
auto fourierIt = fourierCoefs.begin(); fourierIt < fourierCoefs.end(); ++ fourierIt)
310 double fieldData[]) {
315 if (std::abs(fieldData[dataIndex]) > maxEz)
316 maxEz = std::abs(fieldData[dataIndex]);
327 std::string tempString;
330 bool parsingPassed =
true;
342 if (tempString !=
"TRUE" &&
343 tempString !=
"FALSE")
345 "The third string on the first line of 1D field "
346 "maps has to be either TRUE or FALSE");
350 parsingPassed = parsingPassed &&
355 parsingPassed = parsingPassed &&
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;
std::shared_ptr< _FM1DElectroStatic_fast > FM1DElectroStatic_fast
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.
Inform & endl(Inform &inf)
Inform & level3(Inform &inf)
constexpr double two_pi
The value of.
constexpr double pi
The value of.
constexpr double Vpm2MVpm
std::string toUpper(const std::string &str)
bool interpreteEOF(std::ifstream &in)
static std::string typeset_msg(const std::string &msg, const std::string &title)
void disableFieldmapWarning()
void getLine(std::ifstream &in, std::string &buffer)
bool interpretLine(std::ifstream &in, S &value, const bool &file_length_known=true)
void checkMap(unsigned int accuracy, std::pair< double, double > fieldDimensions, double deltaZ, const std::vector< double > &fourierCoefficients, gsl_spline *splineCoefficients, gsl_interp_accel *splineAccelerator)
virtual void setFrequency(double freq)
gsl_interp_accel * onAxisFieldPPAccel_m
unsigned int numberOfGridPoints_m
Field length.
void normalizeField(double maxEz, std::vector< double > &fourierCoefs)
void computeFieldOnAxis(double z, std::vector< double > &fieldComponents) const
unsigned int accuracy_m
Field grid point spacing.
void computeFieldDerivatives(std::vector< double > fourierCoefs, double onAxisFieldP[], double onAxisFieldPP[], double onAxisFieldPPP[])
virtual ~_FM1DElectroStatic_fast()
void computeFieldOffAxis(const Vector_t &R, Vector_t &E, Vector_t &B, std::vector< double > fieldComponents) const
_FM1DElectroStatic_fast(const std::string &filename)
double readFileData(std::ifstream &fieldFile, double fieldData[])
double length_m
Longitudinal end of field.
virtual void getFieldDimensions(double &zBegin, double &zEnd) const
void prepareForMapCheck(std::vector< double > &fourierCoefs)
virtual bool getFieldstrength(const Vector_t &R, Vector_t &E, Vector_t &B) const
virtual double getFrequency() const
gsl_interp_accel * onAxisFieldPAccel_m
gsl_spline * onAxisFieldPPPInterpolants_m
On axis field second derivative interpolation structure.
gsl_spline * onAxisFieldPPInterpolants_m
On axis field first derivative interpolation structure.
std::vector< double > computeFourierCoefficients(double fieldData[])
bool readFileHeader(std::ifstream &fieldFile)
void computeInterpolationVectors(double onAxisFieldP[], double onAxisFieldPP[], double onAxisFieldPPP[])
gsl_spline * onAxisFieldPInterpolants_m
On axis field interpolation structure.
double deltaZ_m
Number of grid points in field input file.
double rEnd_m
Minimum radius of field.
gsl_interp_accel * onAxisFieldAccel_m
On axis field third derivative interpolation structure.
virtual bool getFieldDerivative(const Vector_t &R, Vector_t &E, Vector_t &B, const DiffDirection &dir) const
void stripFileHeader(std::ifstream &fieldFile)
bool checkFileData(std::ifstream &fieldFile, bool parsingPassed)
virtual void getInfo(Inform *)
double zEnd_m
Longitudinal start of field.
static FM1DElectroStatic_fast create(const std::string &filename)
double zBegin_m
Maximum radius of field.
gsl_interp_accel * onAxisFieldPPPAccel_m
gsl_spline * onAxisFieldInterpolants_m
On axis field data.
Vektor< double, 3 > Vector_t