PSCF v1.4.0
BdSimulator.cpp
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 "BdSimulator.h"
9#include <rpc/fts/brownian/BdStep.h>
10#include <rpc/fts/brownian/BdStepFactory.h>
11#include <rpc/fts/analyzer/AnalyzerManager.h>
12#include <rpc/fts/analyzer/AnalyzerFactory.h>
13#include <rpc/fts/trajectory/TrajectoryReader.h>
14#include <rpc/fts/trajectory/TrajectoryReaderFactory.h>
15#include <rpc/fts/simulator/Simulator.h>
16#include <rpc/fts/compressor/Compressor.h>
17#include <rpc/fts/perturbation/Perturbation.h>
18#include <rpc/fts/ramp/Ramp.h>
19#include <rpc/system/System.h>
20#include <rpc/field/Domain.h>
21#include <rpc/field/WFields.h>
22#include <rpc/field/CFields.h>
23#include <prdc/cpu/RField.h>
24#include <pscf/cpu/CpuVecRandom.h>
25
26#include <rp/fts/brownian/BdSimulator.tpp> // base class implementation
27
28namespace Pscf {
29 namespace Rpc {
30
31 // Constructor.
32 template <int D>
34 : Rp::BdSimulator<D, Types<D> >(system, *this)
35 {}
36
37 }
38}
39
40// Explicit instantiation definitions
41namespace Pscf {
42 namespace Rp {
43 template class BdSimulator<1, Rpc::Types<1> >;
44 template class BdSimulator<2, Rpc::Types<2> >;
45 template class BdSimulator<3, Rpc::Types<3> >;
46 }
47 namespace Rpc {
48 template class BdSimulator<1>;
49 template class BdSimulator<2>;
50 template class BdSimulator<3>;
51 }
52}
Brownian dynamics simulator for PS-FTS.
BdSimulator(System< D > &system)
Constructor.
A complete physical system.
Aliases for types used in the Rpc program-level namespace.
Class templates for real-valued periodic fields.
Real periodic fields, SCFT and PS-FTS (CPU).
Definition param_pc.dox:2
PSCF package top-level namespace.