PSCF v1.4.0
PredCorrBdStep.cu
1/*
2* PSCF - Polymer Self-Consistent Field
3*
4* Copyright 2015 - 2025, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "PredCorrBdStep.h"
9#include <rpg/fts/brownian/BdSimulator.h>
10#include <rpg/fts/compressor/Compressor.h>
11#include <rpg/system/System.h>
12#include <rpg/solvers/Mixture.h>
13#include <rpg/field/Domain.h>
14#include <rpg/field/CFields.h>
15#include <rpg/field/WFields.h>
16
17#include <pscf/cuda/VecOp.h>
18#include <pscf/cuda/CudaVecRandom.h>
19#include <pscf/math/IntVec.h>
20
21#include <rp/fts/brownian/PredCorrBdStep.tpp> // base class implementation
22
23namespace Pscf {
24namespace Rpg {
25
26 // Constructor.
27 template <int D>
29 : Rp::PredCorrBdStep<D, Types<D> >(simulator)
30 {}
31
32}
33}
34
35// Explicit instantiation definitions
36namespace Pscf {
37 namespace Rp {
38 template class Rp::PredCorrBdStep<1, Rpg::Types<1> >;
39 template class Rp::PredCorrBdStep<2, Rpg::Types<2> >;
40 template class Rp::PredCorrBdStep<3, Rpg::Types<3> >;
41 }
42 namespace Rpg {
43 template class PredCorrBdStep<1>;
44 template class PredCorrBdStep<2>;
45 template class PredCorrBdStep<3>;
46 }
47}
Brownian dynamics simulator for PS-FTS.
Predictor-corrector Brownian dynamics time stepper.
PredCorrBdStep(BdSimulator< D > &simulator)
Constructor.
List of aliases for types used in the Rpg program-level namespace.
Class templates for real-valued periodic fields.
SCFT and PS-FTS with real periodic fields (GPU)
PSCF package top-level namespace.