PSCF v1.2
rpc/fts/brownian/ExplicitBdStep.h
1#ifndef RPC_EXPLICIT_BD_STEP_H
2#define RPC_EXPLICIT_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 "BdStep.h"
13
14#include <prdc/cpu/RField.h>
15#include <util/containers/DArray.h>
16#include <util/containers/DArray.h>
17
18namespace Pscf {
19namespace Rpc {
20
21 using namespace Util;
22 using namespace Prdc::Cpu;
23
33 template <int D>
34 class ExplicitBdStep : public BdStep<D>
35 {
36
37 public:
38
45
51 virtual ~ExplicitBdStep();
52
58 virtual void readParameters(std::istream &in);
59
63 virtual void setup();
64
70 virtual bool step();
71
72 protected:
73
74 using BdStep<D>::system;
75 using BdStep<D>::simulator;
76 using BdStep<D>::random;
78
79 private:
80
81 // Local copy of w fields
83
84 // Change in one component of wc
85 RField<D> dwc_;
86
87 // Prefactor of -dc_ in deterministic drift term
88 double mobility_;
89
90 };
91
92 #ifndef RPC_EXPLICIT_BD_STEP_TPP
93 // Suppress implicit instantiation
94 extern template class ExplicitBdStep<1>;
95 extern template class ExplicitBdStep<2>;
96 extern template class ExplicitBdStep<3>;
97 #endif
98
99}
100}
101#endif
Field of real double precision values on an FFT mesh.
Brownian dynamics simulator for PS-FTS.
BdStep is an abstract base class for Brownian dynamics steps.
BdSimulator< D > & simulator()
Get parent BdSimulator object.
System< D > & system()
Get parent System object.
Random & random()
Get Random number generator of parent System.
BdStep is an abstract base class for Brownian dynamics steps.
ExplicitBdStep(BdSimulator< D > &simulator)
Constructor.
virtual void setup()
Setup before simulation.
virtual void readParameters(std::istream &in)
Read required parameters from file.
virtual bool step()
Take a single Brownian dynamics step.
Dynamically allocatable contiguous array template.
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.