PSCF v1.4.0
CFields.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 "CFields.h" // class header
9#include <rp/field/CFields.tpp> // base class implementation
10
11// Explicit instantiation definitions
12namespace Pscf {
13 namespace Rp {
14 using namespace Prdc::Cuda;
15 template class CFields<1, RField<1>, Rpg::FieldIo<1> >;
16 template class CFields<2, RField<2>, Rpg::FieldIo<2> >;
17 template class CFields<3, RField<3>, Rpg::FieldIo<3> >;
18 }
19 namespace Rpg {
20 template class CFields<1>;
21 template class CFields<2>;
22 template class CFields<3>;
23 }
24}
A list of c fields stored in both basis and r-grid format.
A list of c fields stored in both basis and r-grid format.
Class templates for real-valued periodic fields.
SCFT and PS-FTS with real periodic fields (GPU)
PSCF package top-level namespace.