7 #include "gsl/gsl_fft_real.h"
18 if(fieldFile.good()) {
74 std::vector<double> fieldComponents;
111 double &,
double &)
const {
119 <<
" (1D dynamic); zini= "
147 parsingPassed = parsingPassed
148 && interpretLine<double>(fieldFile, tempDouble);
157 std::vector<double> fieldComponents)
const {
159 double radiusSq =
pow(
R(0), 2.0) +
pow(
R(1), 2.0);
160 double transverseEFactor = (fieldComponents.at(1)
162 - radiusSq * fieldComponents.at(3) / 16.0);
163 double transverseBFactor = ((fieldComponents.at(0)
165 - radiusSq * fieldComponents.at(2) / 16.0)
168 E(0) += -
R(0) * transverseEFactor;
169 E(1) += -
R(1) * transverseEFactor;
170 E(2) += (fieldComponents.at(0)
172 - radiusSq * fieldComponents.at(2) / 4.0);
174 B(0) += -
R(1) * transverseBFactor;
175 B(1) +=
R(0) * transverseBFactor;
180 std::vector<double> &fieldComponents)
const {
184 fieldComponents.push_back(0.0);
185 fieldComponents.push_back(0.0);
186 fieldComponents.push_back(0.0);
192 double coskzn =
cos(kz *
n);
193 double sinkzn =
sin(kz *
n);
198 fieldComponents.at(1) += kn * (-
fourierCoefs_m.at(coefIndex) * sinkzn
201 double derivCoeff =
pow(kn, 2.0);
202 fieldComponents.at(2) += derivCoeff * (-
fourierCoefs_m.at(coefIndex) * coskzn
205 fieldComponents.at(3) += derivCoeff * (
fourierCoefs_m.at(coefIndex) * sinkzn
214 gsl_fft_real_wavetable *waveTable = gsl_fft_real_wavetable_alloc(totalSize);
215 gsl_fft_real_workspace *workSpace = gsl_fft_real_workspace_alloc(totalSize);
216 gsl_fft_real_transform(fieldData, 1, totalSize, waveTable, workSpace);
225 for(
int coefIndex = 1; coefIndex < 2 *
accuracy_m - 1; ++ coefIndex)
226 fourierCoefs_m.push_back(2.0 * fieldData[coefIndex] / (totalSize * maxEz));
228 gsl_fft_real_workspace_free(workSpace);
229 gsl_fft_real_wavetable_free(waveTable);
272 std::vector<std::pair<double, double>> &eZ) {
277 eZ.at(dataIndex).first = deltaZ * dataIndex;
278 interpretLine<double>(fieldFile, eZ.at(dataIndex).second);
279 if(
std::abs(eZ.at(dataIndex).second) > maxEz)
280 maxEz =
std::abs(eZ.at(dataIndex).second);
291 std::string tempString;
294 bool parsingPassed =
true;
296 parsingPassed = interpretLine<std::string, int>(fieldFile,
300 parsingPassed = interpretLine<std::string, int, std::string>(fieldFile,
306 if (tempString !=
"TRUE" &&
307 tempString !=
"FALSE")
309 "The third string on the first line of 1D field "
310 "maps has to be either TRUE or FALSE");
315 parsingPassed = parsingPassed &&
316 interpretLine<double, double, int>(fieldFile,
320 parsingPassed = parsingPassed &&
322 parsingPassed = parsingPassed &&
323 interpretLine<double, double, int>(fieldFile,
333 return parsingPassed;
338 eZ.at(dataIndex).second /= maxEz;
343 std::string tempString;
345 getLine(fieldFile, tempString);
346 getLine(fieldFile, tempString);
347 getLine(fieldFile, tempString);
348 getLine(fieldFile, tempString);
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)
constexpr double two_pi
The value of.
constexpr double e
The value of.
constexpr double c
The velocity of light in m/s.
constexpr double pi
The value of.
std::string toUpper(const std::string &str)
bool interpreteEOF(std::ifstream &in)
void disableFieldmapWarning()
static std::string typeset_msg(const std::string &msg, const std::string &title)
void getLine(std::ifstream &in, std::string &buffer)
double zBegin_m
Maximum radius of field.
void computeFieldOnAxis(double z, std::vector< double > &fieldComponents) const
int numberOfGridPoints_m
Field length.
void stripFileHeader(std::ifstream &fieldFile)
FM1DDynamic(std::string aFilename)
double twoPiOverLambdaSq_m
Field angular frequency (Hz).
double readFileData(std::ifstream &fieldFile, double fieldData[])
std::vector< double > fourierCoefs_m
Number of Fourier coefficients to use reconstructing field.
void scaleField(double maxEz, std::vector< std::pair< double, double >> &eZ)
double rEnd_m
Minimum radius of field.
double length_m
Longitudinal end of field.
bool checkFileData(std::ifstream &fieldFile, bool parsingPassed)
virtual double getFrequency() const
double zEnd_m
Longitudinal start of field.
virtual bool getFieldstrength(const Vector_t &R, Vector_t &E, Vector_t &B) const
virtual void getFieldDimensions(double &zBegin, double &zEnd) const
int accuracy_m
Number of grid points in field input file.
void computeFourierCoefficients(double maxEz, double fieldData[])
double rBegin_m
2 Pi divided by the field RF wavelength squared.
virtual void getInfo(Inform *)
void computeFieldOffAxis(const Vector_t &R, Vector_t &E, Vector_t &B, std::vector< double > fieldComponents) const
virtual bool getFieldDerivative(const Vector_t &R, Vector_t &E, Vector_t &B, const DiffDirection &dir) const
bool readFileHeader(std::ifstream &fieldFile)
virtual void setFrequency(double freq)
virtual void getOnaxisEz(std::vector< std::pair< double, double >> &eZ)