PSCF v1.2
rpg/fts/brownian/BdStep.tpp
1#ifndef RPG_BD_STEP_TPP
2#define RPG_BD_STEP_TPP
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 "BdStep.h"
12
13#include <rpg/fts/brownian/BdSimulator.h>
14#include <rpg/System.h>
15
16namespace Pscf {
17namespace Rpg {
18
19 using namespace Util;
20
21 /*
22 * Constructor.
23 */
24 template <int D>
26 : simulatorPtr_(&simulator),
27 systemPtr_(&(simulator.system())),
28 cudaRandomPtr_(&(simulator.cudaRandom()))
29 {}
30
31 /*
32 * Destructor, empty default implementation.
33 */
34 template <int D>
37
38 /*
39 * ReadParameters, empty default implementation.
40 */
41 template <int D>
42 void BdStep<D>::readParameters(std::istream &in)
43 {}
44
45 /*
46 * Setup at beginning of loop.
47 */
48 template <int D>
50 {}
51
52 template <int D>
54 {}
55
56 template<int D>
57 void BdStep<D>::outputTimers(std::ostream& out)
58 {}
59
60 template<int D>
63
64}
65}
66#endif
Brownian dynamics simulator.
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.
virtual void clearTimers()
Clear timers.
virtual void output()
Output statistics for this move (at the end of simulation)
virtual void setup()
Setup before the beginning of each simulation run.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.