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