1#ifndef PSCF_SWEEP_TMPL_TPP
2#define PSCF_SWEEP_TMPL_TPP
12#include <util/misc/Log.h>
21 template <
class State>
25 historyCapacity_(historyCapacity),
34 template <
class State>
41 template <
class State>
48 read<int>(in,
"ns", ns_);
49 readOptional<std::string>(in,
"baseFileName", baseFileName_);
50 readOptional<int>(in,
"historyCapacity", historyCapacity_);
51 readOptional<bool>(in,
"reuseState", reuseState_);
55 states_.allocate(historyCapacity_);
56 stateHistory_.allocate(historyCapacity_);
57 sHistory_.allocate(historyCapacity_);
58 c_.allocate(historyCapacity_);
61 template <
class State>
66 double ds = 1.0/double(ns_);
69 Log::file() <<
"ns = " << ns_ << std::endl;
70 Log::file() <<
"ds = " << ds << std::endl;
78 Log::file() <<
"===========================================\n";
79 Log::file() <<
"Attempt s = " << sNew << std::endl;
82 bool isContinuation =
false;
83 error = solve(isContinuation);
86 UTIL_THROW(
"Failure to converge initial state of sweep");
92 bool finished =
false;
102 Log::file() <<
"===========================================\n";
103 Log::file() <<
"Attempt s = " << sNew << std::endl;
114 isContinuation = reuseState_;
115 error = solve(isContinuation);
119 Log::file() <<
"Backtrack and halve sweep step size:"
128 UTIL_THROW(
"Sweep decreased ds too many times.");
138 if (sNew + ds > 1.0000001) {
142 Log::file() <<
"===========================================\n";
149 template <
class State>
154 if (parameterTypes_.size() > 0) {
155 for (
int i = 0; i < parameterTypes_.size(); ++i) {
161 paramType.name = name;
163 paramType.modifierPtr = &modifier;
164 parameterTypes_.append(paramType);
167 template <
class State>
171 if (parameterTypes_.size() > 0) {
172 for (
int i = 0; i < parameterTypes_.size(); ++i) {
173 UTIL_CHECK(parameterTypes_[i].name != paramType.name);
177 parameterTypes_.append(paramType);
180 template <
class State>
183 for (
int i = 0; i < paramTypes.
size(); i++) {
185 if (parameterTypes_.size() > 0) {
186 for (
int j = 0; j < parameterTypes_.size(); j++) {
187 UTIL_CHECK(parameterTypes_[j].name != paramTypes[i].name);
191 parameterTypes_.append(paramTypes[i]);
198 template <
class State>
202 UTIL_CHECK(states_.capacity() == historyCapacity_);
203 UTIL_CHECK(sHistory_.capacity() == historyCapacity_);
204 UTIL_CHECK(stateHistory_.capacity() == historyCapacity_);
207 for (
int i = 0; i < historyCapacity_; ++i) {
208 checkAllocation(states_[i]);
214 for (
int i = 0; i < historyCapacity_; ++i) {
216 stateHistory_[i] = &states_[i];
220 template <
class State>
221 void SweepTmpl<State>::accept(
double sNew)
225 for (
int i = historyCapacity_ - 1; i > 0; --i) {
226 sHistory_[i] = sHistory_[i-1];
232 temp = stateHistory_[historyCapacity_-1];
233 for (
int i = historyCapacity_ - 1; i > 0; --i) {
234 stateHistory_[i] = stateHistory_[i-1];
236 stateHistory_[0] = temp;
240 if (historySize_ < historyCapacity_) {
251 template <
class State>
255 if (historySize_ == 1) {
260 for (i = 0; i < historySize_; ++i) {
263 for (j = 0; j < historySize_; ++j) {
265 num *= (sNew - s(j));
266 den *= (s(i) - s(j));
286 template <
class State>
Base class allowing subclasses to define sweepable parameters.
Solve a sequence of problems along a path through parameter space.
void addParameterTypes(GArray< ParameterType > paramTypes)
Declare an array of specialized sweep parameter types.
virtual void cleanup()
Clean up operation at the end of a sweep.
void initialize()
Initialize variables that track history of solutions.
void setCoefficients(double sNew)
Compute coefficients of previous states for continuation.
void addParameterType(std::string name, int nId, ParameterModifier &modifier)
Declare a specialized parameter type.
virtual void sweep()
Iterate to solution.
virtual void readParameters(std::istream &in)
Read ns and baseFileName parameters.
An automatically growable array, analogous to a std::vector.
int size() const
Return logical size of this array (i.e., current number of elements).
static std::ostream & file()
Get log ostream by reference.
void setClassName(const char *className)
Set class name string.
#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.