PSCF v1.2
cpu/CField.tpp
1#ifndef PRDC_CPU_C_FIELD_TPP
2#define PRDC_CPU_C_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 "CField.h"
12
13namespace Pscf {
14namespace Prdc {
15namespace Cpu {
16
17 using namespace Util;
18
22 template <int D>
24 : FftwDArray<fftw_complex>(),
25 meshDimensions_()
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<fftw_complex>(),
45 meshDimensions_()
46 {
47 if (other.isAllocated() && other.capacity_ > 0) {
48 FftwDArray<fftw_complex>::allocate(other.capacity_);
49 meshDimensions_ = other.meshDimensions_;
50 for (int i = 0; i < capacity_; ++i) {
51 data_[i][0] = other.data_[i][0];
52 data_[i][1] = other.data_[i][1];
53 }
54 }
55 }
56
57 /*
58 * Assignment, element-by-element.
59 *
60 * This operator will allocate memory if not allocated previously.
61 */
62 template <int D>
64 {
65 // Check for self assignment
66 if (this == &other) return *this;
67
68 // Precondition
69 if (!other.isAllocated()) {
70 UTIL_THROW("Other CField must be allocated in assignment.");
71 }
72
73 if (!isAllocated()) {
74 allocate(other.meshDimensions_);
75 }
76 UTIL_CHECK(capacity_ == other.capacity_);
77 UTIL_CHECK(meshDimensions_ == other.meshDimensions_);
78
79 // Copy elements
80 for (int i = 0; i < capacity_; ++i) {
81 data_[i][0] = other.data_[i][0];
82 data_[i][1] = other.data_[i][1];
83 }
84
85 return *this;
86 }
87
88 /*
89 * Allocate the underlying C array for an FFT grid.
90 */
91 template <int D>
92 void CField<D>::allocate(const IntVec<D>& meshDimensions)
93 {
94 int size = 1;
95 for (int i = 0; i < D; ++i) {
96 UTIL_CHECK(meshDimensions[i] > 0);
97 meshDimensions_[i] = meshDimensions[i];
98 size *= meshDimensions[i];
99 }
101 }
102
103 /*
104 * Allocate the underlying C array for an FFT grid.
105 */
106 template <int D>
108 {
110 for (int i = 0; i < D; ++i) {
111 meshDimensions_[i] = 0;
112 }
113 }
114
115}
116}
117}
118#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
CField()
Default constructor.
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.
virtual ~CField()
Destructor.
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
Data * data_
Pointer to an array of Data elements.
Definition Array.h:109
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.