PSCF v1.4.0
StepLogger.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 "StepLogger.h"
9#include <rp/fts/analyzer/StepLogger.tpp>
10
11namespace Pscf {
12namespace Rpg {
13
14 // Constructor.
15 template <int D>
17 : Rp::StepLogger< D, Types<D> >(simulator, system)
18 {}
19
20}
21}
22
23// Explicit instantiation definitions
24namespace Pscf {
25 namespace Rp {
26 template class StepLogger< 1, Rpg::Types<1> >;
27 template class StepLogger< 2, Rpg::Types<2> >;
28 template class StepLogger< 3, Rpg::Types<3> >;
29 }
30 namespace Rpg {
31 template class StepLogger<1>;
32 template class StepLogger<2>;
33 template class StepLogger<3>;
34 }
35}
Field theoretic simulator (base class).
Periodically write the step index to a log file.
StepLogger(Simulator< D > &simulator, System< D > &system)
Constructor.
Definition StepLogger.cu:16
Main class, representing a complete physical system.
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.