PSCF v1.2
rpc/scft/iterator/ExtGenFilm.h
1#ifndef RPC_EXT_GEN_FILM_H
2#define RPC_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 <rpc/System.h>
12#include <prdc/iterator/ExtGenFilmBase.h> // Base class
13
14namespace Pscf {
15namespace Rpc {
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
129 private:
130
132 System<D>* sysPtr_;
133
135 double interfaceThickness_;
136
137 };
138
139 // Inline member functions
140
141 // Check whether the field has been generated
142 template <int D>
143 inline bool ExtGenFilm<D>::isGenerated() const
144 { return system().h().hasData(); }
145
146 // Get parent System by non-const reference.
147 template <int D>
149 { return *sysPtr_; }
150
151 // Get parent System by const reference.
152 template <int D>
154 { return *sysPtr_; }
155
156 // Get space group name for this system.
157 template <int D>
158 inline std::string ExtGenFilm<D>::systemSpaceGroup() const
159 { return system().domain().groupName(); }
160
161 // Get one of the lattice vectors for this system.
162 template <int D>
164 { return system().domain().unitCell().rBasis(id); }
165
166 // Get the number of monomer species for this system.
167 template <int D>
169 { return system().mixture().nMonomer(); }
170
171 #ifndef RPC_EXT_GEN_FILM_TPP
172 extern template class ExtGenFilm<1>;
173 extern template class ExtGenFilm<2>;
174 extern template class ExtGenFilm<3>;
175 #endif
176
177} // namespace Rpc
178} // namespace Pscf
179
180#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.
bool isGenerated() const
Check whether the fields have been generated.
std::string systemSpaceGroup() const
Get the space group name for this system.
int systemNMonomer() const
Get the number of monomer species for this system.
void allocate()
Allocate container necessary to generate and store fields.
RealVec< D > systemLatticeVector(int id) const
Get one of the lattice vectors for this system.
void generate()
Generate the fields and store where the Iterator can access.
double stressTerm(int paramId) const
Get contribution to the stress from the external fields.
System< D > & system()
Get the System associated with this object by reference.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
WFieldContainer< D > & h()
Get container of external potential fields (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.