1#ifndef RPC_MC_SIMULATOR_TPP
2#define RPC_MC_SIMULATOR_TPP
11#include "McSimulator.h"
13#include <rpc/System.h>
14#include <rpc/fts/montecarlo/McMoveFactory.h>
15#include <rpc/fts/analyzer/AnalyzerFactory.h>
16#include <rpc/fts/trajectory/TrajectoryReader.h>
17#include <rpc/fts/trajectory/TrajectoryReaderFactory.h>
18#include <rpc/fts/compressor/Compressor.h>
19#include <rpc/fts/perturbation/PerturbationFactory.h>
20#include <rpc/fts/perturbation/Perturbation.h>
21#include <rpc/fts/ramp/RampFactory.h>
22#include <rpc/fts/ramp/Ramp.h>
24#include <util/random/Random.h>
25#include <util/misc/Timer.h>
28#include <gsl/gsl_eigen.h>
41 mcMoveManager_(*this, system),
42 analyzerManager_(*this, system),
43 trajectoryReaderFactoryPtr_(0)
46 trajectoryReaderFactoryPtr_
56 if (trajectoryReaderFactoryPtr_) {
57 delete trajectoryReaderFactoryPtr_;
71 readParamCompositeOptional(in, mcMoveManager_);
75 readCompressor(in, isEnd);
76 readPerturbation(in, isEnd);
84 readParamCompositeOptional(in, analyzerManager_);
87 state_.needsCc =
false;
88 state_.needsDc =
false;
89 state_.needsHamiltonian =
true;
90 if (mcMoveManager_.needsCc()){
91 state_.needsCc =
true;
93 if (mcMoveManager_.needsDc()){
94 state_.needsDc =
true;
113 if (hasPerturbation()) {
114 perturbation().setup();
125 if (hasCompressor()) {
126 compressor().compress();
127 compressor().clearTimers();
132 if (state_.needsCc || state_.needsDc) {
135 if (state_.needsDc) {
138 computeHamiltonian();
140 mcMoveManager_.setup();
141 if (analyzerManager_.size() > 0){
142 analyzerManager_.setup();
167 ramp().setParameters(iStep_);
171 analyzerTimer.
start();
172 analyzerManager_.sample(iStep_);
173 analyzerTimer.
stop();
176 for (iTotalStep_ = 0; iTotalStep_ < nStep; ++iTotalStep_) {
180 converged = mcMoveManager_.chooseMove().move();
186 ramp().setParameters(iStep_);
190 analyzerTimer.
start();
193 if (analyzerManager_.size() > 0) {
194 analyzerManager_.sample(iStep_);
198 analyzerTimer.
stop();
202 <<
" failed to converge" <<
"\n";
207 double time = timer.
time();
208 double analyzerTime = analyzerTimer.
time();
211 mcMoveManager_.output();
213 analyzerManager_.output();
223 Log::file() <<
"nStep " << nStep << std::endl;
224 if (iStep_ != nStep){
225 Log::file() <<
"nFail Step " << (nStep - iStep_) << std::endl;
228 <<
" sec" << std::endl;
229 double rStep = double(nStep);
230 Log::file() <<
"time / nStep " << time / rStep
231 <<
" sec" << std::endl;
232 Log::file() <<
"Analyzer run time " << analyzerTime
233 <<
" sec" << std::endl;
244 Log::file() <<
"Move Statistics:" << endl << endl;
245 Log::file() << setw(20) << left <<
"Move Name"
246 << setw(10) << right <<
"Attempted"
247 << setw(10) << right <<
"Accepted"
248 << setw(13) << right <<
"AcceptRate"
249 << setw(10) << right <<
"Failed"
250 << setw(13) << right <<
"FailRate"
252 int nMove = mcMoveManager_.size();
253 for (
int iMove = 0; iMove < nMove; ++iMove) {
254 attempt = mcMoveManager_[iMove].nAttempt();
255 accept = mcMoveManager_[iMove].nAccept();
256 fail = mcMoveManager_[iMove].nFail();
258 << mcMoveManager_[iMove].className()
259 << setw(10) << right << attempt
260 << setw(10) << accept
261 << setw(13) << fixed << setprecision(5)
262 << ( attempt == 0 ? 0.0 : double(accept)/double(attempt) )
264 << setw(13) << fixed << setprecision(5)
265 << ( attempt == 0 ? 0.0 : double(fail)/double(attempt) )
277 std::string classname,
278 std::string filename)
288 trajectoryReaderPtr = trajectoryReaderFactory().factory(classname);
289 if (!trajectoryReaderPtr) {
291 message =
"Invalid TrajectoryReader class name " + classname;
296 trajectoryReaderPtr->
open(filename);
297 trajectoryReaderPtr->readHeader();
303 hasFrame = trajectoryReaderPtr->
readFrame();
305 for (iStep_ = 0; iStep_ <= max && hasFrame; ++iStep_) {
316 analyzerManager_.sample(iStep_);
320 hasFrame = trajectoryReaderPtr->
readFrame();
323 Log::file() <<
"end main loop" << std::endl;
324 int nFrames = iStep_ - min;
325 trajectoryReaderPtr->
close();
326 delete trajectoryReaderPtr;
329 analyzerManager_.output();
333 Log::file() <<
"# of frames " << nFrames << std::endl;
335 <<
" sec" << std::endl;
336 Log::file() <<
"time / frame " << timer.
time()/double(nFrames)
337 <<
" sec" << std::endl;
348 compressor().outputTimers(out);
350 out <<
"MC move time contributions:\n";
351 mcMoveManager_.outputTimers(out);
360 { mcMoveManager_.clearTimers(); }
Abstract base for periodic output and/or analysis actions.
Monte-Carlo simulation coordinator.
virtual void analyze(int min, int max, std::string classname, std::string filename)
Read and analyze a trajectory file.
void setClassName(const char *className)
Set class name string.
virtual void readParameters(std::istream &in)
Read parameters file block for an MC simulation.
virtual void outputTimers(std::ostream &out)
Output timing results.
virtual void clearTimers()
Clear timers.
void simulate(int nStep)
Perform a field theoretic Monte-Carlo simulation.
~McSimulator()
Destructor.
McSimulator(System< D > &system)
Constructor.
Field theoretic simulator (base class).
System< D > & system()
Get parent system by reference.
void allocate()
Allocate required memory.
Main class for SCFT or PS-FTS simulation of one system.
Factory for subclasses of TrajectoryReader.
Trajectory file reader (base class).
virtual bool readFrame()=0
Read a single frame.
virtual void close()=0
Close the trajectory file.
virtual void open(std::string filename)=0
Open trajectory file and read header, if any.
static std::ostream & file()
Get log ostream by reference.
void start(TimePoint begin)
Start timing from an externally supplied time.
double time()
Return the accumulated time, in seconds.
void stop(TimePoint end)
Stop the clock at an externally supplied time.
File containing preprocessor macros for error handling.
#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.
PSCF package top-level namespace.
Utility classes for scientific computation.