PSCF v1.2
rpg/fts/brownian/ExplicitBdStep.h
1#ifndef RPG_EXPLICIT_BD_STEP_H
2#define RPG_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/cuda/RField.h>
15#include <util/containers/DArray.h>
16
17namespace Pscf {
18namespace Rpg {
19
20 using namespace Util;
21 using namespace Pscf::Prdc;
22 using namespace Pscf::Prdc::Cuda;
23
31 template <int D>
32 class ExplicitBdStep : public BdStep<D>
33 {
34
35 public:
36
43
49 virtual ~ExplicitBdStep();
50
56 virtual void readParameters(std::istream &in);
57
61 virtual void setup();
62
66 virtual bool step();
67
68 protected:
69
70 using BdStep<D>::system;
71 using BdStep<D>::simulator;
72 using BdStep<D>::cudaRandom;
74
75 private:
76
77 // Local copy of w fields
79
80 // Change in one component of wc
81 RField<D> dwc_;
82
84 RField<D> gaussianField_;
85
86 // Prefactor of -dc_ in deterministic drift term
87 double mobility_;
88
89 };
90
91 #ifndef RPG_EXPLICIT_BD_STEP_TPP
92 // Suppress implicit instantiation
93 extern template class ExplicitBdStep<1>;
94 extern template class ExplicitBdStep<2>;
95 extern template class ExplicitBdStep<3>;
96 #endif
97
98}
99}
100#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.
BdStep is an abstract base class for Brownian dynamics steps.
virtual bool step()
Take a single Brownian dynamics step.
virtual void readParameters(std::istream &in)
Read required parameters from file.
ExplicitBdStep(BdSimulator< D > &simulator)
Constructor.
virtual void setup()
Setup before simulation.
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.