PSCF v1.2
rpg/fts/brownian/BdStep.h
1#ifndef RPG_BD_STEP_H
2#define RPG_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 <pscf/cuda/CudaRandom.h>
14#include <util/global.h>
15
16namespace Pscf {
17namespace Rpg {
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
56 virtual void readParameters(std::istream &in);
57
61 virtual void setup();
62
68 virtual bool step() = 0;
69
74 virtual bool needsCc()
75 { return false; }
76
81 virtual bool needsDc()
82 { return true; }
83
87 virtual void outputTimers(std::ostream& out);
88
92 virtual void clearTimers();
93
94 // Accessor Functions
95
99 virtual void output();
100
101 protected:
102
106 System<D>& system();
107
112
117
118 private:
119
121 BdSimulator<D>* simulatorPtr_;
122
124 System<D>* systemPtr_;
125
127 CudaRandom *cudaRandomPtr_;
128
129 };
130
131 // Protected inline methods
132
133 /*
134 * Get parent System object.
135 */
136 template <int D>
138 { return *systemPtr_; }
139
140 /*
141 * Get parent BdSimulator object.
142 */
143 template <int D>
145 { return *simulatorPtr_; }
146
147 /*
148 * Get Random number generator.
149 */
150 template <int D>
152 { return *cudaRandomPtr_; }
153
154 #ifndef RPG_BD_STEP_TPP
155 // Suppress implicit instantiation
156 extern template class BdStep<1>;
157 extern template class BdStep<2>;
158 extern template class BdStep<3>;
159 #endif
160
161}
162}
163#endif
Random number generator on GPU.
Definition CudaRandom.h:30
Brownian dynamics simulator.
BdStep is an abstract base class for Brownian dynamics steps.
virtual void outputTimers(std::ostream &out)
Log output timing results.
virtual void readParameters(std::istream &in)
Read required parameters from file.
virtual ~BdStep()
Destructor.
BdStep(BdSimulator< D > &simulator)
Constructor.
System< D > & system()
Get parent System object.
virtual bool needsCc()
Decide whether cc fields need to be saved for move.
CudaRandom & cudaRandom()
Get Random number generator of parent System.
virtual void clearTimers()
Clear timers.
virtual void output()
Output statistics for this move (at the end of simulation)
virtual bool needsDc()
Decide whether dc fields need to be saved for move.
BdSimulator< D > & simulator()
Get parent BdSimulator object.
virtual bool step()=0
Take a single Brownian dynamics step.
virtual void setup()
Setup before the beginning of each simulation run.
Main class for calculations that represent one system.
Definition rpg/System.h:107
An object that can read multiple parameters from file.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.