10#include <r1d/System.h>
11#include <r1d/domain/Domain.h>
12#include <r1d/solvers/Mixture.h>
13#include <r1d/iterator/Iterator.h>
14#include <util/misc/ioUtil.h>
15#include <util/format/Int.h>
16#include <util/format/Dbl.h>
25 #define R1D_HISTORY_CAPACITY 3
31 :
Base(R1D_HISTORY_CAPACITY),
69 if (
state.isAllocated()) {
74 for (
int j = 0; j < nm; ++j) {
75 if (
state[j].isAllocated()) {
78 state[j].allocate(nx);
108 UTIL_THROW(
"Called un-implemented R1d::Sweep::setParameters");
130 for (i = 0; i < nm; ++i) {
132 for (j = 0; j < nx; ++j) {
137 for (j = 0; j < nx; ++j) {
191 std::string outFileName;
194 outFileName = fileName;
195 outFileName +=
".stt";
207 outFileName = fileName;
212 outFileName = fileName;
221 out <<
Int(i,5) <<
Dbl(sNew)
234 out <<
Dbl(dOmega, 16);
242 { logFile_.close(); }
254 for (i = 0; i < nm; ++i) {
259 for (j = 0; j < nx; ++j) {
260 lhs[i][j] = rhs[i][j];
double pressure() const
Return pressure in units of kT / monomer volume.
double fHelmholtz() const
Return Helmholtz free energy per monomer / kT.
int nMonomer() const
Get number of monomer types.
int nx() const
Get number of spatial grid points, including both endpoints.
double volume() const
Get generalized volume of domain.
void associate(Domain const &domain, FileMaster const &fileMaster)
Get and store addresses of associated objects.
void writeFields(DArray< Field > const &fields, std::ostream &out, bool writeHeader=true) const
Write a set of fields, one per monomer type, to an output stream.
void output(int mode, std::ostream &out)
Output comparison to a homogeneous reference system.
void compute(int mode)
Compute properties of a homogeneous reference system.
int homogeneousMode_
Mode for comparison to homogeneous system (none -> -1)
virtual void outputSolution(std::string const &stateFileName)
Output information after obtaining a converged solution.
virtual void getSolution()
Update state(0) and output data after successful convergence.
virtual void outputSummary(std::ostream &outFile)
Output data to a running summary.
virtual void extrapolate(double s)
Create initial guess for new w fields by polynomial extrapolation.
virtual void readParameters(std::istream &in)
Read ns and baseFileName parameters.
virtual void reset()
Reset system to previous solution after iterature failure.
virtual void setParameters(double s)
Set non-adjustable system parameters to new values.
virtual void checkAllocation(State &state)
Check allocation of w fields in one state, allocate if needed.
Sweep(System &system)
Constructor.
virtual void setup()
Setup operation at beginning sweep.
virtual void cleanup()
Close log file after end of sweep.
virtual int solve(bool isContinuation)
Call the current iterator to solve one SCFT problem.
Concise accesss to an associated System.
System::WField & wField(int monomerId)
Get chemical potential field for a specific monomer type.
const Domain & domain() const
Get spatial domain (including grid info) by reference.
DArray< System::CField > & cFields()
Get array of all chemical potential fields.
DArray< System::WField > & wFields()
Get array of all chemical potential fields.
FileMaster & fileMaster()
Get FileMaster by reference.
const System & system() const
Get parent System by reference.
const Mixture & mixture() const
Get Mixture by reference.
Main class in SCFT simulation of one system.
double fHelmholtz() const
Get precomputed Helmholtz free energy per monomer / kT.
double pressure() const
Get precomputed pressure x monomer volume kT.
int iterate(bool isContinuation=false)
Iteratively solve a SCFT problem.
Homogeneous::Mixture & homogeneous()
Get homogeneous mixture (for reference calculations).
Domain & domain()
Get spatial domain (including grid info) by reference.
FileMaster & fileMaster()
Get FileMaster by reference.
void writeThermo(std::ostream &out) const
Write thermodynamic properties to a file.
Solve a sequence of problems along a path through parameter space.
void addParameterTypes(GArray< ParameterType > paramTypes)
DArray< System::WField > & state(int i)
std::string baseFileName_
void setCoefficients(double sNew)
virtual void readParameters(std::istream &in)
Read ns and baseFileName parameters.
int capacity() const
Return allocated size.
Dynamically allocatable contiguous array template.
Wrapper for a double precision number, for formatted ostream output.
void openOutputFile(const std::string &filename, std::ofstream &out, std::ios_base::openmode mode=std::ios_base::out) const
Open an output file.
Wrapper for an int, for formatted ostream output.
void setClassName(const char *className)
Set class name string.
virtual void writeParam(std::ostream &out) const
Write all parameters to an output stream.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
#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.