PSCF v1.2
MaskGenFilmBase.tpp
1#ifndef PRDC_MASK_GEN_FILM_BASE_TPP
2#define PRDC_MASK_GEN_FILM_BASE_TPP
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 "MaskGenFilmBase.h"
12#include "prdc/crystal/SpaceGroup.h"
13#include "util/param/ScalarParam.h"
14#include <cmath>
15
16namespace Pscf {
17namespace Prdc
18{
19
20 using namespace Util;
21
22 /*
23 * Constructor
24 */
25 template <int D>
28 normalVecCurrent_(),
29 fBulk_(),
30 normalVecId_(-1),
31 interfaceThickness_(-1.0),
32 excludedThickness_(-1.0),
33 hasFBulk_(false)
34 { type_ = Mask; }
35
36 /*
37 * Destructor
38 */
39 template <int D>
42
43 /*
44 * Read and initialize.
45 */
46 template <int D>
48 {
49 // Read required data defining the walls
50 read(in, "normalVecId", normalVecId_);
51 read(in, "interfaceThickness", interfaceThickness_);
52 read(in, "excludedThickness", excludedThickness_);
53 ScalarParam<double>& fBulkParam = readOptional(in, "fBulk", fBulk_);
54 if (fBulkParam.isActive()) { // if we read fBulk
55 hasFBulk_ = true;
56 }
57
58 // Make sure inputs are valid
59 if (normalVecId_ > D || normalVecId_ < 0) {
60 UTIL_THROW("bad value for normalVecId, must be in [0,D)");
61 }
62 if (interfaceThickness_ > excludedThickness_) {
63 UTIL_THROW("excludedThickness must be larger than interfaceThickness");
64 }
65 if ((excludedThickness_ <= 0) || (interfaceThickness_ <= 0)) {
66 UTIL_THROW("excludedThickness and interfaceThickness must be >0");
67 }
68 }
69
70 /*
71 * Check that the system is compatible with this field
72 */
73 template <int D>
75 {
76 // If lattice parameters are flexible, determine which parameters
77 // are allowed to vary, store them in this object, and pass them
78 // into the Iterator. The flexibleParams_ member of the Iterator
79 // should always be matched to that of this class.
80 setFlexibleParams();
81
82 // Ensure that space group symmetry is compatible with the wall
83 checkSpaceGroup();
84
85 // Ensure that unit cell is compatible with wall
86 checkLatticeVectors();
87 }
88
89 /*
90 * Check whether system has changed such that the field needs updating
91 */
92 template <int D>
94 {
95 UTIL_CHECK(isGenerated());
96 UTIL_CHECK(normalVecId_ >= 0);
97
98 // Check if system normalVec differ from normalVecCurrent_
99 if (normalVecCurrent_ == systemLatticeVector(normalVecId_)) {
100 return false;
101 } else {
102 return true;
103 }
104 }
105
106 /*
107 * Check that space group is compatible with the mask.
108 */
109 template <int D>
111 {
112 // Setup
113 std::string groupName = systemSpaceGroup();
114 SpaceGroup<D> group;
115 std::ifstream in;
116
117 // Open and read file containing space group's symmetry operations
118 readGroup(groupName, group);
119
120 // Make sure all symmetry operations are allowed
121 int nv = normalVecId();
122 std::string msg = "Space group contains forbidden symmetry operations";
123 for (int i = 0; i < group.size(); i++) {
124 for (int j = 0; j < D; j++) {
125 int r = group[i].R(nv,j);
126 if (j == nv) {
127 if ((r != 1) && (r != -1)) {
128 UTIL_THROW(msg.c_str());
129 }
130 } else { // j != nv
131 if (r != 0) {
132 UTIL_THROW(msg.c_str());
133 }
134 }
135 }
136 if (group[i].t(nv) != 0) {
137 UTIL_THROW(msg.c_str());
138 }
139 }
140 }
141
142 // Explicit Specializations for checkLatticeVectors are in
143 // MaskGenFilmBase.cpp
144}
145}
146#endif
Abstract base class for objects that generate fields for ImposedFields.
bool updateNeeded() const
Check whether system has changed such that the field needs updating.
void checkCompatibility()
Check that the system is compatible with this field.
void readParameters(std::istream &in)
Read parameter file block and initialize.
void checkSpaceGroup() const
Check that space group is compatible with the mask.
Crystallographic space group.
Definition FieldIoReal.h:23
int size() const
Return number of elements in group (i.e., the order of the group).
bool isActive() const
Is this parameter active?
Template for a Parameter object associated with a scalar variable.
Definition ScalarParam.h:35
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.