PSCF v1.2
rpc/fts/brownian/PredCorrBdStep.h
1#ifndef RPC_PRED_CORR_BD_STEP_H
2#define RPC_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/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
31 template <int D>
32 class PredCorrBdStep : public BdStep<D>
33 {
34
35 public:
36
43
49 virtual ~PredCorrBdStep();
50
56 virtual void readParameters(std::istream &in);
57
61 virtual void setup();
62
68 virtual bool step();
69
70 protected:
71
72 using BdStep<D>::system;
73 using BdStep<D>::simulator;
74 using BdStep<D>::random;
76
77 private:
78
79 // Predictor value of fields (monomer fields)
81
82 // Corrected (final) values of fields (monomer fields)
84
85 // Initial deterministic forces (eigenvector components)
86 DArray< RField<D> > dci_;
87
88 // Random displacement components (eigenvector components)
89 DArray< RField<D> > eta_;
90
91 // Change in one component of wc
92 RField<D> dwc_;
93
94 // Change in pressure field component
95 RField<D> dwp_;
96
97 // Prefactor of -dc_ in deterministic drift term
98 double mobility_;
99 };
100
101 #ifndef RPC_PRED_CORR_BD_STEP_TPP
102 // Suppress implicit instantiation
103 extern template class PredCorrBdStep<1>;
104 extern template class PredCorrBdStep<2>;
105 extern template class PredCorrBdStep<3>;
106 #endif
107
108}
109}
110#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.
Predictor-corrector Brownian dynamics stepper.
virtual void readParameters(std::istream &in)
Read required parameters from file.
virtual void setup()
Setup before simulation.
virtual bool step()
Take a single Brownian dynamics step.
PredCorrBdStep(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.