PSCF v1.4.0
Analyzer.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 "Analyzer.h"
9#include <rp/fts/analyzer/Analyzer.tpp>
10
11// Subclass constructor definition
12namespace Pscf {
13 namespace Rpg {
14
15 /*
16 * Constructor.
17 */
18 template <int D>
22
23 }
24}
25
26// Explicit instantiation declarations
27namespace Pscf {
28 namespace Rp {
29 template class Analyzer<1, Rpg::Simulator<1>, Rpg::System<1> >;
30 template class Analyzer<2, Rpg::Simulator<2>, Rpg::System<2> >;
31 template class Analyzer<3, Rpg::Simulator<3>, Rpg::System<3> >;
32 }
33 namespace Rpg {
34 template class Analyzer<1>;
35 template class Analyzer<2>;
36 template class Analyzer<3>;
37 }
38}
Abstract base for periodic output and/or analysis actions.
Analyzer(Simulator< D > &simulator, System< D > &system)
Constructor.
Definition Analyzer.cu:19
Field theoretic simulator (base class).
Main class, representing a complete physical system.
Class templates for real-valued periodic fields.
SCFT and PS-FTS with real periodic fields (GPU)
PSCF package top-level namespace.