1#ifndef RPC_BD_SIMULATOR_TPP
2#define RPC_BD_SIMULATOR_TPP
11#include "BdSimulator.h"
13#include <rpc/fts/brownian/BdStep.h>
14#include <rpc/fts/brownian/BdStepFactory.h>
15#include <rpc/fts/compressor/Compressor.h>
16#include <rpc/fts/analyzer/AnalyzerFactory.h>
17#include <rpc/fts/trajectory/TrajectoryReader.h>
18#include <rpc/fts/trajectory/TrajectoryReaderFactory.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>
23#include <rpc/System.h>
25#include <util/random/Random.h>
26#include <util/misc/Timer.h>
40 analyzerManager_(*this, system),
43 trajectoryReaderFactoryPtr_(0)
47 trajectoryReaderFactoryPtr_
57 if (bdStepFactoryPtr_) {
58 delete bdStepFactoryPtr_;
63 if (trajectoryReaderFactoryPtr_) {
64 delete trajectoryReaderFactoryPtr_;
79 std::string className;
81 bdStepFactoryPtr_->readObjectOptional(in, *
this,
85 Log::file() << indent() <<
" BdStep{ [absent] }\n";
89 readCompressor(in, isEnd);
95 readPerturbation(in, isEnd);
102 readParamCompositeOptional(in, analyzerManager_);
105 state_.needsCc =
false;
106 state_.needsDc =
false;
107 state_.needsHamiltonian =
false;
109 if (bdStep().needsCc()){
110 state_.needsCc =
true;
112 if (bdStep().needsDc()){
113 state_.needsDc =
true;
133 if (hasPerturbation()) {
134 perturbation().setup();
145 if (hasCompressor()) {
146 compressor().compress();
147 compressor().clearTimers();
154 computeHamiltonian();
157 if (analyzerManager_.size() > 0){
158 analyzerManager_.setup();
182 ramp().setParameters(iStep_);
186 analyzerTimer.
start();
187 if (analyzerManager_.size() > 0){
188 analyzerManager_.sample(iStep_);
190 analyzerTimer.
stop();
192 for (iTotalStep_ = 0; iTotalStep_ < nStep; ++iTotalStep_) {
196 converged = bdStep().step();
202 ramp().setParameters(iStep_);
206 analyzerTimer.
start();
208 if (analyzerManager_.size() > 0) {
210 analyzerManager_.sample(iStep_);
214 analyzerTimer.
stop();
218 <<
" failed to converge" <<
"\n";
224 double time = timer.
time();
225 double analyzerTime = analyzerTimer.
time();
229 analyzerManager_.output();
240 Log::file() <<
"nStep " << nStep << std::endl;
241 if (iStep_ != nStep){
242 Log::file() <<
"nFail Step " << (nStep - iStep_) << std::endl;
245 <<
" sec" << std::endl;
246 double rStep = double(nStep);
247 Log::file() <<
"time / nStep " << time / rStep
248 <<
" sec" << std::endl;
249 Log::file() <<
"Analyzer run time " << analyzerTime
250 <<
" sec" << std::endl;
255 << compressor().mdeCounter() << std::endl;
267 std::string classname,
268 std::string filename)
278 trajectoryReaderPtr = trajectoryReaderFactory().factory(classname);
279 if (!trajectoryReaderPtr) {
281 message =
"Invalid TrajectoryReader class name " + classname;
286 trajectoryReaderPtr->
open(filename);
287 trajectoryReaderPtr->readHeader();
293 hasFrame = trajectoryReaderPtr->
readFrame();
295 for (iStep_ = 0; iStep_ <= max && hasFrame; ++iStep_) {
307 analyzerManager_.sample(iStep_);
311 hasFrame = trajectoryReaderPtr->
readFrame();
314 Log::file() <<
"end main loop" << std::endl;
315 int nFrames = iStep_ - min;
316 trajectoryReaderPtr->
close();
317 delete trajectoryReaderPtr;
320 analyzerManager_.output();
324 Log::file() <<
"# of frames " << nFrames << std::endl;
326 <<
" sec" << std::endl;
327 Log::file() <<
"time / frame " << timer.
time()/double(nFrames)
328 <<
" sec" << std::endl;
Abstract base for periodic output and/or analysis actions.
Brownian dynamics simulator for PS-FTS.
~BdSimulator()
Destructor.
BdSimulator(System< D > &system)
Constructor.
void setClassName(const char *className)
Set class name string.
virtual void analyze(int min, int max, std::string classname, std::string filename)
Read and analyze a trajectory file.
virtual void readParameters(std::istream &in)
Read parameter file block for a Brownian dynamics (BD) simulation.
void simulate(int nStep)
Perform a field theoretic Monte-Carlo simulation.
Factory for subclasses of BdStep.
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.
static bool echo()
Get echo parameter.
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.