PSCF v1.4.0
Perturbation.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 "Perturbation.h"
9#include <rpg/fts/simulator/Simulator.h>
10#include <prdc/cuda/RField.h>
11
12#include <rp/fts/perturbation/Perturbation.tpp> // base class implementation
13
14namespace Pscf {
15namespace Rpg {
16
17 /*
18 * Constructor.
19 */
20 template <int D>
24
25}
26}
27
28// Explicit instantiation definitions
29namespace Pscf {
30 namespace Rp {
31 template class Perturbation<1, Rpg::Types<1> >;
32 template class Perturbation<2, Rpg::Types<2> >;
33 template class Perturbation<3, Rpg::Types<3> >;
34 }
35 namespace Rpg {
36 template class Perturbation<1>;
37 template class Perturbation<2>;
38 template class Perturbation<3>;
39 }
40}
Types< D >::Simulator const & simulator() const
Additive perturbation of standard FTS Hamiltonian (base class).
Perturbation(Simulator< D > &simulator)
Constructor.
Field theoretic simulator (base class).
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.