PSCF v1.2
rpc/fts/brownian/LMBdStep.h
1#ifndef RPC_LM_BD_STEP_H
2#define RPC_LM_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
47 template <int D>
48 class LMBdStep : public BdStep<D>
49 {
50
51 public:
52
59
65 virtual ~LMBdStep();
66
72 virtual void readParameters(std::istream &in);
73
77 virtual void setup();
78
84 virtual bool step();
85
86 protected:
87
88 using BdStep<D>::system;
89 using BdStep<D>::simulator;
90 using BdStep<D>::random;
92
93 private:
94
95 // Private data members
96
97 // New field values
99
100 // Random displacements (A)
101 DArray< RField<D> > etaA_;
102
103 // Random displacements (B)
104 DArray< RField<D> > etaB_;
105
106 // Change in one field component
107 RField<D> dwc_;
108
109 // Pointer to new random displacements
110 DArray< RField<D> >* etaNewPtr_;
111
112 // Pointer to old random displacements
113 DArray< RField<D> >* etaOldPtr_;
114
115 // Prefactor of -dc_ in deterministic drift term
116 double mobility_;
117
118 // Private member functions
119
120 RField<D>& etaNew(int i)
121 { return (*etaNewPtr_)[i]; }
122
123 RField<D>& etaOld(int i)
124 { return (*etaOldPtr_)[i]; }
125
127 void generateEtaNew();
128
130 void exchangeOldNew();
131
132 };
133
134 #ifndef RPC_LM_BD_STEP_TPP
135 // Suppress implicit instantiation
136 extern template class LMBdStep<1>;
137 extern template class LMBdStep<2>;
138 extern template class LMBdStep<3>;
139 #endif
140
141}
142}
143#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.
Leimkuhler-Matthews Brownian dynamics stepper.
virtual bool step()
Take a single Brownian dynamics step.
virtual void readParameters(std::istream &in)
Read required parameters from file.
virtual void setup()
Setup before simulation.
LMBdStep(BdSimulator< D > &simulator)
Constructor.
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.