PSCF v1.2
rpg/field/CFieldContainer.h
1#ifndef RPG_C_FIELD_CONTAINER_H
2#define RPG_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 <util/containers/DArray.h> // member template
12#include <prdc/cuda/RField.h> // member template parameter
13
14namespace Pscf {
15namespace Rpg {
16
17 using namespace Util;
18 using namespace Pscf::Prdc;
19 using namespace Pscf::Prdc::Cuda;
20
39 template <int D>
41 {
42
43 public:
44
49
54
62 void setNMonomer(int nMonomer);
63
69 void allocateRGrid(IntVec<D> const & dimensions);
70
74 void deallocateRGrid();
75
81 void allocateBasis(int nBasis);
82
86 void deallocateBasis();
87
97 void allocate(int nMonomer, int nBasis, IntVec<D> const & dimensions);
98
103 { return basis_; }
104
111 { return basis_; }
112
118 DArray<double> & basis(int monomerId)
119 { return basis_[monomerId]; }
120
126 DArray<double> const & basis(int monomerId) const
127 { return basis_[monomerId]; }
128
133 { return rgrid_; }
134
138 DArray< RField<D> > const & rgrid() const
139 { return rgrid_; }
140
146 RField<D> & rgrid(int monomerId)
147 { return rgrid_[monomerId]; }
148
154 RField<D> const & rgrid(int monomerId) const
155 { return rgrid_[monomerId]; }
156
160 bool isAllocatedRGrid() const
161 { return isAllocatedRGrid_; }
162
166 bool isAllocatedBasis() const
167 { return isAllocatedBasis_; }
168
169 private:
170
171 /*
172 * Array of fields in symmetry-adapted basis format
173 *
174 * Element basis_[i] is an array that contains the components
175 * of the field associated with monomer i, in a symmetry-adapted
176 * Fourier basis expansion.
177 */
178 DArray< DArray<double> > basis_;
179
180 /*
181 * Array of fields in real-space grid (r-grid) format
182 *
183 * Element basis_[i] is an RField<D> that contains values of the
184 * field associated with monomer i on the nodes of a regular mesh.
185 */
186 DArray< RField<D> > rgrid_;
187
188 /*
189 * Number of monomer types.
190 */
191 int nMonomer_;
192
193 /*
194 * Has memory been allocated for fields in r-grid format?
195 */
196 bool isAllocatedRGrid_;
197
198 /*
199 * Has memory been allocated for fields in basis format?
200 */
201 bool isAllocatedBasis_;
202
203 };
204
205 #ifndef RPG_FIELD_CONTAINER_TPP
206 // Suppress implicit instantiation
207 extern template class CFieldContainer<1>;
208 extern template class CFieldContainer<2>;
209 extern template class CFieldContainer<3>;
210 #endif
211
212} // namespace Rpg
213} // namespace Pscf
214#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 setNMonomer(int nMonomer)
Set stored value of nMonomer.
DArray< RField< D > > const & rgrid() const
Get array of all fields in r-grid format (const).
DArray< double > const & basis(int monomerId) const
Get the field for one monomer type in basis format (const)
void deallocateBasis()
De-allocate fields in basis format.
RField< D > & rgrid(int monomerId)
Get field for one monomer type in r-grid format (non-const)
DArray< DArray< double > > & basis()
Get array of all fields in basis format (non-const).
DArray< DArray< double > > const & basis() const
Get array of all fields in basis format (const)
RField< D > const & rgrid(int monomerId) const
Get field for one monomer type in r-grid format (const).
void allocateRGrid(IntVec< D > const &dimensions)
Allocate or re-allocate memory for fields in rgrid format.
DArray< double > & basis(int monomerId)
Get the field for one monomer type in basis format (non-const).
bool isAllocatedBasis() const
Has memory been allocated for fields in basis format?
void deallocateRGrid()
De-allocate fields in rgrid format.
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.
DArray< RField< D > > & rgrid()
Get array of all fields in r-grid format (non-const).
bool isAllocatedRGrid() const
Has memory been allocated for fields in r-grid format?
Dynamically allocatable contiguous array template.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.