PSCF v1.4.0
PerturbationDerivative.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 "PerturbationDerivative.h"
9#include <rpc/fts/perturbation/Perturbation.h>
10#include <rp/fts/analyzer/PerturbationDerivative.tpp>
11#include <rpc/system/System.h>
12#include <rpc/field/WFields.h>
13#include <rpc/field/CFields.h>
14#include <rpc/fts/simulator/Simulator.h>
15
16namespace Pscf {
17namespace Rpc {
18
19 // Constructor.
20 template <int D>
22 Simulator<D>& simulator,
23 System<D>& system)
24 : Rp::PerturbationDerivative< D, Types<D> >(simulator, system)
25 {}
26
27}
28}
29
30// Explicit instantiation definitions
31namespace Pscf {
32 namespace Rp {
33 template class PerturbationDerivative< 1, Rpc::Types<1> >;
34 template class PerturbationDerivative< 2, Rpc::Types<2> >;
35 template class PerturbationDerivative< 3, Rpc::Types<3> >;
36 }
37 namespace Rpc {
38 template class PerturbationDerivative<1>;
39 template class PerturbationDerivative<2>;
40 template class PerturbationDerivative<3>;
41 }
42}
Evaluate derivative of H w/ respect to perturbation parameter lambda.
PerturbationDerivative(Simulator< D > &simulator, System< D > &system)
Constructor.
Field theoretic simulator (base class).
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.