PSCF v1.2
rpg/fts/brownian/PredCorrBdStep.h
1#ifndef RPG_PRED_CORR_BD_STEP_H
2#define RPG_PRED_CORR_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
29 template <int D>
30 class PredCorrBdStep : public BdStep<D>
31 {
32
33 public:
34
41
47 virtual ~PredCorrBdStep();
48
54 virtual void readParameters(std::istream &in);
55
59 virtual void setup();
60
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 // Predictor value of fields (monomer fields)
79
80 // Correctd (new) values of fields (monomer fields)
82
83 // Initial deterministic forces (components)
84 DArray< RField<D> > dci_;
85
86 // Random displacement components (components)
87 DArray< RField<D> > eta_;
88
89 // Change in one component of wc
90 RField<D> dwc_;
91
92 // Change in pressure field component
93 RField<D> dwp_;
94
95 // Prefactor of -dc_ in deterministic drift term
96 double mobility_;
97
98 };
99
100 #ifndef RPG_PRED_CORR_BD_STEP_TPP
101 // Suppress implicit instantiation
102 extern template class PredCorrBdStep<1>;
103 extern template class PredCorrBdStep<2>;
104 extern template class PredCorrBdStep<3>;
105 #endif
106
107}
108}
109#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.
Predictor-corrector Brownian dynamics stepper.
virtual void setup()
Setup before simulation.
virtual bool step()
Take a single Brownian dynamics step.
PredCorrBdStep(BdSimulator< D > &simulator)
Constructor.
virtual void readParameters(std::istream &in)
Read required parameters from file.
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.