PSCF v1.2
rpg/scft/iterator/MaskGenFilm.h
1#ifndef RPG_MASK_GEN_FILM_H
2#define RPG_MASK_GEN_FILM_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 <rpg/System.h>
12#include <prdc/iterator/MaskGenFilmBase.h> // Base class
13
14namespace Pscf {
15namespace Rpg {
16
17 using namespace Util;
18 using namespace Pscf::Prdc;
19
33 template <int D>
34 class MaskGenFilm : public MaskGenFilmBase<D>
35 {
36
37 public:
38
43
50
55
59 bool isGenerated() const;
60
73 double stressTerm(int paramId) const;
74
91 double modifyStress(int paramId, double stress) const;
92
97
98 protected:
99
103 void allocate();
104
108 void generate();
109
113 void setFlexibleParams() const;
114
118 System<D>& system();
122 System<D> const & system() const;
123
127 std::string systemSpaceGroup() const;
128
134 RealVec<D> systemLatticeVector(int id) const;
135
140
141 private:
142
144 System<D>* sysPtr_;
145
146 };
147
148 // Inline member functions
149
150 // Check whether the field has been generated
151 template <int D>
152 inline bool MaskGenFilm<D>::isGenerated() const
153 { return system().mask().hasData(); }
154
155 // Get parent System by non-const reference.
156 template <int D>
158 { return *sysPtr_; }
159
160 // Get parent System by const reference.
161 template <int D>
163 { return *sysPtr_; }
164
165 // Get space group name for this system.
166 template <int D>
167 inline std::string MaskGenFilm<D>::systemSpaceGroup() const
168 { return system().domain().groupName(); }
169
170 // Get one of the lattice vectors for this system.
171 template <int D>
173 { return system().domain().unitCell().rBasis(id); }
174
175 #ifndef RPG_MASK_GEN_FILM_TPP
176 extern template class MaskGenFilm<1>;
177 extern template class MaskGenFilm<2>;
178 extern template class MaskGenFilm<3>;
179 #endif
180
181} // namespace Rpg
182} // namespace Pscf
183
184#endif
Base class defining mask that imposes thin film confinement.
double fBulk_
Reference free energy used to calculate stress normal to the film.
FSArray< bool, 6 > modifyFlexibleParams(FSArray< bool, 6 > current, UnitCell< D > const &cell) const
Modifies a flexibleParams array to be compatible with this mask.
double excludedThickness() const
Get value of excludedThickness.
double interfaceThickness() const
Get value of interfaceThickness.
RealVec< D > normalVecCurrent_
The lattice vector normal to the film used to generate these fields.
int normalVecId() const
Get value of normalVecId.
bool hasFBulk() const
Check whether a value of fBulk was provided.
A RealVec<D, T> is D-component vector with elements of floating type T.
Definition RealVec.h:28
Mask generator for a thin film geometry.
void generate()
Generate the field and store where the Iterator can access.
double modifyStress(int paramId, double stress) const
Modify stress value in direction normal to the film.
void allocate()
Allocate container necessary to generate and store field.
System< D > & system()
Get the System associated with this object by reference.
std::string systemSpaceGroup() const
Get the space group name for this system.
void setFlexibleParams() const
Modifies iterator().flexibleParams_ to be compatible with the mask.
double stressTerm(int paramId) const
Get contribution to the stress from this mask.
bool isGenerated() const
Check whether the field has been generated.
RealVec< D > systemLatticeVector(int id) const
Get one of the lattice vectors for this system.
Main class for calculations that represent one system.
Definition rpg/System.h:107
Mask< D > & mask()
Get the mask (field to which total density is constrained).
void setClassName(const char *className)
Set class name string.
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.