PSCF v1.2
cpu/RField.h
1#ifndef PRDC_CPU_R_FIELD_H
2#define PRDC_CPU_R_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 <pscf/math/IntVec.h>
13#include <util/global.h>
14
15namespace Pscf {
16namespace Prdc {
17namespace Cpu {
18
19 using namespace Util;
20 using namespace Pscf;
21
27 template <int D>
28 class RField : public FftwDArray<double>
29 {
30
31 public:
32
36 typedef double ElementType;
37
41 RField();
42
50 RField(const RField& other);
51
57 virtual ~RField();
58
69 RField& operator = (const RField& other);
70
78 void allocate(IntVec<D> const & meshDimensions);
79
83 virtual void deallocate();
84
88 const IntVec<D>& meshDimensions() const;
89
96 template <class Archive>
97 void serialize(Archive& ar, const unsigned int version);
98
99 private:
100
101 // Vector containing number of grid points in each direction.
102 IntVec<D> meshDimensions_;
103
104 using FftwDArray<double>::allocate;
105
106 };
107
108 /*
109 * Return mesh dimensions by constant reference.
110 */
111 template <int D>
113 { return meshDimensions_; }
114
115 /*
116 * Serialize a Field to/from an Archive.
117 */
118 template <int D>
119 template <class Archive>
120 void RField<D>::serialize(Archive& ar, const unsigned int version)
121 {
123 ar & meshDimensions_;
124 }
125
126 #ifndef PRDC_CPU_R_FIELD_TPP
127 extern template class RField<1>;
128 extern template class RField<2>;
129 extern template class RField<3>;
130 #endif
131
132}
133}
134}
135#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
Field of real double precision values on an FFT mesh.
RField()
Default constructor.
void serialize(Archive &ar, const unsigned int version)
Serialize a Field to/from an Archive.
Definition cpu/RField.h:120
double ElementType
Type of each array element.
Definition cpu/RField.h:36
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for an FFT grid.
RField & operator=(const RField &other)
Assignment operator.
virtual void deallocate()
Deallocate memory and return to empty state.
const IntVec< D > & meshDimensions() const
Return mesh dimensions by constant reference.
Definition cpu/RField.h:112
virtual ~RField()
Destructor.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.