10#include <pscf/sweep/SweepTmpl.tpp>
11#include <rpg/System.h>
12#include <rpg/scft/iterator/Iterator.h>
13#include <pscf/inter/Interaction.h>
15#include <util/misc/FileMaster.h>
16#include <util/misc/ioUtil.h>
24 #define RPG_HISTORY_CAPACITY 3
50 if (
system().hasIterator()) {
67 { systemPtr_ = &system; }
79 readOptional(in,
"writeCRGrid", writeCRGrid_);
80 readOptional(in,
"writeCBasis", writeCBasis_);
81 readOptional(in,
"writeWRGrid", writeWRGrid_);
93 state.
unitCell() = system().unitCell();
103 checkAllocation(trial_);
106 std::string fileName = baseFileName_;
107 fileName +=
"sweep.log";
108 system().fileMaster().openOutputFile(fileName, logFile_);
120 UTIL_THROW(
"Calling unimplemented function Sweep::setParameters");
134 if (historySize() > 1) {
135 UTIL_CHECK(historySize() <= historyCapacity());
138 bool isFlexible = system().iterator().isFlexible();
141 setCoefficients(sNew);
145 int nMonomer = system().mixture().nMonomer();
146 int nBasis = system().basis().nBasis();
150 for (i=0; i < nMonomer; ++i) {
151 newFieldPtr = &(trial_.field(i));
154 oldFieldPtr = &state(0).field(i);
156 for (j=0; j < nBasis; ++j) {
157 (*newFieldPtr)[j] = coeff*(*oldFieldPtr)[j];
161 for (k = 1; k < historySize(); ++k) {
162 oldFieldPtr = &state(k).field(i);
164 for (j=0; j < nBasis; ++j) {
165 (*newFieldPtr)[j] += coeff*(*oldFieldPtr)[j];
174 unitCellParameters_ = system().unitCell().parameters();
183 const FSArray<int,6> indices = system().iterator().flexibleParams();
184 const int nParameter = indices.
size();
187 for (k = 0; k < historySize(); ++k) {
189 for (
int i = 0; i < nParameter; ++i) {
191 unitCellParameters_[indices[i]] = 0;
193 parameter = state(k).unitCell().parameter(indices[i]);
194 unitCellParameters_[indices[i]] += coeff*parameter;
200 const int nParameter = unitCellParameters_.size();
201 for (k = 0; k < historySize(); ++k) {
203 for (
int i = 0; i < nParameter; ++i) {
205 unitCellParameters_[i] = 0.0;
207 parameter = state(k).unitCell().parameter(i);
208 unitCellParameters_[i] += coeff*parameter;
215 trial_.unitCell().setParameters(unitCellParameters_);
218 bool newCellParams(
true);
219 for (
int i = 0; i < oldParameters.
size(); i++) {
220 if (fabs(oldParameters[i] - unitCellParameters_[i]) < 1e-10) {
221 newCellParams =
false;
227 trial_.setSystemState(newCellParams);
239 {
return system().iterate(isContinuation); };
250 bool isFlexible = system().iterator().isFlexible();
251 state(0).setSystemState(isFlexible);
264 state(0).setSystem(system());
265 state(0).getSystemState();
271 outputSummary(logFile_);
279 std::string outFileName;
280 std::string indexString =
toString(nAccept() - 1);
283 outFileName = baseFileName_;
284 outFileName += indexString;
285 outFileName +=
".stt";
286 system().fileMaster().openOutputFile(outFileName, out);
289 system().writeParamNoSweep(out);
291 system().writeThermo(out);
295 outFileName = baseFileName_;
296 outFileName += indexString;
298 outFileName +=
".bf";
299 system().writeWBasis(outFileName);
303 outFileName = baseFileName_;
304 outFileName += indexString;
306 outFileName +=
".rf";
307 system().writeCRGrid(outFileName);
312 outFileName = baseFileName_;
313 outFileName += indexString;
315 outFileName +=
".bf";
316 system().writeCBasis(outFileName);
321 outFileName = baseFileName_;
322 outFileName += indexString;
324 outFileName +=
".rf";
325 system().writeWRGrid(outFileName);
330 void Sweep<D>::outputSummary(std::ostream& out)
332 int i = nAccept() - 1;
334 out <<
Int(i,5) <<
Dbl(sNew)
335 <<
Dbl(system().fHelmholtz(),16)
336 <<
Dbl(system().pressure(),16);
342 { logFile_.close(); }
FieldState for fields in symmetry-adapted basis format.
void allocate()
Allocate all fields.
const UnitCell< D > & unitCell() const
Get UnitCell (i.e., lattice type and parameters) by const reference.
void setSystem(System< D > &system)
Set association with System, after default construction.
Solve a sequence of problems along a line in parameter space.
virtual void getSolution()
Update state(0) and output data after successful convergence.
virtual int solve(bool isContinuation)
Call current iterator to solve SCFT problem.
virtual void readParameters(std::istream &in)
Read parameters from param file.
virtual void checkAllocation(BasisFieldState< D > &state)
Check allocation state of fields in one state, allocate if necessary.
virtual void extrapolate(double sNew)
Create a guess for adjustable variables by continuation.
virtual void setup()
Setup operation at the beginning of a sweep.
virtual void reset()
Reset system to previous solution after iterature failure.
virtual void setParameters(double sNew)=0
Set non-adjustable system parameters to new values.
Sweep()
Default Constructor.
System< D > & system()
Return the parent system by reference.
void setSystem(System< D > &system)
Set association with parent System.
virtual void cleanup()
Cleanup operation at the beginning of a sweep.
Main class for calculations that represent one system.
Solve a sequence of problems along a path through parameter space.
void addParameterTypes(GArray< ParameterType > paramTypes)
Dynamically allocatable contiguous array template.
Wrapper for a double precision number, for formatted ostream output.
A fixed capacity (static) contiguous array with a variable logical size.
int size() const
Return logical size of this array (i.e., number of elements).
Wrapper for an int, for formatted ostream output.
#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.
std::string toString(int n)
Return string representation of an integer.
PSCF package top-level namespace.
Utility classes for scientific computation.