PSCF v1.2
rpc/fts/brownian/BdStep.tpp
1#ifndef RPC_BD_STEP_TPP
2#define RPC_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 <rpc/fts/brownian/BdSimulator.h>
14#include <rpc/System.h>
15
16namespace Pscf {
17namespace Rpc {
18
19 using namespace Util;
20
21 /*
22 * Constructor.
23 */
24 template <int D>
26 : simulatorPtr_(&simulator),
27 systemPtr_(&(simulator.system())),
28 randomPtr_(&(simulator.random()))
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 for PS-FTS.
virtual void readParameters(std::istream &in)
Read required parameters from file.
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 ~BdStep()
Destructor.
virtual void clearTimers()
Clear timers.
BdStep(BdSimulator< D > &simulator)
Constructor.
virtual void outputTimers(std::ostream &out)
Output timing results to ostream.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.