1#ifndef RPG_BD_SIMULATOR_H
2#define RPG_BD_SIMULATOR_H
11#include <rpg/fts/simulator/Simulator.h>
12#include <rpg/fts/analyzer/AnalyzerManager.h>
13#include <util/param/Factory.h>
21 template <
int D>
class BdStep;
22 template <
int D>
class TrajectoryReader;
30 class BdSimulator :
public Simulator<D>
79 virtual void analyze(
int min,
int max,
80 std::string classname,
81 std::string filename);
186 AnalyzerManager<D> analyzerManager_;
191 BdStep<D>* bdStepPtr_;
213 void setup(
int nStep);
220 {
return (
bool)bdStepPtr_; }
225 {
return *bdStepPtr_; }
230 {
return analyzerManager_; }
238 return *trajectoryReaderFactoryPtr_;
241 #ifndef RPG_BD_SIMULATOR_TPP
Manager for a list of Analyzer objects.
Brownian dynamics simulator.
virtual void outputTimers(std::ostream &out)
Output timing results.
void simulate(int nStep)
Perform a field theoretic Monte-Carlo simulation.
virtual void analyze(int min, int max, std::string classname, std::string filename)
Read and analyze a trajectory file.
Factory< TrajectoryReader< D > > & trajectoryReaderFactory()
Get the trajectory reader factory by reference.
BdStep< D > & stepper()
Get BdStep.
AnalyzerManager< D > & analyzerManager()
Get AnalyzerManger.
bool hasBdStep() const
Does this BdSimulator have an associated BdStep?
~BdSimulator()
Destructor.
BdSimulator(System< D > &system)
Constructor.
virtual void readParameters(std::istream &in)
Read parameters for a MC simulation.
BdStep is an abstract base class for Brownian dynamics steps.
void readRandomSeed(std::istream &in)
Read random seed and initialize random number generators.
PerturbationFactory< D > & perturbationFactory()
Get the perturbation factory by reference.
bool hasPerturbation() const
Does this Simulator have a Perturbation?
System< D > & system()
Get parent system by reference.
void computeWc()
Compute eigenvector components of the current w fields.
CudaRandom & cudaRandom()
Get cuda random number generator by reference.
void readRamp(std::istream &in, bool &isEnd)
Optionally read an associated ramp.
void computeCc()
Compute eigenvector components of the current c fields.
void clearData()
Clear field eigen-components and hamiltonian components.
bool hasHamiltonian_
Has the Hamiltonian been computed for the current w and c fields?
bool hasWc_
Have eigen-components of the current w fields been computed ?
bool hasCc() const
Are eigen-components of current c fields valid ?
void setPerturbation(Perturbation< D > *ptr)
Set the associated perturbation.
void computeDc()
Compute functional derivatives of the Hamiltonian.
SimState< D > state_
State saved during fts simulation.
bool hasHamiltonian() const
Has the MC Hamiltonian been computed for current w and c fields?
long iTotalStep_
Simulation step counter.
Random & random()
Get random number generator by reference.
void allocate()
Allocate required memory.
void saveState()
Save a copy of the fts move state.
void restoreState()
Restore the saved copy of the fts move state.
void readPerturbation(std::istream &in, bool &isEnd)
Optionally read an associated perturbation.
void readCompressor(std::istream &in, bool &isEnd)
Read the compressor block of the parameter file.
Ramp< D > const & ramp() const
Get the associated Ramp by const reference.
DArray< RField< D > > const & wc() const
Get all eigenvector components of the current w fields.
double hamiltonian() const
Get the Hamiltonian used in field theoretic simulations.
bool hasRamp() const
Does this Simulator have a Ramp?
Simulator(System< D > &system)
Constructor.
double fieldHamiltonian_
Field contribution (H_W) to Hamiltonian.
void analyzeChi()
Perform eigenvalue analysis of projected chi matrix.
Compressor< D > & compressor()
Get the compressor by reference.
bool hasCompressor() const
Does this Simulator have a Compressor object?
bool hasWc() const
Are eigen-components of current w fields valid ?
Perturbation< D > const & perturbation() const
Get the associated Perturbation by const reference.
bool hasDc() const
Are the current d fields valid ?
double idealHamiltonian_
Ideal gas contribution (lnQ) to Hamiltonian H[W].
void setRamp(Ramp< D > *ptr)
Set the associated ramp.
double fieldHamiltonian() const
Get the quadratic field contribution (HW) to MC Hamiltonian.
void clearState()
Clear the saved copy of the fts state.
long iStep_
Simulation step counter.
virtual void clearTimers()
Clear timers.
DArray< RField< D > > const & dc() const
Get all of the current d fields.
double hamiltonian_
Field theoretic Hamiltonian H[W] (extensive value).
RampFactory< D > & rampFactory()
Get the ramp factory by reference.
DArray< RField< D > > const & cc() const
Get all eigenvector components of the current c fields.
double idealHamiltonian() const
Get ideal gas contribution (-lnQ) to MC Hamiltonian.
DArray< RField< D > > wc_
Eigenvector components of w fields on a real space grid.
void computeHamiltonian()
Compute the Hamiltonian used in field theoretic simulations.
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.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
PSCF package top-level namespace.
Utility classes for scientific computation.