PSCF v1.4.0
PredCorrBdStep.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 "PredCorrBdStep.h"
9#include <rpc/fts/brownian/BdSimulator.h>
10#include <rpc/fts/compressor/Compressor.h>
11#include <rpc/system/System.h>
12#include <rpc/solvers/Mixture.h>
13#include <rpc/field/Domain.h>
14#include <rpc/field/WFields.h>
15#include <rpc/field/CFields.h>
16#include <pscf/cpu/VecOp.h>
17#include <pscf/cpu/CpuVecRandom.h>
18#include <pscf/math/IntVec.h>
19
20#include <rp/fts/brownian/PredCorrBdStep.tpp> // base class implementation
21
22namespace Pscf {
23namespace Rpc {
24
25 // Constructor.
26 template <int D>
28 : Rp::PredCorrBdStep<D, Types<D> >(simulator)
29 {}
30
31}
32}
33
34// Explicit instantiation definitions
35namespace Pscf {
36 namespace Rp {
37 template class Rp::PredCorrBdStep<1, Rpc::Types<1> >;
38 template class Rp::PredCorrBdStep<2, Rpc::Types<2> >;
39 template class Rp::PredCorrBdStep<3, Rpc::Types<3> >;
40 }
41 namespace Rpc {
42 template class PredCorrBdStep<1>;
43 template class PredCorrBdStep<2>;
44 template class PredCorrBdStep<3>;
45 }
46}
Brownian dynamics simulator for PS-FTS.
Predictor-corrector Brownian dynamics time stepper.
PredCorrBdStep(BdSimulator< D > &simulator)
Constructor.
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.