PSCF v1.2
cpu/RField.tpp
1#ifndef PRDC_CPU_R_FIELD_TPP
2#define PRDC_CPU_R_FIELD_TPP
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 "RField.h"
12
13namespace Pscf {
14namespace Prdc {
15namespace Cpu {
16
17 using namespace Util;
18
22 template <int D>
24 : FftwDArray<double>(),
25 meshDimensions_(0)
26 {}
27
28 /*
29 * Destructor.
30 */
31 template <int D>
34
35 /*
36 * Copy constructor.
37 *
38 * Allocates new memory and copies all elements by value.
39 *
40 *\param other the Field to be copied.
41 */
42 template <int D>
44 : FftwDArray<double>(),
45 meshDimensions_(0)
46 {
47 if (other.isAllocated()) {
48 allocate(other.meshDimensions_);
49 for (int i = 0; i < capacity_; ++i) {
50 data_[i] = other.data_[i];
51 }
52 }
53 }
54
55 /*
56 * Assignment, element-by-element.
57 *
58 * This operator will allocate memory if not allocated previously.
59 *
60 * \throw Exception if other Field is not allocated.
61 * \throw Exception if both Fields are allocated with unequal capacities.
62 *
63 * \param other the rhs Field
64 */
65 template <int D>
67 {
68 // Check for self assignment
69 if (this == &other) return *this;
70
71 // Precondition
72 if (!other.isAllocated()) {
73 UTIL_THROW("Other Field must be allocated.");
74 }
75
76 if (!isAllocated()) {
77 allocate(other.meshDimensions_);
78 }
79 UTIL_CHECK(capacity_ == other.capacity_);
80 UTIL_CHECK(meshDimensions_ == other.meshDimensions_);
81
82 // Copy elements
83 for (int i = 0; i < capacity_; ++i) {
84 data_[i] = other[i];
85 }
86
87 return *this;
88 }
89
90 /*
91 * Allocate the underlying C array for an FFT grid.
92 */
93 template <int D>
94 void RField<D>::allocate(const IntVec<D>& meshDimensions)
95 {
96 int size = 1;
97 for (int i = 0; i < D; ++i) {
98 UTIL_CHECK(meshDimensions[i] > 0);
99 meshDimensions_[i] = meshDimensions[i];
100 size *= meshDimensions[i];
101 }
103 }
104
105 /*
106 * Dellocate the underlying C array and clear meshDimensions.
107 */
108 template <int D>
110 {
112 for (int i = 0; i < D; ++i) {
113 meshDimensions_[i] = 0;
114 }
115 }
116
117}
118}
119}
120#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 allocate(int capacity)
Allocate the underlying C array.
virtual void deallocate()
Dellocate the underlying C array.
bool isAllocated() const
Return true if the FftwDArray has been allocated, false otherwise.
Definition FftwDArray.h:102
Field of real double precision values on an FFT mesh.
RField()
Default constructor.
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.
virtual ~RField()
Destructor.
int capacity_
Allocated size of the data_ array.
Definition Array.h:112
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.