PSCF v1.2
MaskTmpl.tpp
1#ifndef PRDC_MASK_TMPL_TPP
2#define PRDC_MASK_TMPL_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 "MaskTmpl.h"
12
13namespace Pscf {
14namespace Prdc {
15
16 using namespace Util;
17
18 /*
19 * Constructor.
20 */
21 template <int D, typename FieldIo, typename RField>
23 : basis_(),
24 rgrid_(),
25 fieldIoPtr_(nullptr),
26 meshDimensions_(),
27 meshSize_(0),
28 nBasis_(0),
29 isAllocatedBasis_(false),
30 isAllocatedRGrid_(false),
31 hasData_(false),
32 isSymmetric_(false)
33 {}
34
35 /*
36 * Destructor.
37 */
38 template <int D, typename FieldIo, typename RField>
41
42 /*
43 * Create an association with a FieldIo object.
44 */
45 template <int D, typename FieldIo, typename RField>
46 void MaskTmpl<D, FieldIo, RField>::setFieldIo(FieldIo const & fieldIo)
47 { fieldIoPtr_ = &fieldIo; }
48
49 /*
50 * Allocate memory for field in basis format.
51 */
52 template <int D, typename FieldIo, typename RField>
54 {
55 UTIL_CHECK(!isAllocatedBasis_);
56
57 // Set basis dimensions
58 nBasis_ = nBasis;
59
60 // Allocate field array, basis format
61 basis_.allocate(nBasis);
62 isAllocatedBasis_ = true;
63 }
64
65 /*
66 * Allocate memory for field in basis format.
67 */
68 template <int D, typename FieldIo, typename RField>
69 void
71 {
72 UTIL_CHECK(!isAllocatedRGrid_);
73
74 // Set mesh dimensions
75 meshDimensions_ = meshDimensions;
76 meshSize_ = 1;
77 for (int i = 0; i < D; ++i) {
78 UTIL_CHECK(meshDimensions[i] > 0);
79 meshSize_ *= meshDimensions[i];
80 }
81
82 // Allocate field array, rgrid format
83 rgrid_.allocate(meshDimensions);
84 isAllocatedRGrid_ = true;
85 }
86
87 /*
88 * Set new w-field values.
89 */
90 template <int D, typename FieldIo, typename RField>
92 {
93 UTIL_CHECK(field.capacity() == nBasis_);
94 for (int j = 0; j < nBasis_; ++j) {
95 basis_[j] = field[j];
96 }
97 fieldIoPtr_->convertBasisToRGrid(basis_, rgrid_);
98 hasData_ = true;
99 isSymmetric_ = true;
101
102 /*
103 * Set new field values, using r-grid field as input.
104 */
105 template <int D, typename FieldIo, typename RField>
107 bool isSymmetric)
108 {
109 rgrid_ = field; // deep copy
110 if (isSymmetric) {
111 fieldIoPtr_->convertRGridToBasis(rgrid_, basis_);
112 }
113 hasData_ = true;
114 isSymmetric_ = isSymmetric;
116
117 /*
118 * Read field from input stream, in symmetrized Fourier format.
119 *
120 * This function also computes and stores the corresponding
121 * r-grid representation. On return, hasData and isSymmetric
122 * are both true.
123 */
124 template <int D, typename FieldIo, typename RField>
126 UnitCell<D>& unitCell)
127 {
128 fieldIoPtr_->readFieldBasis(in, basis_, unitCell);
129
130 // Update system wFieldsRGrid
131 fieldIoPtr_->convertBasisToRGrid(basis_, rgrid_);
133 hasData_ = true;
134 isSymmetric_ = true;
135 }
136
137 /*
138 * Read field from file, in symmetrized Fourier format.
139 *
140 * This function also computes and stores the corresponding
141 * r-grid representation. On return, hasData and isSymmetric
142 * are both true.
143 */
144 template <int D, typename FieldIo, typename RField>
145 void MaskTmpl<D, FieldIo, RField>::readBasis(std::string filename,
146 UnitCell<D>& unitCell)
148 fieldIoPtr_->readFieldBasis(filename, basis_, unitCell);
149
150 // Update system wFieldsRGrid
151 fieldIoPtr_->convertBasisToRGrid(basis_, rgrid_);
152
153 hasData_ = true;
154 isSymmetric_ = true;
155 }
156
157 /*
158 * Reads field from an input stream in real-space (r-grid) format.
159 *
160 * If the isSymmetric parameter is true, this function assumes that
161 * the field is known to be symmetric and so computes and stores
162 * the corresponding basis format. If isSymmetric is false, it
163 * only sets the values in the r-grid format.
164 *
165 * On return, hasData is true and the persistent isSymmetric flag
166 * defined by the class is set to the value of the isSymmetric
167 * input parameter.
168 */
169 template <int D, typename FieldIo, typename RField>
171 UnitCell<D>& unitCell,
172 bool isSymmetric)
173 {
174 fieldIoPtr_->readFieldRGrid(in, rgrid_, unitCell);
175
176 if (isSymmetric) {
177 fieldIoPtr_->convertRGridToBasis(rgrid_, basis_);
178 }
179
180 hasData_ = true;
181 isSymmetric_ = isSymmetric;
182 }
184 /*
185 * Reads field from a file in real-space (r-grid) format.
186 *
187 * If the isSymmetric parameter is true, this function assumes that
188 * the field is known to be symmetric and so computes and stores
189 * the corresponding basis format. If isSymmetric is false, it
190 * only sets the values in the r-grid format.
191 *
192 * On return, hasData is true and the persistent isSymmetric flag
193 * defined by the class is set to the value of the isSymmetric
194 * input parameter.
195 */
196 template <int D, typename FieldIo, typename RField>
197 void MaskTmpl<D, FieldIo, RField>::readRGrid(std::string filename,
198 UnitCell<D>& unitCell,
199 bool isSymmetric)
200 {
201 fieldIoPtr_->readFieldRGrid(filename, rgrid_, unitCell);
202
203 if (isSymmetric) {
204 fieldIoPtr_->convertRGridToBasis(rgrid_, basis_);
206
207 hasData_ = true;
208 isSymmetric_ = isSymmetric;
209 }
210
211 /*
212 * Return volume fraction of the unit cell occupied by the
213 * polymers/solvents.
214 */
215 template <int D, typename FieldIo, typename RField>
217 {
218 if (isSymmetric() && hasData()) {
219 // Data in basis format is available
220 return basis()[0];
221 } else if (!hasData()) {
222 // system does not have a mask
223 return 1.0;
224 } else { // Data is only available in r-grid format
225 return rGridAverage();
226 }
227 }
228
229} // namespace Prdc
230} // namespace Pscf
231#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.
double phiTot() const
Return the volume fraction of unit cell occupied by material.
Definition MaskTmpl.tpp:216
void setFieldIo(FieldIo const &fieldIo)
Create association with FieldIo (store pointer).
Definition MaskTmpl.tpp:46
~MaskTmpl()
Destructor.
Definition MaskTmpl.tpp:39
MaskTmpl()
Constructor.
Definition MaskTmpl.tpp:22
void setBasis(DArray< double > const &field)
Set field component values, in symmetrized Fourier format.
Definition MaskTmpl.tpp:91
void setRGrid(RField const &field, bool isSymmetric=false)
Set field values in real-space (r-grid) format.
Definition MaskTmpl.tpp:106
void readRGrid(std::istream &in, UnitCell< D > &unitCell, bool isSymmetric=false)
Reads field from an input stream in real-space (r-grid) format.
Definition MaskTmpl.tpp:170
void allocateRGrid(IntVec< D > const &dimensions)
Allocate memory for the field in rgrid format.
Definition MaskTmpl.tpp:70
void allocateBasis(int nBasis)
Allocate memory for the field in basis format.
Definition MaskTmpl.tpp:53
void readBasis(std::istream &in, UnitCell< D > &unitCell)
Read field from input stream in symmetrized Fourier format.
Definition MaskTmpl.tpp:125
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
int capacity() const
Return allocated size.
Definition Array.h:159
Dynamically allocatable contiguous array template.
#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.