PSCF v1.2
MaskGenFilmBase.h
1#ifndef PRDC_MASK_GEN_FILM_BASE_H
2#define PRDC_MASK_GEN_FILM_BASE_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/iterator/FieldGenerator.h> // Base class
13#include <pscf/math/RealVec.h> // container
14#include <iostream>
15#include <string>
16
17namespace Pscf {
18namespace Prdc {
19
20 using namespace Util;
21
38 template <int D>
40 {
41
42 public:
43
48
53
59 void readParameters(std::istream& in);
60
67 void checkCompatibility();
68
72 bool updateNeeded() const;
73
77 int normalVecId() const;
78
82 double interfaceThickness() const;
83
87 double excludedThickness() const;
88
92 double fBulk() const;
93
97 bool hasFBulk() const;
98
102 bool isGenerated() const = 0;
103
117 virtual double stressTerm(int paramId) const = 0;
118
139 virtual double modifyStress(int paramId, double stress) const = 0;
140
141 protected:
142
146 void checkSpaceGroup() const;
147
174 UnitCell<D> const & cell) const;
175
186
190 virtual void allocate() = 0;
191
195 virtual void generate() = 0;
196
210 virtual void setFlexibleParams() const = 0;
211
215 virtual std::string systemSpaceGroup() const = 0;
216
222 virtual RealVec<D> systemLatticeVector(int id) const = 0;
223
234
236 double fBulk_;
237
240
241 private:
242
244 int normalVecId_;
245
247 double interfaceThickness_;
248
250 double excludedThickness_;
251
253 bool hasFBulk_;
254
256
257 };
258
259 // Inline member functions
260
261 // Get value of normalVecId.
262 template <int D>
264 { return normalVecId_; }
265
266 // Get value of interfaceThickness.
267 template <int D>
269 { return interfaceThickness_; }
270
271 // Get value of excludedThickness.
272 template <int D>
274 { return excludedThickness_; }
275
276 // Get value of fBulk.
277 template <int D>
278 inline double MaskGenFilmBase<D>::fBulk() const
279 { return fBulk_; }
280
281 // Check whether a value of fBulk was provided.
282 template <int D>
284 { return hasFBulk_; }
285
286 #ifndef PRDC_MASK_GEN_FILM_BASE_TPP
287 // Suppress implicit instantiation
288 extern template class MaskGenFilmBase<1>;
289 extern template class MaskGenFilmBase<2>;
290 extern template class MaskGenFilmBase<3>;
291 #endif
292
293}
294}
295#endif
Abstract base class for objects that generate fields for ImposedFields.
Type type_
Type of field (Mask, External, Both, or None)
Base class defining mask that imposes thin film confinement.
double fBulk_
Reference free energy used to calculate stress normal to the film.
virtual double stressTerm(int paramId) const =0
Get contribution to the stress from this mask.
virtual void allocate()=0
Allocate container necessary to generate and store field.
bool updateNeeded() const
Check whether system has changed such that the field needs updating.
FSArray< bool, 6 > modifyFlexibleParams(FSArray< bool, 6 > current, UnitCell< D > const &cell) const
Modifies a flexibleParams array to be compatible with this mask.
double fBulk() const
Get value of fBulk.
void checkLatticeVectors() const
Check that lattice vectors are compatible with thin film constraint.
bool isGenerated() const =0
Check whether the field has been generated.
double excludedThickness() const
Get value of excludedThickness.
void checkCompatibility()
Check that the system is compatible with this field.
void readParameters(std::istream &in)
Read parameter file block and initialize.
virtual void setFlexibleParams() const =0
Sets flexible lattice parameters to be compatible with the mask.
virtual double modifyStress(int paramId, double stress) const =0
Modify stress value in direction normal to the film.
void checkSpaceGroup() const
Check that space group is compatible with the mask.
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.
virtual RealVec< D > systemLatticeVector(int id) const =0
Get one of the lattice vectors for this system.
virtual std::string systemSpaceGroup() const =0
Get the space group name for this system.
bool hasFBulk() const
Check whether a value of fBulk was provided.
virtual void generate()=0
Generate the field and store where the Iterator can access.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
A RealVec<D, T> is D-component vector with elements of floating type T.
Definition RealVec.h:28
A fixed capacity (static) contiguous array with a variable logical size.
Definition rpg/System.h:28
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.