1#ifndef RPC_MC_SIMULATOR_H
2#define RPC_MC_SIMULATOR_H
11#include <rpc/fts/simulator/Simulator.h>
12#include <rpc/fts/montecarlo/McMoveManager.h>
13#include <rpc/fts/analyzer/AnalyzerManager.h>
19 using namespace Prdc::Cpu;
81 virtual void analyze(
int min,
int max,
82 std::string classname,
83 std::string filename);
219 void setup(
int nStep);
226 {
return mcMoveManager_; }
231 {
return analyzerManager_; }
239 return *trajectoryReaderFactoryPtr_;
245 {
return (
bool)(mcMoveManager_.size() > 0); }
250 {
return state_.needsCc; }
255 {
return state_.needsDc; }
257 #ifndef RPC_MC_SIMULATOR_TPP
Manager for a list of Analyzer objects.
Manager for a set of McMove objects.
McMove is an abstract base class for Monte Carlo moves.
Monte-Carlo simulation coordinator.
Factory< TrajectoryReader< D > > & trajectoryReaderFactory()
Get the trajectory reader factory by reference.
virtual void analyze(int min, int max, std::string classname, std::string filename)
Read and analyze a trajectory file.
bool hasMcMoves() const
Have any McMove algorithms been defined?
virtual void readParameters(std::istream &in)
Read parameters file block for an MC simulation.
virtual void outputTimers(std::ostream &out)
Output timing results.
McMoveManager< D > & mcMoveManager()
Get McMoveManger.
virtual void clearTimers()
Clear timers.
void simulate(int nStep)
Perform a field theoretic Monte-Carlo simulation.
~McSimulator()
Destructor.
bool needsDc()
Return the simulations whether needs to store Dc fields.
McSimulator(System< D > &system)
Constructor.
bool needsCc()
Return the simulations whether needs to store cc fields.
AnalyzerManager< D > & analyzerManager()
Get AnalyzerManger.
Field theoretic simulator (base class).
Ramp< D > const & ramp() const
Get the associated Ramp by const reference.
void readPerturbation(std::istream &in, bool &isEnd)
Optionally read an associated perturbation.
System< D > & system()
Get parent system by reference.
bool hasWc_
Have eigen-components of the current w fields been computed ?
void computeDc()
Compute functional derivatives of the Hamiltonian.
SimState< D > state_
Previous state saved during at the beginning of a step.
bool hasHamiltonian_
Has the Hamiltonian been computed for the current w and c fields?
double perturbationHamiltonian() const
Get the perturbation to the standard Hamiltonian (if any).
void clearState()
Clear the saved copy of the fts state.
bool hasRamp() const
Does this Simulator have a Ramp?
PerturbationFactory< D > & perturbationFactory()
Get the perturbation factory by reference.
void computeWc()
Compute eigenvector components of the current w fields.
DArray< RField< D > > const & cc() const
Get all eigenvector components of the current c fields.
void setPerturbation(Perturbation< D > *ptr)
Set the associated perturbation.
double chiEval(int a) const
Get a single eigenvalue of the projected chi matrix.
void clearData()
Clear field eigen-components and hamiltonian components.
Compressor< D > & compressor()
Get the compressor by reference.
bool hasDc() const
Are the current d fields valid ?
void analyzeChi()
Perform eigenvalue analysis of projected chi matrix.
double fieldHamiltonian_
Field contribution (H_W) to Hamiltonian.
virtual void outputMdeCounter(std::ostream &out)
Output MDE counter.
long seed_
Random number generator seed.
DMatrix< double > const & chiEvecs() const
Get the matrix of all eigenvectors of the projected chi matrix.
double idealHamiltonian_
Ideal gas contribution (-lnQ) to Hamiltonian H[W].
void setRamp(Ramp< D > *ptr)
Set the associated ramp.
DArray< RField< D > > wc_
Eigenvector components of w fields on a real space grid.
bool hasCc() const
Are eigen-components of current c fields valid ?
RampFactory< D > & rampFactory()
Get the ramp factory by reference.
double hamiltonian_
Total field theoretic Hamiltonian H[W] (extensive value).
bool hasWc() const
Are eigen-components of current w fields valid ?
CompressorFactory< D > & compressorFactory()
Get the compressor factory by reference.
void restoreState()
Restore the saved copy of the fts move state.
void saveState()
Save a copy of the fts move state.
long iTotalStep_
Step counter - total number of attempted BD or MC steps.
double hamiltonian() const
Get the Hamiltonian used in PS-FTS.
bool hasCompressor() const
Does this Simulator have a Compressor?
void readRandomSeed(std::istream &in)
Optionally read a random number generator seed.
bool hasPerturbation() const
Does this Simulator have a Perturbation?
void readCompressor(std::istream &in, bool &isEnd)
Read the compressor block of the parameter file.
double fieldHamiltonian() const
Get the quadratic field contribution to the Hamiltonian.
long iStep_
Step counter - attempted steps for which compressor converges.
void readRamp(std::istream &in, bool &isEnd)
Optionally read an associated ramp.
bool hasHamiltonian() const
Has the Hamiltonian been computed for current w and c fields?
DArray< RField< D > > const & dc() const
Get all of the current d fields.
Perturbation< D > const & perturbation() const
Get the associated Perturbation by const reference.
DArray< RField< D > > const & wc() const
Get all eigenvector components of the current w fields.
void computeHamiltonian()
Compute the Hamiltonian used in PS-FTS.
double idealHamiltonian() const
Get ideal gas contribution to the Hamiltonian.
Random & random()
Get random number generator by reference.
void computeCc()
Compute eigenvector components of the current c fields.
Main class for SCFT or PS-FTS simulation of one system.
Trajectory file reader (base class).
void setClassName(const char *className)
Set class name string.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
void readParamComposite(std::istream &in, ParamComposite &child, bool next=true)
Add and read a required child ParamComposite.
void readParamCompositeOptional(std::istream &in, ParamComposite &child, bool next=true)
Add and attempt to read an optional child ParamComposite.
#define UTIL_ASSERT(condition)
Assertion macro suitable for debugging serial or parallel code.
PSCF package top-level namespace.
Utility classes for scientific computation.