PSCF v1.2
MaskTmpl.h
1#ifndef PRDC_MASK_TMPL_H
2#define PRDC_MASK_TMPL_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/crystal/UnitCell.h> // function parameter
12#include <pscf/math/IntVec.h> // function parameter
13#include <util/containers/DArray.h> // member template
14#include <util/param/ParamComposite.h> // base class
15
16namespace Pscf {
17namespace Prdc {
18
19 using namespace Util;
20
60 template <int D, typename FieldIo, typename RField>
61 class MaskTmpl : public ParamComposite
62 {
63
64 public:
65
69 MaskTmpl();
70
74 ~MaskTmpl();
75
78
82 void setFieldIo(FieldIo const & fieldIo);
83
91 void allocateBasis(int nBasis);
92
100 void allocateRGrid(IntVec<D> const & dimensions);
101
105
115 void setBasis(DArray<double> const & field);
116
132 void setRGrid(RField const & field, bool isSymmetric = false);
133
147 void readBasis(std::istream& in, UnitCell<D>& unitCell);
148
162 void readBasis(std::string filename, UnitCell<D>& unitCell);
163
183 void readRGrid(std::istream& in, UnitCell<D>& unitCell,
184 bool isSymmetric = false);
185
205 void readRGrid(std::string filename, UnitCell<D>& unitCell,
206 bool isSymmetric = false);
207
211
215 DArray<double> const & basis() const;
216
220 RField const & rgrid() const;
221
233 double phiTot() const;
234
238
242 bool isAllocatedBasis() const;
243
247 bool isAllocatedRGrid() const;
248
254 bool hasData() const;
255
264 bool isSymmetric() const;
265
267
268 protected:
269
276 virtual double rGridAverage() const = 0;
277
278 private:
279
283 DArray<double> basis_;
284
288 RField rgrid_;
289
293 FieldIo const * fieldIoPtr_;
294
300 IntVec<D> meshDimensions_;
301
305 int meshSize_;
306
310 int nBasis_;
311
315 int nMonomer_;
316
320 bool isAllocatedBasis_;
321
325 bool isAllocatedRGrid_;
326
330 bool hasData_;
331
338 bool isSymmetric_;
339
340 };
341
342 // Inline member functions
343
344 // Get field in basis format (const)
345 template <int D, typename FieldIo, typename RField>
347 {
348 UTIL_ASSERT(hasData_);
349 UTIL_ASSERT(isSymmetric_);
350 return basis_;
351 }
352
353 // Get field in r-grid format (const)
354 template <int D, typename FieldIo, typename RField>
356 {
357 UTIL_ASSERT(hasData_);
358 return rgrid_;
359 }
360
361 // Has memory been allocated in basis format?
362 template <int D, typename FieldIo, typename RField>
364 { return isAllocatedBasis_; }
365
366 // Has memory been allocated in rgrid format?
367 template <int D, typename FieldIo, typename RField>
369 { return isAllocatedRGrid_; }
370
371 // Have the field data been set?
372 template <int D, typename FieldIo, typename RField>
374 { return hasData_; }
375
376 // Is the field symmetric under space group operations?
377 template <int D, typename FieldIo, typename RField>
379 { return isSymmetric_; }
380
381} // namespace Prdc
382} // namespace Pscf
383#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.
Container for a field to which the total density is constrained.
Definition MaskTmpl.h:62
double phiTot() const
Return the volume fraction of unit cell occupied by material.
Definition MaskTmpl.tpp:216
bool isSymmetric() const
Are field symmetric under all elements of the space group?
Definition MaskTmpl.h:378
void setFieldIo(FieldIo const &fieldIo)
Create association with FieldIo (store pointer).
Definition MaskTmpl.tpp:46
~MaskTmpl()
Destructor.
Definition MaskTmpl.tpp:39
bool isAllocatedRGrid() const
Has memory been allocated in rgrid format?
Definition MaskTmpl.h:368
MaskTmpl()
Constructor.
Definition MaskTmpl.tpp:22
RField const & rgrid() const
Get the field in r-grid format.
Definition MaskTmpl.h:355
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
virtual double rGridAverage() const =0
Calculate the average value of the rgrid_ member.
bool hasData() const
Has field data been set in either format?
Definition MaskTmpl.h:373
void readBasis(std::istream &in, UnitCell< D > &unitCell)
Read field from input stream in symmetrized Fourier format.
Definition MaskTmpl.tpp:125
bool isAllocatedBasis() const
Has memory been allocated in basis format?
Definition MaskTmpl.h:363
DArray< double > const & basis() const
Get the field in basis format.
Definition MaskTmpl.h:346
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
Dynamically allocatable contiguous array template.
An object that can read multiple parameters from file.
#define UTIL_ASSERT(condition)
Assertion macro suitable for debugging serial or parallel code.
Definition global.h:75
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.