1#ifndef PRDC_CPU_R_FIELD_DFT_H
2#define PRDC_CPU_R_FIELD_DFT_H
11#include <prdc/cpu/FftwDArray.h>
12#include <prdc/cpu/complex.h>
13#include <pscf/math/IntVec.h>
122 template <
class Archive>
123 void serialize(Archive& ar,
const unsigned int version);
145 for (
int i = 0; i < D; ++i) {
147 meshDimensions_[i] = meshDimensions[i];
149 dftDimensions_[i] = meshDimensions[i];
150 size *= meshDimensions[i];
152 dftDimensions_[i] = (meshDimensions[i]/2 + 1);
153 size *= dftDimensions_[i];
165 {
return meshDimensions_; }
172 {
return dftDimensions_; }
178 template <
class Archive>
182 ar & meshDimensions_;
186 #ifndef PRDC_R_FIELD_DFT_TPP
An IntVec<D, T> is a D-component vector of elements of integer type T.
Dynamic array with data aligned for use with FFTW library.
void serialize(Archive &ar, const unsigned int version)
Serialize a FftwDArray to/from an Archive.
void allocate(int capacity)
Allocate the underlying C array.
Fourier transform of a real field on an FFT mesh.
virtual void deallocate()
Deallocate underlying C array and clear mesh dimensions.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array and set mesh dimensions.
void serialize(Archive &ar, const unsigned int version)
Serialize a Field to/from an Archive.
double Real
Real and imaginary parts of a Complex number.
fftw_complex ElementType
Type of each element.
virtual ~RFieldDft()
Destructor.
RFieldDft< D > & operator=(RFieldDft< D > const &other)
Assignment operator.
RFieldDft()
Default constructor.
IntVec< D > const & dftDimensions() const
Return vector of dft (Fourier) grid dimensions by constant reference.
fftw_complex Complex
Complex number type.
IntVec< D > const & meshDimensions() const
Return vector of spatial mesh dimensions by constant reference.
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
PSCF package top-level namespace.
Utility classes for scientific computation.