PSCF v1.2
rpc/fts/montecarlo/McSimulator.h
1#ifndef RPC_MC_SIMULATOR_H
2#define RPC_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 <rpc/fts/simulator/Simulator.h> // member
12#include <rpc/fts/montecarlo/McMoveManager.h> // member
13#include <rpc/fts/analyzer/AnalyzerManager.h> // member
14
15namespace Pscf {
16namespace Rpc {
17
18 using namespace Util;
19 using namespace Prdc::Cpu;
20
21 template <int D> class McMove;
22 template <int D> class TrajectoryReader;
23
31 template <int D>
32 class McSimulator : public Simulator<D>
33 {
34
35 public:
36
43
48
54 virtual void readParameters(std::istream &in);
55
58
67 void simulate(int nStep);
68
81 virtual void analyze(int min, int max,
82 std::string classname,
83 std::string filename);
84
88 virtual void outputTimers(std::ostream& out);
89
93 virtual void clearTimers();
94
98 bool needsCc();
99
103 bool needsDc();
104
108
113
118
123
127 bool hasMcMoves() const;
128
130
131 // Inherited public functions
132
133 using Simulator<D>::system;
134 using Simulator<D>::analyzeChi;
135 using Simulator<D>::chiEval;
136 using Simulator<D>::chiEvecs;
137 using Simulator<D>::computeWc;
138 using Simulator<D>::computeCc;
139 using Simulator<D>::computeDc;
140 using Simulator<D>::wc;
141 using Simulator<D>::cc;
142 using Simulator<D>::dc;
143 using Simulator<D>::hasWc;
144 using Simulator<D>::hasCc;
145 using Simulator<D>::hasDc;
146 using Simulator<D>::clearData;
149 using Simulator<D>::hamiltonian;
153 using Simulator<D>::random;
155 using Simulator<D>::compressor;
158 using Simulator<D>::hasRamp;
159 using Simulator<D>::ramp;
160 using Simulator<D>::saveState;
162 using Simulator<D>::clearState;
164
165 protected:
166
167 // Inherited protected functions
168
173
177 using Simulator<D>::readRamp;
181 using Simulator<D>::rampFactory;
182 using Simulator<D>::setRamp;
183
184 // Inherited protected data members
185
186 using Simulator<D>::wc_;
187 using Simulator<D>::hasWc_;
192 using Simulator<D>::iStep_;
193 using Simulator<D>::iTotalStep_;
194 using Simulator<D>::state_;
195 using Simulator<D>::seed_;
196
197 private:
198
202 McMoveManager<D> mcMoveManager_;
203
207 AnalyzerManager<D> analyzerManager_;
208
212 Factory< TrajectoryReader<D> >* trajectoryReaderFactoryPtr_;
213
214 // Private member functions
215
219 void setup(int nStep);
220
221 };
222
223 // Get the Monte-Carlo move manager.
224 template <int D>
226 { return mcMoveManager_; }
227
228 // Get the Monte-Carlo analyzer manager.
229 template <int D>
231 { return analyzerManager_; }
232
233 // Get the TrajectoryReaderfactory
234 template <int D>
235 inline
237 {
238 UTIL_ASSERT(trajectoryReaderFactoryPtr_);
239 return *trajectoryReaderFactoryPtr_;
240 }
241
242 // Have any MC moves been defined?
243 template <int D>
244 inline bool McSimulator<D>::hasMcMoves() const
245 { return (bool)(mcMoveManager_.size() > 0); }
246
247 // Does the stored state need to include Cc fields ?
248 template <int D>
250 { return state_.needsCc; }
251
252 // Does the stored state need to include Dc fields ?
253 template <int D>
255 { return state_.needsDc; }
256
257 #ifndef RPC_MC_SIMULATOR_TPP
258 // Suppress implicit instantiation
259 extern template class McSimulator<1>;
260 extern template class McSimulator<2>;
261 extern template class McSimulator<3>;
262 #endif
263
264}
265}
266#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.
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.
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).
Definition rpc/System.h:38
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.
Definition rpc/System.h:100
Trajectory file reader (base class).
Factory template.
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
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.