PSCF v1.4.0
EinsteinCrystalPerturbation.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 "EinsteinCrystalPerturbation.h"
9#include <rpg/fts/simulator/Simulator.h>
10#include <rpg/system/System.h>
11#include <rpg/solvers/Mixture.h>
12#include <rpg/field/Domain.h>
13#include <rpg/field/FieldIo.h>
14#include <rpg/field/WFields.h>
15#include <pscf/cuda/VecOp.h>
16#include <pscf/cuda/Reduce.h>
17
18#include <rp/fts/perturbation/EinsteinCrystalPerturbation.tpp>
19
20namespace Pscf {
21namespace Rpg {
22
23 // Constructor.
24 template <int D>
29
30}
31}
32
33// Explicit instantiation definitions
34namespace Pscf {
35 namespace Rp {
36 template class EinsteinCrystalPerturbation<1, Rpg::Types<1> >;
37 template class EinsteinCrystalPerturbation<2, Rpg::Types<2> >;
38 template class EinsteinCrystalPerturbation<3, Rpg::Types<3> >;
39 }
40 namespace Rpg {
41 template class EinsteinCrystalPerturbation<1>;
42 template class EinsteinCrystalPerturbation<2>;
43 template class EinsteinCrystalPerturbation<3>;
44 }
45}
Perturbation for Einstein crystal thermodynamic integration.
EinsteinCrystalPerturbation(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.