PSCF v1.4.0
Perturbation.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 "Perturbation.h"
9#include <rpc/fts/simulator/Simulator.h>
10#include <prdc/cpu/RField.h>
11
12#include <rp/fts/perturbation/Perturbation.tpp> // base class implementation
13
14namespace Pscf {
15namespace Rpc {
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, Rpc::Types<1> >;
32 template class Perturbation<2, Rpc::Types<2> >;
33 template class Perturbation<3, Rpc::Types<3> >;
34 }
35 namespace Rpc {
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).
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.