PSCF v1.2
rpg/fts/brownian/LMBdStep.h
1#ifndef RPG_LM_BD_STEP_H
2#define RPG_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/cuda/RField.h>
15#include <util/containers/DArray.h>
16#include <util/containers/DArray.h>
17
18namespace Pscf {
19namespace Rpg {
20
21 using namespace Util;
22 using namespace Pscf::Prdc;
23 using namespace Pscf::Prdc::Cuda;
24
41 template <int D>
42 class LMBdStep : public BdStep<D>
43 {
44
45 public:
46
53
59 virtual ~LMBdStep();
60
66 virtual void readParameters(std::istream &in);
67
71 virtual void setup();
72
78 virtual bool step();
79
80 protected:
81
82 using BdStep<D>::system;
83 using BdStep<D>::simulator;
84 using BdStep<D>::cudaRandom;
86
87 private:
88
89 // Private data members
90
91 // New field values
93
94 // Random displacements (A)
95 DArray< RField<D> > etaA_;
96
97 // Random displacements (B)
98 DArray< RField<D> > etaB_;
99
100 // Change in one field component
101 RField<D> dwc_;
102
103 // Pointer to new random displacements
104 DArray< RField<D> >* etaNewPtr_;
105
106 // Pointer to old random displacements
107 DArray< RField<D> >* etaOldPtr_;
108
109 // Normal-distributed random fields
110 RField<D> gaussianField_;
111
112 // Prefactor of -dc_ in deterministic drift term
113 double mobility_;
114
115 // Private member functions
116
117 RField<D>& etaNew(int i)
118 { return (*etaNewPtr_)[i]; }
119
120 RField<D>& etaOld(int i)
121 { return (*etaOldPtr_)[i]; }
122
124 void generateEtaNew();
125
127 void exchangeOldNew();
128
129 };
130
131 #ifndef RPG_LM_BD_STEP_TPP
132 // Suppress implicit instantiation
133 extern template class LMBdStep<1>;
134 extern template class LMBdStep<2>;
135 extern template class LMBdStep<3>;
136 #endif
137
138}
139}
140#endif
Field of real double precision values on an FFT mesh.
Brownian dynamics simulator.
BdStep is an abstract base class for Brownian dynamics steps.
System< D > & system()
Get parent System object.
CudaRandom & cudaRandom()
Get Random number generator of parent System.
BdSimulator< D > & simulator()
Get parent BdSimulator object.
Leimkuhler-Matthews Brownian dynamics stepper.
virtual bool step()
Take a single Brownian dynamics step.
virtual void setup()
Setup before simulation.
virtual void readParameters(std::istream &in)
Read required parameters from file.
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.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.