PSCF v1.2
rpg/scft/iterator/ImposedFieldsGenerator.tpp
1#ifndef RPG_IMPOSED_FIELDS_GENERATOR_TPP
2#define RPG_IMPOSED_FIELDS_GENERATOR_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 "ImposedFieldsGenerator.h"
12#include <rpg/scft/iterator/MaskGenFilm.h>
13#include <rpg/scft/iterator/ExtGenFilm.h>
14
15namespace Pscf {
16namespace Rpg {
17
18 // Constructor
19 template <int D>
22 sysPtr_(&sys)
23 { setClassName("ImposedFieldsGenerator"); }
24
25 // Destructor
26 template <int D>
28 {
29 if (fieldGenPtr1_) {
30 delete fieldGenPtr1_;
31 }
32 if (fieldGenPtr2_) {
33 delete fieldGenPtr2_;
34 }
35 }
36
37 // Modify the stress value if necessary.
38 template <int D>
39 double ImposedFieldsGenerator<D>::modifyStress(int paramId, double stress)
40 const
41 {
42 if (type() == "film") {
43 return fieldGenPtr1_->modifyStress(paramId, stress);
44 } else {
45 return stress;
46 }
47 }
48
49 // Create FieldGenerator objects for the mask & external field
50 template <int D>
52 {
53 if (type() == "film") {
54 fieldGenPtr1_ = new MaskGenFilm<D>(*sysPtr_);
55 fieldGenPtr2_ = new ExtGenFilm<D>(*sysPtr_);
56 } else {
57 UTIL_THROW(("Unrecognized type parameter: " + type()).c_str());
58 }
59 }
60
61}
62}
63#endif
Base class defining mask & external fields to impose on the calculation.
External field generator for a thin film geometry.
Class defining mask & external fields to impose on the calculation.
void setClassName(const char *className)
Set class name string.
virtual double modifyStress(int paramId, double stress) const
Modify the stress value if necessary.
Mask generator for a thin film geometry.
Main class for calculations that represent one system.
Definition rpg/System.h:107
#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