PSCF v1.2
cpu/CField.h
1#ifndef PRDC_CPU_C_FIELD_H
2#define PRDC_CPU_C_FIELD_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
16namespace Pscf {
17namespace Prdc {
18namespace Cpu {
19
20 using namespace Util;
21 using namespace Pscf;
22
28 template <int D>
29 class CField : public FftwDArray<fftw_complex>
30 {
31
32 public:
33
34 // Typedefs
35
39 typedef fftw_complex ElementType;
40
44 typedef fftw_complex Complex;
45
49 typedef double Real;
50
51 // Member functions
52
56 CField();
57
65 CField(const CField& other);
66
72 virtual ~CField();
73
84 CField& operator = (const CField& other);
85
94
98 virtual void deallocate();
99
103 const IntVec<D>& meshDimensions() const;
104
111 template <class Archive>
112 void serialize(Archive& ar, const unsigned int version);
113
114 private:
115
116 // Vector containing number of grid points in each direction.
117 IntVec<D> meshDimensions_;
118
119 using FftwDArray<fftw_complex>::allocate;
120
121 };
122
123 /*
124 * Return mesh dimensions by constant reference.
125 */
126 template <int D>
128 { return meshDimensions_; }
129
130 /*
131 * Serialize a Field to/from an Archive.
132 */
133 template <int D>
134 template <class Archive>
135 void CField<D>::serialize(Archive& ar, const unsigned int version)
136 {
138 ar & meshDimensions_;
139 }
140
141 #ifndef PRDC_CPU_C_FIELD_TPP
142 extern template class CField<1>;
143 extern template class CField<2>;
144 extern template class CField<3>;
145 #endif
146
147}
148}
149}
150#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Field of complex double precision values on an FFT mesh.
Definition cpu/CField.h:30
const IntVec< D > & meshDimensions() const
Return mesh dimensions by constant reference.
Definition cpu/CField.h:127
void serialize(Archive &ar, const unsigned int version)
Serialize a Field to/from an Archive.
Definition cpu/CField.h:135
CField()
Default constructor.
double Real
Real and imaginary parts of a Complex number.
Definition cpu/CField.h:49
void allocate(const IntVec< D > &meshDimensions)
Allocate the underlying C array for an FFT grid.
virtual void deallocate()
Deallocate underlying C array and clear mesh dimensions.
CField & operator=(const CField &other)
Assignment operator.
fftw_complex ElementType
Type of each element.
Definition cpu/CField.h:39
fftw_complex Complex
Complex number type.
Definition cpu/CField.h:44
virtual ~CField()
Destructor.
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
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.