PSCF v1.2
rpc/field/CFieldContainer.h
1#ifndef RPC_C_FIELD_CONTAINER_H
2#define RPC_C_FIELD_CONTAINER_H
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 <prdc/cpu/RField.h> // member template parameter
12#include <util/containers/DArray.h> // member template
13
14namespace Pscf {
15namespace Rpc {
16
17 using namespace Util;
18 using namespace Prdc;
19 using namespace Prdc::Cpu;
20
39 template <int D>
41 {
42
43 public:
44
49
54
57
65 void setNMonomer(int nMonomer);
66
72 void allocateRGrid(IntVec<D> const & dimensions);
73
77 void deallocateRGrid();
78
84 void allocateBasis(int nBasis);
85
89 void deallocateBasis();
90
100 void allocate(int nMonomer, int nBasis, IntVec<D> const & dimensions);
101
105
110 { return basis_; }
111
118 { return basis_; }
119
120
126 DArray<double> & basis(int monomerId)
127 { return basis_[monomerId]; }
128
134 DArray<double> const & basis(int monomerId) const
135 { return basis_[monomerId]; }
136
141 { return rgrid_; }
142
146 DArray< RField<D> > const & rgrid() const
147 { return rgrid_; }
148
154 RField<D> & rgrid(int monomerId)
155 { return rgrid_[monomerId]; }
156
162 RField<D> const & rgrid(int monomerId) const
163 { return rgrid_[monomerId]; }
164
168
172 bool isAllocatedRGrid() const
173 { return isAllocatedRGrid_; }
174
178 bool isAllocatedBasis() const
179 { return isAllocatedBasis_; }
180
182
183 private:
184
185 /*
186 * Array of fields in symmetry-adapted basis format
187 *
188 * Element basis_[i] is an array that contains the components
189 * of the field associated with monomer i, in a symmetry-adapted
190 * Fourier basis expansion.
191 */
192 DArray< DArray<double> > basis_;
193
194 /*
195 * Array of fields in real-space grid (r-grid) format
196 *
197 * Element basis_[i] is an RField<D> that contains values of the
198 * field associated with monomer i on the nodes of a regular mesh.
199 */
200 DArray< RField<D> > rgrid_;
201
202 /*
203 * Number of monomer types.
204 */
205 int nMonomer_;
206
207 /*
208 * Has memory been allocated for fields in r-grid format?
209 */
210 bool isAllocatedRGrid_;
211
212 /*
213 * Has memory been allocated for fields in basis format?
214 */
215 bool isAllocatedBasis_;
216
217 };
218
219 #ifndef RPC_FIELD_CONTAINER_TPP
220 // Suppress implicit instantiation
221 extern template class CFieldContainer<1>;
222 extern template class CFieldContainer<2>;
223 extern template class CFieldContainer<3>;
224 #endif
225
226} // namespace Rpc
227} // namespace Pscf
228#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Field of real double precision values on an FFT mesh.
A list of c fields stored in both basis and r-grid format.
void allocate(int nMonomer, int nBasis, IntVec< D > const &dimensions)
Allocate memory for both r-grid and basis field formats.
DArray< double > & basis(int monomerId)
Get the field for one monomer type in basis format (non-const).
DArray< RField< D > > const & rgrid() const
Get array of all fields in r-grid format (const).
void allocateBasis(int nBasis)
Allocate or re-allocate memory for fields in basis format.
DArray< RField< D > > & rgrid()
Get array of all fields in r-grid format (non-const).
RField< D > & rgrid(int monomerId)
Get field for one monomer type in r-grid format (non-const)
RField< D > const & rgrid(int monomerId) const
Get field for one monomer type in r-grid format (const).
DArray< double > const & basis(int monomerId) const
Get the field for one monomer type in basis format (const)
bool isAllocatedRGrid() const
Has memory been allocated for fields in r-grid format?
bool isAllocatedBasis() const
Has memory been allocated 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.
DArray< DArray< double > > const & basis() const
Get array of all fields in basis format (const)
DArray< DArray< double > > & basis()
Get array of all fields in basis format (non-const).
Dynamically allocatable contiguous array template.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.