PSCF v1.2
rpc/fts/brownian/BdSimulator.h
1#ifndef RPC_BD_SIMULATOR_H
2#define RPC_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 <rpc/fts/simulator/Simulator.h> // base class
12#include <rpc/fts/analyzer/AnalyzerManager.h> // member
13#include <util/param/Factory.h> // member template
14
15namespace Pscf {
16namespace Rpc {
17
18 using namespace Util;
19
20 template <int D> class BdStep;
21 template <int D> class TrajectoryReader;
22
30 template <int D>
31 class BdSimulator : public Simulator<D>
32 {
33
34 public:
35
41 BdSimulator(System<D>& system);
42
47
53 virtual void readParameters(std::istream &in);
54
57
66 void simulate(int nStep);
67
80 virtual void analyze(int min, int max,
81 std::string classname,
82 std::string filename);
83
87
91 bool hasBdStep() const;
92
96 BdStep<D>& bdStep();
97
101 AnalyzerManager<D>& analyzerManager();
102
107
109
110 // Inherited public functions
111
112 using Simulator<D>::system;
113 using Simulator<D>::random;
114 using Simulator<D>::analyzeChi;
115 using Simulator<D>::chiEval;
116 using Simulator<D>::chiEvecs;
117 using Simulator<D>::computeWc;
118 using Simulator<D>::computeCc;
119 using Simulator<D>::computeDc;
120 using Simulator<D>::wc;
121 using Simulator<D>::cc;
122 using Simulator<D>::dc;
123 using Simulator<D>::hasWc;
124 using Simulator<D>::hasCc;
125 using Simulator<D>::hasDc;
126 using Simulator<D>::clearData;
127 using Simulator<D>::computeHamiltonian;
128 using Simulator<D>::hamiltonian;
129 using Simulator<D>::idealHamiltonian;
130 using Simulator<D>::fieldHamiltonian;
131 using Simulator<D>::perturbationHamiltonian;
132 using Simulator<D>::hasHamiltonian;
133 using Simulator<D>::hasCompressor;
134 using Simulator<D>::compressor;
135 using Simulator<D>::hasPerturbation;
136 using Simulator<D>::perturbation;
137 using Simulator<D>::hasRamp;
138 using Simulator<D>::ramp;
139 using Simulator<D>::saveState;
140 using Simulator<D>::restoreState;
141 using Simulator<D>::clearState;
142 using Simulator<D>::outputMdeCounter;
143
144 protected:
145
146 // Inherited protected functions
147
153 using Simulator<D>::readRandomSeed;
154 using Simulator<D>::readCompressor;
155 using Simulator<D>::readPerturbation;
156 using Simulator<D>::readRamp;
157 using Simulator<D>::compressorFactory;
158 using Simulator<D>::perturbationFactory;
159 using Simulator<D>::rampFactory;
160 using Simulator<D>::setRamp;
161 using Simulator<D>::setPerturbation;
162
163 // Inherited protected data members
164
165 using Simulator<D>::wc_;
166 using Simulator<D>::hasWc_;
167 using Simulator<D>::hamiltonian_;
168 using Simulator<D>::idealHamiltonian_;
169 using Simulator<D>::fieldHamiltonian_;
170 using Simulator<D>::hasHamiltonian_;
171 using Simulator<D>::iStep_;
172 using Simulator<D>::iTotalStep_;
173 using Simulator<D>::state_;
174 using Simulator<D>::seed_;
175
176 private:
177
181 AnalyzerManager<D> analyzerManager_;
182
186 BdStep<D>* bdStepPtr_;
187
191 Factory< BdStep<D> >* bdStepFactoryPtr_;
192
196 Factory< TrajectoryReader<D> >* trajectoryReaderFactoryPtr_;
197
198 // Private member functions
199
203 void setup(int nStep);
204
205 };
206
207 // Get the Brownian dynamics stepper.
208 template <int D>
209 inline bool BdSimulator<D>::hasBdStep() const
210 { return (bool)bdStepPtr_; }
211
212 // Get the Brownian dynamics stepper.
213 template <int D>
215 {
216 UTIL_CHECK(hasBdStep());
217 return *bdStepPtr_;
218 }
219
220 // Get the analyzer manager.
221 template <int D>
223 { return analyzerManager_; }
224
225 // Get the TrajectoryReaderfactory
226 template <int D>
227 inline
229 {
230 UTIL_ASSERT(trajectoryReaderFactoryPtr_);
231 return *trajectoryReaderFactoryPtr_;
232 }
233
234 #ifndef RPC_BD_SIMULATOR_TPP
235 // Suppress implicit instantiation
236 extern template class BdSimulator<1>;
237 extern template class BdSimulator<2>;
238 extern template class BdSimulator<3>;
239 #endif
240
241}
242}
243#endif
Manager for a list of Analyzer objects.
Brownian dynamics simulator for PS-FTS.
BdSimulator(System< D > &system)
Constructor.
AnalyzerManager< D > & analyzerManager()
Get the AnalyzerManager by reference.
Factory< TrajectoryReader< D > > & trajectoryReaderFactory()
Get the trajectory reader factory by reference.
BdStep< D > & bdStep()
Get the BdStep by reference.
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.
bool hasBdStep() const
Does this BdSimulator have a BdStep object?
BdStep is an abstract base class for Brownian dynamics steps.
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.
Factory template.
std::string indent() const
Return indent string for this object (string of spaces).
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_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#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.