PSCF v1.2
rpg/fts/brownian/BdSimulator.h
1#ifndef RPG_BD_SIMULATOR_H
2#define RPG_BD_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> // base class
12#include <rpg/fts/analyzer/AnalyzerManager.h> // member
13#include <util/param/Factory.h> // member template
14
15namespace Pscf {
16namespace Rpg {
17
18 using namespace Util;
19 using namespace Pscf::Prdc::Cuda;
20
21 template <int D> class BdStep;
22 template <int D> class TrajectoryReader;
23
29 template <int D>
30 class BdSimulator : public Simulator<D>
31 {
32
33 public:
34
40 BdSimulator(System<D>& system);
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
95 bool hasBdStep() const;
96
100 BdStep<D>& stepper();
101
105 AnalyzerManager<D>& analyzerManager();
106
111
113
114 // Inherited public functions
115
116 using Simulator<D>::allocate;
117 using Simulator<D>::analyzeChi;
118
119 using Simulator<D>::computeWc;
120 using Simulator<D>::computeCc;
121 using Simulator<D>::computeDc;
122 using Simulator<D>::wc;
123 using Simulator<D>::cc;
124 using Simulator<D>::dc;
125 using Simulator<D>::hasWc;
126 using Simulator<D>::hasCc;
127 using Simulator<D>::hasDc;
128
129 using Simulator<D>::clearData;
132 using Simulator<D>::hamiltonian;
135
136 using Simulator<D>::saveState;
138 using Simulator<D>::clearState;
139 using Simulator<D>::clearTimers;
140
141 using Simulator<D>::system;
142 using Simulator<D>::random;
143 using Simulator<D>::cudaRandom;
145 using Simulator<D>::compressor;
146 using Simulator<D>::hasRamp;
147 using Simulator<D>::ramp;
150
151 protected:
152
153 // Inherited protected functions
154
159
165 using Simulator<D>::readRamp;
166 using Simulator<D>::rampFactory;
167 using Simulator<D>::setRamp;
168
169 // Inherited protected data members
170
171 using Simulator<D>::wc_;
172 using Simulator<D>::hasWc_;
177 using Simulator<D>::iStep_;
178 using Simulator<D>::iTotalStep_;
179 using Simulator<D>::state_;
180
181 private:
182
186 AnalyzerManager<D> analyzerManager_;
187
191 BdStep<D>* bdStepPtr_;
192
196 Factory< BdStep<D> >* bdStepFactoryPtr_;
197
201 Factory< TrajectoryReader<D> >* trajectoryReaderFactoryPtr_;
202
206 long seed_;
207
208 // Private member functions
209
213 void setup(int nStep);
214
215 };
216
217 // Does this BdSimulator have a BdStep?
218 template <int D>
219 inline bool BdSimulator<D>::hasBdStep() const
220 { return (bool)bdStepPtr_; }
221
222 // Get the BdStep (Brownian dynamics stepper) by reference.
223 template <int D>
225 { return *bdStepPtr_; }
226
227 // Get the analyzer manager.
228 template <int D>
230 { return analyzerManager_; }
231
232 // Get the TrajectoryReaderfactory
233 template <int D>
234 inline
236 {
237 UTIL_ASSERT(trajectoryReaderFactoryPtr_);
238 return *trajectoryReaderFactoryPtr_;
239 }
240
241 #ifndef RPG_BD_SIMULATOR_TPP
242 // Suppress implicit instantiation
243 extern template class BdSimulator<1>;
244 extern template class BdSimulator<2>;
245 extern template class BdSimulator<3>;
246 #endif
247
248}
249}
250#endif
Manager for a list of Analyzer objects.
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.
Factory< TrajectoryReader< D > > & trajectoryReaderFactory()
Get the trajectory reader factory by reference.
BdStep< D > & stepper()
Get BdStep.
AnalyzerManager< D > & analyzerManager()
Get AnalyzerManger.
bool hasBdStep() const
Does this BdSimulator have an associated BdStep?
BdSimulator(System< D > &system)
Constructor.
virtual void readParameters(std::istream &in)
Read parameters for a MC simulation.
BdStep is an abstract base class for Brownian dynamics steps.
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 ?
bool hasCc() const
Are eigen-components of current c fields valid ?
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?
Simulator(System< D > &system)
Constructor.
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.
bool hasDc() const
Are the current d fields valid ?
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.
virtual void clearTimers()
Clear timers.
DArray< RField< D > > const & dc() const
Get all of the current d fields.
double hamiltonian_
Field theoretic Hamiltonian H[W] (extensive value).
RampFactory< D > & rampFactory()
Get the ramp factory by reference.
DArray< RField< D > > const & cc() const
Get all eigenvector components of the current c fields.
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.
void computeHamiltonian()
Compute the Hamiltonian used in field theoretic simulations.
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
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.