PSCF v1.2
rpg/fts/montecarlo/McSimulator.h
1#ifndef RPG_MC_SIMULATOR_H
2#define RPG_MC_SIMULATOR_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <rpg/fts/simulator/Simulator.h> // member
12#include <rpg/fts/montecarlo/McMoveManager.h> // member
13#include <rpg/fts/analyzer/AnalyzerManager.h> // member
14
15namespace Pscf {
16namespace Rpg {
17
18 using namespace Util;
19 using namespace Pscf::Prdc::Cuda;
20
21 template <int D> class McMove;
22 template <int D> class TrajectoryReader;
23
29 template <int D>
30 class McSimulator : public Simulator<D>
31 {
32
33 public:
34
41
46
52 virtual void readParameters(std::istream &in);
53
56
65 void simulate(int nStep);
66
79 virtual void analyze(int min, int max,
80 std::string classname,
81 std::string filename);
82
86 virtual void outputTimers(std::ostream& out);
87
91 virtual void clearTimers();
92
96 bool needsCc();
97
101 bool needsDc();
102
106
112 bool hasMcMoves() const;
113
118
123
128
130
131 // Inherited public functions
132
133 using Simulator<D>::allocate;
134 using Simulator<D>::analyzeChi;
135 using Simulator<D>::computeWc;
136 using Simulator<D>::computeCc;
137 using Simulator<D>::computeDc;
138 using Simulator<D>::wc;
139 using Simulator<D>::hasWc;
140 using Simulator<D>::clearData;
141
144 using Simulator<D>::hamiltonian;
147
148 using Simulator<D>::system;
149 using Simulator<D>::random;
150 using Simulator<D>::cudaRandom;
152 using Simulator<D>::compressor;
155 using Simulator<D>::hasRamp;
156 using Simulator<D>::ramp;
157
158 using Simulator<D>::saveState;
160 using Simulator<D>::clearState;
162
163 protected:
164
165 // Inherited protected functions
166
172
178 using Simulator<D>::rampFactory;
179 using Simulator<D>::readRamp;
180 using Simulator<D>::setRamp;
181
182 // Inherited protected data members
183
184 using Simulator<D>::wc_;
185 using Simulator<D>::hasWc_;
190 using Simulator<D>::iStep_;
191 using Simulator<D>::iTotalStep_;
192 using Simulator<D>::state_;
193
194 private:
195
199 McMoveManager<D> mcMoveManager_;
200
204 AnalyzerManager<D> analyzerManager_;
205
209 Factory< TrajectoryReader<D> >* trajectoryReaderFactoryPtr_;
210
211 // Private member functions
212
218 void setup(int nStep);
219
220 };
221
222 // Does this McSimulator have any MC moves defined?
223 template <int D>
224 inline bool McSimulator<D>::hasMcMoves() const
225 { return (bool)(mcMoveManager_.size() > 0); }
226
227 // Get the Monte-Carlo move manager.
228 template <int D>
230 { return mcMoveManager_; }
231
232 // Get the Monte-Carlo analyzer manager.
233 template <int D>
235 { return analyzerManager_; }
236
237 // Get the TrajectoryReaderfactory
238 template <int D>
239 inline
241 {
242 UTIL_ASSERT(trajectoryReaderFactoryPtr_);
243 return *trajectoryReaderFactoryPtr_;
244 }
245
246 // Return the simulations whether needs to store Cc fields
247 template <int D>
249 {
250 return state_.needsCc;
251 }
252
253 // Return the simulations whether needs to store Dc fields
254 template <int D>
256 {
257 return state_.needsDc;
258 }
259
260 #ifndef RPG_MC_SIMULATOR_TPP
261 // Suppress implicit instantiation
262 extern template class McSimulator<1>;
263 extern template class McSimulator<2>;
264 extern template class McSimulator<3>;
265 #endif
266
267}
268}
269#endif
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.
bool needsCc()
Return the simulations whether needs to store cc fields.
virtual void outputTimers(std::ostream &out)
Output timing results.
McSimulator(System< D > &system)
Constructor.
bool hasMcMoves() const
Does this McSimulator have any MC moves defined?
virtual void analyze(int min, int max, std::string classname, std::string filename)
Read and analyze a trajectory file.
void simulate(int nStep)
Perform a field theoretic Monte-Carlo simulation.
McMoveManager< D > & mcMoveManager()
Get McMoveManger.
virtual void clearTimers()
Clear timers.
AnalyzerManager< D > & analyzerManager()
Get AnalyzerManger.
bool needsDc()
Return the simulations whether needs to store Dc fields.
virtual void readParameters(std::istream &in)
Read parameters for a MC simulation.
Factory< TrajectoryReader< D > > & trajectoryReaderFactory()
Get the trajectory reader factory by reference.
Field theoretic simulator (base class).
Definition rpg/System.h:41
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 ?
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?
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.
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.
double hamiltonian_
Field theoretic Hamiltonian H[W] (extensive value).
RampFactory< D > & rampFactory()
Get the ramp factory by reference.
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.
virtual void outputMdeCounter(std::ostream &out)
Output MDE counter.
void computeHamiltonian()
Compute the Hamiltonian used in field theoretic simulations.
Main class for calculations that represent one system.
Definition rpg/System.h:107
Factory template.
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
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.
Definition global.h:75
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.