PSCF v1.2
rpc/fts/brownian/BdStep.h
1#ifndef RPC_BD_STEP_H
2#define RPC_BD_STEP_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
12#include <util/param/ParamComposite.h>
13#include <util/random/Random.h>
14#include <util/global.h>
15
16namespace Pscf {
17namespace Rpc {
18
19 using namespace Util;
20
21 template <int D> class System;
22 template <int D> class BdSimulator;
23
31 template <int D>
32 class BdStep : public ParamComposite
33 {
34
35 public:
36
43
49 virtual ~BdStep();
50
58 virtual void readParameters(std::istream &in);
59
63 virtual void setup();
64
70 virtual bool step() = 0;
71
79 virtual bool needsCc()
80 { return false; }
81
89 virtual bool needsDc()
90 { return true; }
91
97 virtual void outputTimers(std::ostream& out);
98
102 virtual void clearTimers();
103
107 virtual void output();
108
109 protected:
110
114 System<D>& system();
115
120
124 Random& random();
125
126 private:
127
129 BdSimulator<D>* simulatorPtr_;
130
132 System<D>* systemPtr_;
133
135 Random *randomPtr_;
136
137 };
138
139 // Protected inline methods
140
141 /*
142 * Get parent System object.
143 */
144 template <int D>
146 { return *systemPtr_; }
147
148 /*
149 * Get parent BdSimulator object.
150 */
151 template <int D>
153 { return *simulatorPtr_; }
154
155 /*
156 * Get Random number generator.
157 */
158 template <int D>
160 { return *randomPtr_; }
161
162 #ifndef RPC_BD_STEP_TPP
163 // Suppress implicit instantiation
164 extern template class BdStep<1>;
165 extern template class BdStep<2>;
166 extern template class BdStep<3>;
167 #endif
168
169}
170}
171#endif
Brownian dynamics simulator for PS-FTS.
BdStep is an abstract base class for Brownian dynamics steps.
virtual void readParameters(std::istream &in)
Read required parameters from file.
BdSimulator< D > & simulator()
Get parent BdSimulator object.
System< D > & system()
Get parent System object.
virtual void output()
Output statistics for this move (at the end of simulation)
virtual void setup()
Setup before the beginning of each simulation run.
virtual bool needsCc()
Do cc concentration components need to be saved before a step?
virtual bool step()=0
Take a single Brownian dynamics step.
virtual bool needsDc()
Do dc derivative components need to be saved before a step?
virtual ~BdStep()
Destructor.
virtual void clearTimers()
Clear timers.
BdStep(BdSimulator< D > &simulator)
Constructor.
Random & random()
Get Random number generator of parent System.
virtual void outputTimers(std::ostream &out)
Output timing results to ostream.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
An object that can read multiple parameters from file.
Random number generator.
Definition Random.h:47
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.