PSCF v1.2
cpu/RFieldDft.h
1#ifndef PRDC_CPU_R_FIELD_DFT_H
2#define PRDC_CPU_R_FIELD_DFT_H
3
4/*
5* PSCF Package
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <prdc/cpu/FftwDArray.h>
12#include <prdc/cpu/complex.h>
13#include <pscf/math/IntVec.h>
14#include <util/global.h>
15
16#include <fftw3.h>
17
18namespace Pscf {
19namespace Prdc {
20namespace Cpu {
21
22 using namespace Util;
23 using namespace Pscf;
24
30 template <int D>
31 class RFieldDft : public FftwDArray<fftw_complex>
32 {
33
34 public:
35
36 // Typedefs
37
41 typedef fftw_complex ElementType;
42
46 typedef fftw_complex Complex;
47
51 typedef double Real;
52
53 // Member functions
54
58 RFieldDft();
59
67 RFieldDft(RFieldDft<D> const & other);
68
74 virtual ~RFieldDft();
75
87
95 void allocate(IntVec<D> const & meshDimensions);
96
100 virtual void deallocate();
101
105 IntVec<D> const & meshDimensions() const;
106
114 IntVec<D> const & dftDimensions() const;
115
122 template <class Archive>
123 void serialize(Archive& ar, const unsigned int version);
124
125 private:
126
127 // Vector containing number of grid points in each direction.
128 IntVec<D> meshDimensions_;
129
130 // Vector containing dimensions of dft (Fourier) grid.
131 IntVec<D> dftDimensions_;
132
133 using FftwDArray<fftw_complex>::allocate;
134
135 };
136
137 #if 0
138 /*
139 * Allocate the underlying C array for an FFT grid.
140 */
141 template <int D>
142 void RFieldDft<D>::allocate(IntVec<D> const & meshDimensions)
143 {
144 int size = 1;
145 for (int i = 0; i < D; ++i) {
146 UTIL_CHECK(meshDimensions[i] > 0);
147 meshDimensions_[i] = meshDimensions[i];
148 if (i < D - 1) {
149 dftDimensions_[i] = meshDimensions[i];
150 size *= meshDimensions[i];
151 } else {
152 dftDimensions_[i] = (meshDimensions[i]/2 + 1);
153 size *= dftDimensions_[i];
154 }
155 }
157 }
158 #endif
159
160 /*
161 * Return mesh dimensions by constant reference.
162 */
163 template <int D>
165 { return meshDimensions_; }
166
167 /*
168 * Return dimensions of dft grid by constant reference.
169 */
170 template <int D>
172 { return dftDimensions_; }
173
174 /*
175 * Serialize a Field to/from an Archive.
176 */
177 template <int D>
178 template <class Archive>
179 void RFieldDft<D>::serialize(Archive& ar, const unsigned int version)
180 {
182 ar & meshDimensions_;
183 ar & dftDimensions_;
184 }
185
186 #ifndef PRDC_R_FIELD_DFT_TPP
187 extern template class RFieldDft<1>;
188 extern template class RFieldDft<2>;
189 extern template class RFieldDft<3>;
190 #endif
191
192}
193}
194}
195#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Dynamic array with data aligned for use with FFTW library.
Definition FftwDArray.h:33
void serialize(Archive &ar, const unsigned int version)
Serialize a FftwDArray to/from an Archive.
Definition FftwDArray.h:110
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.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.