PSCF v1.2
rpg/scft/iterator/ExtGenFilm.h
1#ifndef RPG_EXT_GEN_FILM_H
2#define RPG_EXT_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/ExtGenFilmBase.h> // Base class
13
14namespace Pscf {
15namespace Rpg {
16
17 using namespace Util;
18 using namespace Pscf::Prdc;
19
37 template <int D>
38 class ExtGenFilm : public ExtGenFilmBase<D>
39 {
40
41 public:
42
46 ExtGenFilm();
47
54
59
63 bool isGenerated() const;
64
77 double stressTerm(int paramId) const;
78
85
86 protected:
87
91 void allocate();
92
96 void generate();
97
101 System<D> & system();
105 System<D> const & system() const;
106
110 std::string systemSpaceGroup() const;
111
117 RealVec<D> systemLatticeVector(int id) const;
118
122 int systemNMonomer() const;
123
128
133
138
139 private:
140
142 System<D>* sysPtr_;
143
145 double interfaceThickness_;
146
147 };
148
149 // Inline member functions
150
151 // Check whether the field has been generated
152 template <int D>
153 inline bool ExtGenFilm<D>::isGenerated() const
154 { return system().h().hasData(); }
155
156 // Get parent System by non-const reference.
157 template <int D>
159 { return *sysPtr_; }
160
161 // Get parent System by const reference.
162 template <int D>
164 { return *sysPtr_; }
165
166 // Get space group name for this system.
167 template <int D>
168 inline std::string ExtGenFilm<D>::systemSpaceGroup() const
169 { return system().domain().groupName(); }
170
171 // Get one of the lattice vectors for this system.
172 template <int D>
174 { return system().domain().unitCell().rBasis(id); }
175
176 // Get the number of monomer species for this system.
177 template <int D>
179 { return system().mixture().nMonomer(); }
180
181 #ifndef RPG_EXT_GEN_FILM_TPP
182 extern template class ExtGenFilm<1>;
183 extern template class ExtGenFilm<2>;
184 extern template class ExtGenFilm<3>;
185 #endif
186
187} // namespace Rpg
188} // namespace Pscf
189
190#endif
Base class defining external fields for thin film systems.
double excludedThickness() const
Get value of excludedThickness.
bool isAthermal() const
Are the walls athermal?
int normalVecId() const
Get value of normalVecId.
DArray< double > chiBottomCurrent_
The chiBottom array used to generate the current external fields.
RealVec< D > normalVecCurrent_
The lattice vector normal to the film used to generate these fields.
DArray< double > const & chiTop() const
Get const chiTop array by reference.
DArray< double > chiTopCurrent_
The chiTop array used to generate the current external fields.
double interfaceThickness() const
Get value of interfaceThickness.
DArray< double > const & chiBottom() const
Get const chiBottom matrix by reference.
A RealVec<D, T> is D-component vector with elements of floating type T.
Definition RealVec.h:28
External field generator for a thin film geometry.
void maskNormalVecId()
Use the mask to determine and store the value of normalVecId.
void generate()
Generate the fields and store where the Iterator can access.
RealVec< D > systemLatticeVector(int id) const
Get one of the lattice vectors for this system.
bool isGenerated() const
Check whether the fields have been generated.
std::string systemSpaceGroup() const
Get the space group name for this system.
double stressTerm(int paramId) const
Get contribution to the stress from the external fields.
void allocate()
Allocate container necessary to generate and store fields.
System< D > & system()
Get the System associated with this object by reference.
void maskInterfaceThickness()
Use the mask to determine and store the value of interfaceThickness.
int systemNMonomer() const
Get the number of monomer species for this system.
Main class for calculations that represent one system.
Definition rpg/System.h:107
WFieldContainer< D > & h()
Get container of external potential fields (non-const reference).
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.