10#include <rpc/System.h>
11#include <rpc/scft/iterator/Iterator.h>
12#include <pscf/inter/Interaction.h>
13#include <pscf/sweep/SweepTmpl.tpp>
14#include <util/misc/FileMaster.h>
15#include <util/misc/ioUtil.h>
23 # define RPC_HISTORY_CAPACITY 3
49 if (
system().hasIterator()) {
66 { systemPtr_ = &system; }
78 readOptional(in,
"writeCRGrid", writeCRGrid_);
79 readOptional(in,
"writeCBasis", writeCBasis_);
80 readOptional(in,
"writeWRGrid", writeWRGrid_);
92 state.
unitCell() = system().domain().unitCell();
102 checkAllocation(trial_);
105 std::string fileName = baseFileName_;
106 fileName +=
"sweep.log";
107 system().fileMaster().openOutputFile(fileName, logFile_);
108 logFile_ <<
" step ds free_energy pressure"
121 UTIL_THROW(
"Calling unimplemented function Sweep::setParameters");
135 if (historySize() > 1) {
136 UTIL_CHECK(historySize() <= historyCapacity());
139 bool isFlexible = system().iterator().isFlexible();
142 setCoefficients(sNew);
146 int nMonomer = system().mixture().nMonomer();
147 int nBasis = system().domain().basis().nBasis();
151 for (i=0; i < nMonomer; ++i) {
152 newFieldPtr = &(trial_.field(i));
155 oldFieldPtr = &state(0).field(i);
157 for (j=0; j < nBasis; ++j) {
158 (*newFieldPtr)[j] = coeff*(*oldFieldPtr)[j];
162 for (k = 1; k < historySize(); ++k) {
163 oldFieldPtr = &state(k).field(i);
165 for (j=0; j < nBasis; ++j) {
166 (*newFieldPtr)[j] += coeff*(*oldFieldPtr)[j];
175 unitCellParameters_ = system().domain().unitCell().parameters();
184 system().iterator().flexibleParams();
186 = system().domain().unitCell().nParameter();
190 for (k = 0; k < historySize(); ++k) {
192 for (
int i = 0; i < nParameter; ++i) {
195 unitCellParameters_[i] = 0;
197 parameter = state(k).unitCell().parameter(i);
198 unitCellParameters_[i] += coeff*parameter;
205 trial_.unitCell().setParameters(unitCellParameters_);
208 bool newCellParams(
true);
209 for (
int i = 0; i < oldParameters.
size(); i++) {
210 if (fabs(oldParameters[i] - unitCellParameters_[i]) < 1e-10) {
211 newCellParams =
false;
217 trial_.setSystemState(newCellParams);
230 {
return system().iterate(isContinuation); };
241 bool isFlexible = system().iterator().isFlexible();
242 state(0).setSystemState(isFlexible);
255 state(0).setSystem(system());
256 state(0).getSystemState();
262 outputSummary(logFile_);
270 std::string outFileName;
271 std::string indexString =
toString(nAccept() - 1);
274 outFileName = baseFileName_;
275 outFileName += indexString;
276 outFileName +=
".stt";
277 system().fileMaster().openOutputFile(outFileName, out);
280 system().writeParamNoSweep(out);
282 system().writeThermo(out);
285 FieldIo<D> const & fieldIo = system().domain().fieldIo();
286 UnitCell<D> const & unitCell = system().domain().unitCell();
289 outFileName = baseFileName_;
290 outFileName += indexString;
292 outFileName +=
".bf";
296 system().w().basis(), unitCell);
300 outFileName = baseFileName_;
301 outFileName += indexString;
303 outFileName +=
".rf";
305 system().c().rgrid(), unitCell);
310 outFileName = baseFileName_;
311 outFileName += indexString;
313 outFileName +=
".bf";
316 system().c().basis(), unitCell);
322 outFileName = baseFileName_;
323 outFileName += indexString;
325 outFileName +=
".rf";
327 system().w().rgrid(), unitCell);
333 void Sweep<D>::outputSummary(std::ostream& out)
335 int i = nAccept() - 1;
337 if (!system().hasFreeEnergy()) system().computeFreeEnergy();
338 out <<
Int(i,5) <<
Dbl(sNew)
339 <<
Dbl(system().fHelmholtz(),16)
340 <<
Dbl(system().pressure(),16);
346 { logFile_.close(); }
void writeFieldsBasis(std::ostream &out, DArray< DArray< double > > const &fields, UnitCell< D > const &unitCell) const
Write concentration or chemical potential field components to file.
Base template for UnitCell<D> classes, D=1, 2 or 3.
FieldState for fields in symmetry-adapted basis format.
void allocate()
Allocate all fields.
File input/output operations and format conversions for fields.
void writeFieldsRGrid(std::ostream &out, DArray< RField< D > > const &fields, UnitCell< D > const &unitCell, bool writeHeader=true, bool isSymmetric=true, bool writeMeshSize=true) const override
Write array of RField objects (fields on r-space grid) to a stream.
void setSystem(System< D > &system)
Set association with System, after default construction.
const UnitCell< D > & unitCell() const
Get UnitCell (i.e., lattice type and parameters) by const reference.
Solve a sequence of SCFT problems along a line in parameter space.
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.
virtual void cleanup()
Cleanup operation at the beginning of a sweep.
virtual void readParameters(std::istream &in)
Read parameters from param file.
virtual void setParameters(double sNew)=0
Set system parameters to new values.
virtual void setup()
Setup operation at the beginning of a sweep.
Main class for SCFT or PS-FTS simulation of 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.