PSCF v1.4.0
LMBdStep.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 "LMBdStep.h" // class header
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/CudaVecRandom.h>
18#include <pscf/cuda/VecOp.h>
19
20#include <rp/fts/brownian/LMBdStep.tpp> // base class implementation
21
22namespace Pscf {
23namespace Rpg {
24
25 // Constructor.
26 template <int D>
28 : Rp::LMBdStep<D, Types<D> >(simulator)
29 {}
30
31}
32}
33
34// Explicit instantiation definitions
35namespace Pscf {
36 namespace Rp {
37 template class Rp::LMBdStep<1, Rpg::Types<1> >;
38 template class Rp::LMBdStep<2, Rpg::Types<2> >;
39 template class Rp::LMBdStep<3, Rpg::Types<3> >;
40 }
41 namespace Rpg {
42 template class LMBdStep<1>;
43 template class LMBdStep<2>;
44 template class LMBdStep<3>;
45 }
46}
Brownian dynamics simulator for PS-FTS.
Leimkuhler-Mathews Brownian dynamics time stepper.
LMBdStep(BdSimulator< D > &simulator)
Constructor.
Definition LMBdStep.cu:27
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.