1#ifndef RPG_BD_SIMULATOR_TPP
2#define RPG_BD_SIMULATOR_TPP
11#include "BdSimulator.h"
13#include <rpg/fts/brownian/BdStep.h>
14#include <rpg/fts/brownian/BdStepFactory.h>
15#include <rpg/fts/analyzer/AnalyzerFactory.h>
16#include <rpg/fts/trajectory/TrajectoryReader.h>
17#include <rpg/fts/trajectory/TrajectoryReaderFactory.h>
18#include <rpg/fts/perturbation/PerturbationFactory.h>
19#include <rpg/fts/perturbation/Perturbation.h>
20#include <rpg/fts/ramp/RampFactory.h>
21#include <rpg/fts/ramp/Ramp.h>
22#include <rpg/fts/compressor/Compressor.h>
23#include <rpg/System.h>
25#include <pscf/cuda/CudaRandom.h>
26#include <util/misc/Timer.h>
40 analyzerManager_(*this, system),
43 trajectoryReaderFactoryPtr_(0),
48 trajectoryReaderFactoryPtr_
58 if (bdStepFactoryPtr_) {
59 delete bdStepFactoryPtr_;
64 if (trajectoryReaderFactoryPtr_) {
65 delete trajectoryReaderFactoryPtr_;
80 std::string className;
83 bdStepPtr_ = bdStepFactoryPtr_->readObjectOptional(in, *
this,
87 readCompressor(in, isEnd);
88 readPerturbation(in, isEnd);
98 readParamCompositeOptional(in, analyzerManager_);
101 state_.needsCc =
false;
102 state_.needsDc =
false;
103 state_.needsHamiltonian =
false;
105 if (stepper().needsCc()){
106 state_.needsCc =
true;
108 if (stepper().needsDc()){
109 state_.needsDc =
true;
128 if (hasPerturbation()) {
129 perturbation().setup();
140 if (hasCompressor()) {
141 compressor().compress();
142 compressor().clearTimers();
149 computeHamiltonian();
155 if (analyzerManager_.size() > 0){
156 analyzerManager_.setup();
180 ramp().setParameters(iStep_);
184 analyzerTimer.
start();
185 analyzerManager_.sample(iStep_);
186 analyzerTimer.
stop();
188 for (iTotalStep_ = 0; iTotalStep_ < nStep; ++iTotalStep_) {
192 converged = stepper().step();
198 ramp().setParameters(iStep_);
202 analyzerTimer.
start();
205 if (analyzerManager_.size() > 0) {
206 analyzerManager_.sample(iStep_);
210 analyzerTimer.
stop();
213 Log::file() <<
"Step: "<< iTotalStep_<<
" fail to converge" <<
"\n";
219 double time = timer.
time();
220 double analyzerTime = analyzerTimer.
time();
224 analyzerManager_.output();
235 Log::file() <<
"nStep " << nStep << std::endl;
236 if (iStep_ != nStep){
237 Log::file() <<
"nFail Step " << (nStep - iStep_)
241 <<
" sec" << std::endl;
242 double rStep = double(nStep);
243 Log::file() <<
"time / nStep " << time / rStep
244 <<
" sec" << std::endl;
245 Log::file() <<
"Analyzer run time " << analyzerTime
246 <<
" sec" << std::endl;
251 << compressor().mdeCounter() << std::endl;
261 std::string classname,
262 std::string filename)
272 trajectoryReaderPtr = trajectoryReaderFactory().factory(classname);
273 if (!trajectoryReaderPtr) {
275 message =
"Invalid TrajectoryReader class name " + classname;
280 trajectoryReaderPtr->
open(filename);
281 trajectoryReaderPtr->readHeader();
287 hasFrame = trajectoryReaderPtr->
readFrame();
289 for (iStep_ = 0; iStep_ <= max && hasFrame; ++iStep_) {
300 analyzerManager_.sample(iStep_);
304 hasFrame = trajectoryReaderPtr->
readFrame();
307 Log::file() <<
"end main loop" << std::endl;
308 int nFrames = iStep_ - min;
309 trajectoryReaderPtr->
close();
310 delete trajectoryReaderPtr;
313 analyzerManager_.output();
317 Log::file() <<
"# of frames " << nFrames << std::endl;
319 <<
" sec" << std::endl;
320 Log::file() <<
"time / frame " << timer.
time()/double(nFrames)
321 <<
" sec" << std::endl;
332 compressor().outputTimers(out);
Abstract base for periodic output and/or analysis actions.
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.
void setClassName(const char *className)
Set class name string.
~BdSimulator()
Destructor.
BdSimulator(System< D > &system)
Constructor.
virtual void readParameters(std::istream &in)
Read parameters for a MC simulation.
Factory for subclasses of BdStep.
Field theoretic simulator (base class).
System< D > & system()
Get parent system by reference.
Main class for calculations that represent one system.
Factory for subclasses of TrajectoryReader.
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.