PSCF v1.2
rpg/field/Mask.h
1#ifndef RPG_MASK_H
2#define RPG_MASK_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 "FieldIo.h" // parent class template parameter
12#include <prdc/cuda/RField.h> // parent class template parameter
13#include <prdc/field/MaskTmpl.h> // parent class
14
15namespace Pscf {
16namespace Rpg {
17
18 using namespace Util;
19
30 template <int D>
31 class Mask
32 : public Prdc::MaskTmpl< D, FieldIo<D>, Prdc::Cuda::RField<D> >
33 {
34
35 public:
36
39
43 Mask();
44
48 ~Mask();
49
50 // Inherited public member functions
51 using Base::setFieldIo;
54 using Base::setBasis;
55 using Base::setRGrid;
56 using Base::readBasis;
57 using Base::readRGrid;
58 using Base::basis;
59 using Base::rgrid;
60 using Base::phiTot;
63 using Base::hasData;
65
66 protected:
67
71 double rGridAverage() const;
72
73 };
74
75 #ifndef RPG_MASK_TPP
76 extern template class Mask<1>;
77 extern template class Mask<2>;
78 extern template class Mask<3>;
79 #endif
80
81} // namespace Rpg
82
83#ifndef RPG_MASK_TPP
84namespace Prdc {
85 extern template class MaskTmpl< 1, Rpg::FieldIo<1>, Cuda::RField<1> >;
86 extern template class MaskTmpl< 2, Rpg::FieldIo<2>, Cuda::RField<2> >;
87 extern template class MaskTmpl< 3, Rpg::FieldIo<3>, Cuda::RField<3> >;
88}
89#endif
90
91} // namespace Pscf
92#endif
Field of real values on a regular mesh, allocated on a GPU device.
Container for a field to which the total density is constrained.
Definition MaskTmpl.h:62
void setRGrid(RField const &field, bool isSymmetric=false)
Definition MaskTmpl.tpp:106
void readRGrid(std::istream &in, UnitCell< D > &unitCell, bool isSymmetric=false)
Definition MaskTmpl.tpp:170
void readBasis(std::istream &in, UnitCell< D > &unitCell)
Definition MaskTmpl.tpp:125
A field to which the total monomer concentration is constrained.
~Mask()
Destructor.
double rGridAverage() const
Calculate the average value of the rgrid_ member.
Prdc::MaskTmpl< D, FieldIo< D >, Prdc::Cuda::RField< D > > Base
Base class typedef.
Mask()
Constructor.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.