PSCF v1.2
rpc/scft/sweep/Sweep.h
1#ifndef RPC_SWEEP_H
2#define RPC_SWEEP_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 <pscf/sweep/SweepTmpl.h> // base class template
12#include <rpc/scft/sweep/BasisFieldState.h> // base class template parameter
13#include "SweepParameter.h" // parameter class
14#include <util/global.h>
15
16namespace Pscf {
17namespace Rpc {
18
19 using namespace Util;
20
26 template <int D>
27 class Sweep : public SweepTmpl< BasisFieldState<D> >
28 {
29
30 public:
31
35 Sweep();
36
42 Sweep(System<D>& system);
43
47 ~Sweep();
48
56 void setSystem(System<D>& system);
57
63 virtual void readParameters(std::istream& in);
64
65 // Public members inherited from base class template SweepTmpl
66 using SweepTmpl< BasisFieldState<D> >::addParameterTypes;
67 using SweepTmpl< BasisFieldState<D> >::addParameterType;
68 using SweepTmpl< BasisFieldState<D> >::historyCapacity;
69 using SweepTmpl< BasisFieldState<D> >::historySize;
70 using SweepTmpl< BasisFieldState<D> >::nAccept;
71 using SweepTmpl< BasisFieldState<D> >::state;
72 using SweepTmpl< BasisFieldState<D> >::s;
73 using SweepTmpl< BasisFieldState<D> >::c;
74
75 protected:
76
77 // Protected member functions
78
84 virtual void checkAllocation(BasisFieldState<D>& state);
85
89 virtual void setup();
90
96 virtual void setParameters(double sNew) = 0;
97
107 virtual void extrapolate(double sNew);
108
116 virtual int solve(bool isContinuation);
117
124 virtual void reset();
125
133 virtual void getSolution();
134
138 virtual void cleanup();
139
144 { return (systemPtr_ != 0); }
145
150 { return *systemPtr_; }
151
152 // Protected variables writeCGrid_, writeCBasis_ and writeWGrid_
153 // control which converged fields will be written to files after
154 // solution of each SCFT solution within a sweep.
155
160
165
170
171 // Protected member variables inherited from base classes
177
178 private:
179
181 BasisFieldState<D> trial_;
182
184 FSArray<double, 6> unitCellParameters_;
185
187 std::ofstream logFile_;
188
190 System<D>* systemPtr_;
191
193 void outputSolution();
194
196 void outputSummary(std::ostream&);
197
198 };
199
200} // namespace Rpc
201} // namespace Pscf
202#endif
FieldState for fields in symmetry-adapted basis format.
virtual int solve(bool isContinuation)
Call current iterator to solve SCFT problem.
virtual void extrapolate(double sNew)
Create a guess for adjustable variables by continuation.
void setSystem(System< D > &system)
Set association with parent System.
Sweep()
Default Constructor.
virtual void getSolution()
Update state(0) and output data after successful convergence.
virtual void checkAllocation(BasisFieldState< D > &state)
Check allocation of fields in one state, allocate if necessary.
System< D > & system()
Return the parent system by reference.
virtual void reset()
Reset system to previous solution after iterature failure.
bool writeCRGrid_
Should concentration fields be written to file in r-grid format?
virtual void cleanup()
Cleanup operation at the beginning of a sweep.
bool writeCBasis_
Should concentration fields be written to file in basis format?
virtual void readParameters(std::istream &in)
Read parameters from param file.
virtual void setParameters(double sNew)=0
Set system parameters to new values.
bool writeWRGrid_
Should converged w fields be written to file in r-grid format?
bool hasSystem()
Does an association with the parent System exist?
virtual void setup()
Setup operation at the beginning of a sweep.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Solve a sequence of problems along a path through parameter space.
Definition SweepTmpl.h:28
void addParameterTypes(GArray< ParameterType > paramTypes)
BasisFieldState< D > & state(int i)
Definition SweepTmpl.h:127
void addParameterType(std::string name, int nId, ParameterModifier &modifier)
A fixed capacity (static) contiguous array with a variable logical size.
Definition rpg/System.h:28
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.