8#include "gsl/gsl_fft_real.h"
19 if (fieldFile.good()) {
77 std::vector<double> fieldComponents;
113 double &,
double &)
const {}
120 <<
" (1D electrostatic); zini= "
133 bool parsingPassed) {
137 parsingPassed = parsingPassed
147 std::vector<double> fieldComponents)
const {
149 double radiusSq =
pow(R(0), 2.0) +
pow(R(1), 2.0);
150 double transverseEFactor = -fieldComponents.at(1) / 2.0
151 + radiusSq * fieldComponents.at(3) / 16.0;
153 E(0) += R(0) * transverseEFactor;
154 E(1) += R(1) * transverseEFactor;
155 E(2) += fieldComponents.at(0) - fieldComponents.at(2) * radiusSq / 4.0;
160 std::vector<double> &fieldComponents)
const {
164 fieldComponents.push_back(0.0);
165 fieldComponents.push_back(0.0);
166 fieldComponents.push_back(0.0);
172 double coskzn =
cos(kz * n);
173 double sinkzn =
sin(kz * n);
178 fieldComponents.at(1) += kn * (-
fourierCoefs_m.at(coefIndex) * sinkzn
181 double derivCoeff =
pow(kn, 2.0);
182 fieldComponents.at(2) += derivCoeff * (-
fourierCoefs_m.at(coefIndex) * coskzn
185 fieldComponents.at(3) += derivCoeff * (
fourierCoefs_m.at(coefIndex) * sinkzn
193 double fieldData[]) {
195 gsl_fft_real_wavetable *waveTable = gsl_fft_real_wavetable_alloc(totalSize);
196 gsl_fft_real_workspace *workSpace = gsl_fft_real_workspace_alloc(totalSize);
198 gsl_fft_real_transform(fieldData, 1, totalSize, waveTable, workSpace);
206 for (
int coefIndex = 1; coefIndex < 2 *
accuracy_m - 1; ++ coefIndex)
209 gsl_fft_real_workspace_free(workSpace);
210 gsl_fft_real_wavetable_free(waveTable);
224 double fieldData[]) {
250 std::string tempString;
253 bool parsingPassed =
true;
265 if (tempString !=
"TRUE" &&
266 tempString !=
"FALSE")
268 "The third string on the first line of 1D field "
269 "maps has to be either TRUE or FALSE");
274 parsingPassed = parsingPassed &&
279 parsingPassed = parsingPassed &&
288 return parsingPassed;
293 std::string tempString;
295 getLine(fieldFile, tempString);
296 getLine(fieldFile, tempString);
297 getLine(fieldFile, tempString);
std::shared_ptr< _FM1DElectroStatic > FM1DElectroStatic
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)
friend class _Fieldmap
Fourier coefficients derived from field map.
virtual bool getFieldstrength(const Vector_t &R, Vector_t &E, Vector_t &B) const
double rEnd_m
Minimum radius of field.
double length_m
Longitudinal end of field.
virtual ~_FM1DElectroStatic()
virtual void getInfo(Inform *)
void computeFourierCoefficients(double maxEz, double fieldData[])
void stripFileHeader(std::ifstream &fieldFile)
virtual void getFieldDimensions(double &zBegin, double &zEnd) const
double zBegin_m
Maximum radius of field.
double readFileData(std::ifstream &fieldFile, double fieldData[])
bool readFileHeader(std::ifstream &fieldFile)
double zEnd_m
Longitudinal start of field.
virtual double getFrequency() const
std::vector< double > fourierCoefs_m
Number of Fourier coefficients to use reconstructing field.
bool checkFileData(std::ifstream &fieldFile, bool parsingPassed)
void computeFieldOnAxis(double z, std::vector< double > &fieldComponents) const
_FM1DElectroStatic(const std::string &filename)
int numberOfGridPoints_m
Field length.
virtual bool getFieldDerivative(const Vector_t &R, Vector_t &E, Vector_t &B, const DiffDirection &dir) const
virtual void setFrequency(double freq)
int accuracy_m
Number of grid points in field input file.
static FM1DElectroStatic create(const std::string &filename)
void computeFieldOffAxis(const Vector_t &R, Vector_t &E, Vector_t &B, std::vector< double > fieldComponents) const
Vektor< double, 3 > Vector_t