PSCF v1.2
ImposedFieldsTmpl.cpp
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "ImposedFieldsTmpl.h"
9#include <util/param/Label.h>
10
11namespace Pscf {
12
13 // Constructor
15 : fieldGenPtr1_(0),
16 fieldGenPtr2_(0),
17 type_()
18 {}
19
20 // Destructor
23
24 // Read parameters from input stream
25 void ImposedFieldsTmpl::readParameters(std::istream& in)
26 {
27 // read type name and use it to create the generator objects
28 read(in, "type", type_);
30
31 // Save current istream position
32 std::streampos pos = in.tellg();
33
34 // Read first FieldGenerator (optional)
35 if (fieldGenPtr1_) {
36
38
39 // Make fieldGenPtr1_ a child paramComponent of this object, so that
40 // it will be read/written correctly to/from param file with correct
41 // indentation
44
45 // Read parameters for this FieldGenerator
47 }
48
49 // Read second FieldGenerator (optional)
50 if (fieldGenPtr2_) {
51
52 // Make fieldGenPtr2_ a child paramComponent of this object, so that
53 // it will be read/written correctly to/from param file with correct
54 // indentation
57
58 // Check that one of the FieldGenerator objects has type Mask and
59 // the other has type External
60 if (fieldGenPtr2_->type() == FieldGenerator::External) {
61 UTIL_CHECK(fieldGenPtr1_->type() == FieldGenerator::Mask);
62 } else if (fieldGenPtr2_->type() == FieldGenerator::Mask) {
64 FieldGenerator::External);
65 } else {
66 UTIL_THROW("fieldGenPtr2_ must have type Mask or External.");
67 }
68
69 // If this FieldGenerator is dependent, rewind the istream
71 in.seekg(pos);
73 }
74
75 // Read parameters for external fields
77 }
78 }
79
80 // Allocate, check compatibility, calculate, and store the field(s)
86
87 // Check whether system has changed and update the field(s) if necessary
93
94 // Correct stress value if necessary
95 double ImposedFieldsTmpl::correctedStress(int paramId, double stress)
96 const
97 {
98 // Get stress contributions from non-affine distortions of the
99 // imposed fields
100 if (fieldGenPtr1_) {
101 stress += fieldGenPtr1_->stressTerm(paramId);
102 }
104 stress += fieldGenPtr2_->stressTerm(paramId);
105 }
106
107 // Make any additional modifications to stress
108 stress = modifyStress(paramId, stress);
109
110 return stress;
111 }
112
113
114 // Return specialized sweep parameter types to add to the Sweep object
116 {
118
121
122 for (int i = 0; i < a2.size(); i++) {
123 a1.append(a2[i]);
124 }
125
126 return a1;
127 }
128
129 // Set the value of a specialized sweep parameter
130 void ImposedFieldsTmpl::setParameter(std::string name,
131 DArray<int> ids,
132 double value, bool& success)
133 {
134 success = false;
135 if (fieldGenPtr1_) {
136 fieldGenPtr1_->setParameter(name, ids, value, success);
137 }
138 if ((!success) && (fieldGenPtr2_)) {
139 fieldGenPtr2_->setParameter(name, ids, value, success);
140 }
141 }
142
143 // Get the value of a specialized sweep parameter
144 double ImposedFieldsTmpl::getParameter(std::string name,
145 DArray<int> ids,
146 bool& success)
147 const
148 {
149 double val(0);
150 success = false;
151 if (fieldGenPtr1_) {
152 val = fieldGenPtr1_->getParameter(name, ids, success);
153 }
154 if ((!success) && (fieldGenPtr2_)) {
155 val = fieldGenPtr2_->getParameter(name, ids, success);
156 }
157 return val;
158 }
159
160 // Get the type string associated with this object
161 std::string ImposedFieldsTmpl::type() const
162 { return type_; }
163
164 // Return const references to the FieldGenerator child objects
167
168 FieldGenerator const & ImposedFieldsTmpl::fieldGenerator2() const
169 { return *fieldGenPtr2_; }
170
171 // Modify the stress value if necessary
172 double ImposedFieldsTmpl::modifyStress(int paramId, double stress) const
173 { return stress; }
174
175}
Abstract base class for objects that generate fields for ImposedFields.
Type type() const
Return Type enumeration value (Mask, External, or None)
void setup()
Allocate, check compatibility, calculate, and store the field(s)
void update()
Check whether system has changed and update the field(s) if necessary.
bool isDependent() const
Is this object dependent on the parameters of another FieldGenerator?
virtual double stressTerm(int paramId) const
Get contribution to the stress from this imposed field.
virtual double modifyStress(int paramId, double stress) const
Modify the stress value if necessary.
void readParameters(std::istream &in)
Read parameters from input stream.
void update()
Check whether system has changed, update the field(s) if necessary.
FieldGenerator const & fieldGenerator1() const
Return const references to the FieldGenerator child objects.
void setup()
Allocate, check compatibility, calculate, and store the field(s).
virtual void createGenerators()=0
Create FieldGenerator objects for mask and/or external field.
void setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
double correctedStress(int paramId, double stress) const
Correct the stress value if necessary.
double getParameter(std::string name, DArray< int > ids, bool &success) const
Get the value of a specialized sweep parameter.
FieldGenerator * fieldGenPtr2_
Pointer to the second FieldGenerator object (optional).
FieldGenerator * fieldGenPtr1_
Pointer to the first FieldGenerator object (required).
GArray< ParameterType > getParameterTypes()
Return specialized sweep parameter types to add to a Sweep object.
std::string type() const
Get the type string associated with this object.
virtual GArray< ParameterType > getParameterTypes()
Return specialized sweep parameter types to add to the Sweep object.
virtual void setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
virtual double getParameter(std::string name, DArray< int > ids, bool &success) const
Get the value of a specialized sweep parameter.
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
Definition GArray.h:34
int size() const
Return logical size of this array (i.e., current number of elements).
Definition GArray.h:455
void append(Data const &data)
Append an element to the end of the sequence.
Definition GArray.h:306
static void clear()
Clear the input buffer.
Definition Label.cpp:25
virtual void readParameters(std::istream &in)
Read the body of parameter block, without begin and end lines.
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
void setParent(ParamComponent &param, bool next=true)
Set this to the parent of a child component.
void addComponent(ParamComponent &param, bool isLeaf=true)
Add a new ParamComponent object to the format array.
#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