8#include "MaskGenFilmBase.tpp"
9#include <prdc/crystal/paramIdConversions.h>
36 a = systemLatticeVector(0);
37 b = systemLatticeVector(1);
39 double gamma =
dot(a,b);
41 UTIL_THROW(
"ERROR: Lattice basis vectors must be orthogonal");
54 a = systemLatticeVector(0);
55 b = systemLatticeVector(1);
56 c = systemLatticeVector(2);
58 double alpha, beta, gamma;
63 if (normalVecId() == 0) {
64 if (beta > 1e-8 || gamma > 1e-8) {
65 UTIL_THROW(
"ERROR: beta and gamma must be 90 degrees");
67 }
else if (normalVecId() == 1) {
68 if (alpha > 1e-8 || gamma > 1e-8) {
69 UTIL_THROW(
"ERROR: alpha and gamma must be 90 degrees");
72 if (alpha > 1e-8 || beta > 1e-8) {
73 UTIL_THROW(
"ERROR: alpha and beta must be 90 degrees");
86 UnitCell<1>
const & cell)
const
91 if ((current[0]) && (!hasFBulk())) {
97 <<
"Warning - The lattice parameter is not allowed "
98 <<
"to be flexible\n for a 1D thin film system "
99 <<
"unless fBulk is provided."
112 UnitCell<2>
const & cell)
const
128 if (cell.lattice() == UnitCell<2>::Rhombic) updated[1] =
false;
129 if (cell.lattice() == UnitCell<2>::Oblique) updated[2] =
false;
134 int reducedId = convertFullParamIdToReduced<2>(normalVecId_,
136 updated[reducedId] =
false;
142 for (
int i = 0; i < updated.
size(); i++) {
143 if (updated[i] != current[i]) {
151 <<
"Notice - Some lattice parameters will be held constant\n"
152 <<
"to comply with the thin film constraint.\n"
153 <<
"***" << std::endl;
165 UnitCell<3>
const & cell)
const
181 if (cell.lattice() == UnitCell<3>::Rhombohedral) {
183 Log::file() <<
"Rhombohedral lattice systems are not compatible "
184 <<
"with a thin film constraint.\n"
185 <<
"See thin film documentation for more details.\n";
186 UTIL_THROW(
"Cannot use rhombohedral lattice in a thin film system.");
188 }
else if (cell.lattice() == UnitCell<3>::Monoclinic) {
191 if (normalVecId_ != 1) {
195 }
else if (cell.lattice() == UnitCell<3>::Triclinic) {
204 updated[normalVecId_+3] = current[normalVecId_+3];
211 int reducedId = convertFullParamIdToReduced<3>(normalVecId_,
213 updated[reducedId] =
false;
219 for (
int i = 0; i < updated.
size(); i++) {
220 if (updated[i] != current[i]) {
228 <<
"Notice - Some lattice parameters will be held constant\n"
229 <<
"to comply with the thin film constraint.\n"
230 <<
"***" << std::endl;
237 template class MaskGenFilmBase<1>;
238 template class MaskGenFilmBase<2>;
239 template class MaskGenFilmBase<3>;
FSArray< bool, 6 > modifyFlexibleParams(FSArray< bool, 6 > current, UnitCell< D > const &cell) const
Modifies a flexibleParams array to be compatible with this mask.
void checkLatticeVectors() const
Check that lattice vectors are compatible with thin film constraint.
A fixed capacity (static) contiguous array with a variable logical size.
int size() const
Return logical size of this array (i.e., number of elements).
static std::ostream & file()
Get log ostream by reference.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
PSCF package top-level namespace.
T dot(Vec< D, T > const &v1, Vec< D, T > const &v2)
Return dot product of two vectors.
Utility classes for scientific computation.