PSCF v1.2
rpc/field/CFieldContainer.tpp
1#ifndef RPC_C_FIELD_CONTAINER_TPP
2#define RPC_C_FIELD_CONTAINER_TPP
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
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 "CFieldContainer.h"
12
13namespace Pscf {
14namespace Rpc
15{
16
17 using namespace Util;
18 using namespace Prdc;
19 using namespace Prdc::Cpu;
20
21 /*
22 * Constructor.
23 */
24 template <int D>
26 : basis_(),
27 rgrid_(),
28 nMonomer_(0),
29 isAllocatedRGrid_(false),
30 isAllocatedBasis_(false)
31 {}
32
33 /*
34 * Destructor.
35 */
36 template <int D>
39
40 /*
41 * Set the stored value of nMonomer (this may only be called once).
42 */
43 template <int D>
45 {
46 UTIL_CHECK(nMonomer_ == 0);
47 UTIL_CHECK(nMonomer > 0);
48 nMonomer_ = nMonomer;
49 }
50
51 /*
52 * Allocate memory for fields in r-grid format.
53 */
54 template <int D>
55 void
57 {
58 UTIL_CHECK(nMonomer_ > 0);
59
60 // If already allocated, deallocate.
61 if (isAllocatedRGrid_) {
62 deallocateRGrid();
63 }
64
65 // Allocate arrays
66 rgrid_.allocate(nMonomer_);
67 for (int i = 0; i < nMonomer_; ++i) {
68 rgrid_[i].allocate(meshDimensions);
69 }
70 isAllocatedRGrid_ = true;
71 }
72
73 /*
74 * De-allocate memory for fields in r-grid format
75 */
76 template <int D>
78 {
79 UTIL_CHECK(isAllocatedRGrid_);
80 UTIL_CHECK(nMonomer_ > 0);
81 for (int i = 0; i < nMonomer_ ; ++i) {
82 rgrid_[i].deallocate();
83 }
84 rgrid_.deallocate();
85 isAllocatedRGrid_ = false;
86 }
87
88 /*
89 * Allocate memory for fields in basis format.
90 */
91 template <int D>
93 {
94 UTIL_CHECK(nMonomer_ > 0);
95
96 // If already allocated, deallocate.
97 if (isAllocatedBasis_) {
98 deallocateBasis();
99 }
100
101 // Allocate
102 basis_.allocate(nMonomer_);
103 for (int i = 0; i < nMonomer_; ++i) {
104 basis_[i].allocate(nBasis);
105 }
106 isAllocatedBasis_ = true;
107 }
108
109 /*
110 * De-allocate memory for fields in basis format.
111 */
112 template <int D>
114 {
115 UTIL_CHECK(nMonomer_ > 0);
116 UTIL_CHECK(isAllocatedBasis_);
117 for (int i = 0; i < nMonomer_; ++i) {
118 basis_[i].deallocate();
119 }
120 basis_.deallocate();
121 isAllocatedBasis_ = false;
122 }
123
124 /*
125 * Allocate memory for all fields.
126 */
127 template <int D>
128 void CFieldContainer<D>::allocate(int nMonomer, int nBasis,
129 IntVec<D> const & meshDimensions)
130 {
131 setNMonomer(nMonomer);
132 allocateRGrid(meshDimensions);
133 allocateBasis(nBasis);
134 }
135
136} // namespace Rpc
137} // namespace Pscf
138#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
void allocate(int nMonomer, int nBasis, IntVec< D > const &dimensions)
Allocate memory for both r-grid and basis field formats.
void allocateBasis(int nBasis)
Allocate or re-allocate memory for fields in basis format.
void deallocateRGrid()
De-allocate fields in rgrid format.
void setNMonomer(int nMonomer)
Set stored value of nMonomer.
void allocateRGrid(IntVec< D > const &dimensions)
Allocate or re-allocate memory for fields in rgrid format.
void deallocateBasis()
De-allocate fields in basis format.
#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.