PSCF v1.2
SweepTmpl.h
1#ifndef PSCF_SWEEP_TMPL_H
2#define PSCF_SWEEP_TMPL_H
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 <util/param/ParamComposite.h> // base class
12#include <util/containers/DArray.h>
13#include <util/containers/GArray.h>
14#include <pscf/sweep/ParameterModifier.h>
15#include <pscf/sweep/ParameterType.h>
16
17namespace Pscf {
18
19 using namespace Util;
20
26 template <typename State>
28 {
29
30 public:
31
32 // Constructor is protected (see below).
33
37 ~SweepTmpl();
38
44 virtual void readParameters(std::istream& in);
45
49 virtual void sweep();
50
62 void addParameterType(std::string name, int nId,
63 ParameterModifier& modifier);
64
73 void addParameterType(ParameterType paramType);
74
84
85 protected:
86
88 int ns_;
89
91 std::string baseFileName_;
92
106
119
127 State& state(int i)
128 {
129 UTIL_CHECK(i < historySize_);
130 return *stateHistory_[i];
131 }
132
142 double s(int i) const
143 {
144 UTIL_CHECK(i < historySize_);
145 return sHistory_[i];
146 }
147
167 double c(int i) const
168 {
169 UTIL_CHECK(i >= 0);
170 UTIL_CHECK(i < historySize_);
171 return c_[i];
172 }
173
177 int historySize() const
178 { return historySize_; }
179
188 int historyCapacity() const
189 { return historyCapacity_; }
190
198 int nAccept() const
199 { return nAccept_; }
200
206 void initialize();
207
217 virtual void checkAllocation(State & state) = 0;
218
224 virtual void setup() = 0;
225
240 virtual void setParameters(double sNew) = 0;
241
267 virtual void extrapolate(double sNew) = 0;
268
276 void setCoefficients(double sNew);
277
283 virtual int solve(bool isContinuation) = 0;
284
291 virtual void reset() = 0;
292
302 virtual void getSolution() = 0;
303
309 virtual void cleanup();
310
311 private:
312
314 DArray<State> states_;
315
317 DArray<double> sHistory_;
318
320 DArray<State*> stateHistory_;
321
324
326 int historyCapacity_;
327
329 int historySize_;
330
332 int nAccept_;
333
335 bool reuseState_;
336
347 void accept(double s);
348
352 SweepTmpl();
353
354 };
355
356} // namespace Pscf
357#include "SweepTmpl.tpp"
358#endif
Base class allowing subclasses to define sweepable parameters.
Solve a sequence of problems along a path through parameter space.
Definition SweepTmpl.h:28
int historySize() const
Get the current number of stored previous states.
Definition SweepTmpl.h:177
virtual void getSolution()=0
Update state(0) and output data after successful solution.
void addParameterTypes(GArray< ParameterType > paramTypes)
Declare an array of specialized sweep parameter types.
virtual void extrapolate(double sNew)=0
Create initial guess for the next state by extrapolation.
~SweepTmpl()
Destructor.
Definition SweepTmpl.tpp:35
virtual void checkAllocation(State &state)=0
Check allocation of one state, allocate if necessary.
State & state(int i)
Get reference to a stored state, with i=0 being most recent.
Definition SweepTmpl.h:127
std::string baseFileName_
Base name for output files.
Definition SweepTmpl.h:91
double c(int i) const
Get a coefficient of a previous state in a continuation.
Definition SweepTmpl.h:167
virtual void cleanup()
Clean up operation at the end of a sweep.
void initialize()
Initialize variables that track history of solutions.
virtual void setup()=0
Setup operation at the beginning of a sweep.
int nAccept() const
Get the number of converged solutions accepted thus far.
Definition SweepTmpl.h:198
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.
Definition SweepTmpl.tpp:62
virtual void setParameters(double sNew)=0
Set non-adjustable system parameters to new values.
virtual int solve(bool isContinuation)=0
Call current iterator to solve SCFT problem.
int ns_
Number of steps.
Definition SweepTmpl.h:88
virtual void readParameters(std::istream &in)
Read ns and baseFileName parameters.
Definition SweepTmpl.tpp:42
GArray< ParameterType > parameterTypes_
Array of specialized parameter types.
Definition SweepTmpl.h:105
double s(int i) const
Get the value of s for a stored solution, with i = 0 most recent.
Definition SweepTmpl.h:142
virtual void reset()=0
Reset system to previous solution after iterature failure.
int historyCapacity() const
Get the maximum number of stored previous states.
Definition SweepTmpl.h:188
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
Definition GArray.h:34
An object that can read multiple parameters from file.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
Declaration of a specialized sweep parameter type.