1#ifndef PRDC_EXT_GEN_FILM_BASE_TPP
2#define PRDC_EXT_GEN_FILM_BASE_TPP
11#include "ExtGenFilmBase.h"
12#include "prdc/crystal/SpaceGroup.h"
13#include <util/param/ParamComponent.h>
31 interfaceThickness_(-1.0),
32 excludedThickness_(-1.0),
56 read(in,
"normalVecId", normalVecId_);
57 read(in,
"interfaceThickness", interfaceThickness_);
58 read(in,
"excludedThickness", excludedThickness_);
60 readOptional(in,
"fBulk", tmp);
68 if (normalVecId_ > D || normalVecId_ < 0) {
69 UTIL_THROW(
"bad value for normalVecId, must be in [0,D)");
71 if (interfaceThickness_ > excludedThickness_) {
72 UTIL_THROW(
"excludedThickness must be larger than interfaceThickness");
74 if ((excludedThickness_ <= 0) || (interfaceThickness_ <= 0)) {
75 UTIL_THROW(
"excludedThickness and interfaceThickness must be >0");
79 int nm = systemNMonomer();
80 chiBottom_.allocate(nm);
84 readDArray(in,
"chiBottom", chiBottom_, nm);
85 readDArray(in,
"chiTop", chiTop_, nm);
98 if (hasSymmetricWalls())
return;
102 std::string groupName = systemSpaceGroup();
107 readGroup(groupName, group);
110 std::string msg =
"Space group contains forbidden symmetry operations";
111 for (
int i = 0; i < group.
size(); i++) {
112 for (
int j = 0; j < D; j++) {
113 int r = group[i].R(normalVecId_,j);
114 if (j == normalVecId_) {
124 if (group[i].t(normalVecId_) != 0) {
138 if (!isGenerated()) {
149 for (
int i = 0; i < chiBottom_.capacity(); i++) {
150 if ((chiBottom_[i] != chiBottomCurrent_[i]) ||
151 (chiTop_[i] != chiTopCurrent_[i])) {
157 if (isAthermal())
return false;
160 if (normalVecCurrent_ == systemLatticeVector(normalVecId_)) {
174 int nm = systemNMonomer();
180 for (
int i = 0; i < nm; i++) {
181 if (fabs(chiBottom_[i]-chiTop_[i]) > 1e-7) {
195 int nm = systemNMonomer();
201 for (
int i = 0; i < nm; i++) {
202 if ((fabs(chiBottom_[i]) >= 1e-7) || (fabs(chiTop_[i]) >= 1e-7)) {
232 bool wasAthermal = isAthermal();
233 if (name ==
"chi_top") {
234 chiTop_[ids[0]] = value;
235 }
else if (name ==
"chi_bottom") {
236 chiBottom_[ids[0]] = value;
243 if (wasAthermal && success && (!isAthermal())) {
258 if (name ==
"chi_top") {
259 return chiTop_[ids[0]];
260 }
else if (name ==
"chi_bottom") {
261 return chiBottom_[ids[0]];
Abstract base class for objects that generate fields for ImposedFields.
~ExtGenFilmBase()
Destructor.
bool isAthermal() const
Are the walls athermal?
GArray< ParameterType > getParameterTypes()
Return specialized sweep parameter types to add to the Sweep object.
bool updateNeeded() const
Check whether system has changed such that the fields needs updating.
ExtGenFilmBase()
Constructor.
void checkCompatibility()
Check that the system is compatible with these fields.
bool hasSymmetricWalls() const
Are the walls chemically identical?
void setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
void readParameters(std::istream &in)
Read and initialize.
double getParameter(std::string name, DArray< int > ids, bool &success) const
Get the value of a specialized sweep parameter.
bool isDependent_
Is this object dependent on the parameters of another FieldGenerator?
Type type_
Type of field (Mask, External, Both, or None)
Crystallographic space group.
int size() const
Return number of elements in group (i.e., the order of the group).
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
void append(Data const &data)
Append an element to the end of the sequence.
static bool echo()
Get echo parameter.
static void setEcho(bool echo=true)
Enable or disable echoing for all subclasses of ParamComponent.
void resetParam()
Resets ParamComposite to its empty state.
#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.
Utility classes for scientific computation.
Declaration of a specialized sweep parameter type.