PSCF v1.4.0
SweepParameter.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 "SweepParameter.h"
9
10#include <rpg/system/System.h>
11#include <rpg/solvers/Mixture.h>
12#include <rpg/solvers/MixtureModifier.h>
13#include <rpg/solvers/Polymer.h>
14#include <rpg/solvers/Solvent.h>
15#include <rpg/solvers/Block.h>
16#include <rpg/field/Domain.h>
17
18#include <rp/scft/sweep/SweepParameter.tpp>
19
20namespace Pscf {
21namespace Rpg {
22
23 using namespace Util;
24 using namespace Pscf::Prdc;
25
26 /*
27 * Default constructor.
28 */
29 template <int D>
33
34 /*
35 * Constructor, creates association with system.
36 */
37 template <int D>
39 : Rp::SweepParameter< D, Types<D> >(system)
40 {}
41
42}
43}
44
45// Explicit instantiation definitions
46namespace Pscf {
47 namespace Rp {
48 template class SweepParameter<1, Rpg::Types<1> >;
49 template class SweepParameter<2, Rpg::Types<2> >;
50 template class SweepParameter<3, Rpg::Types<3> >;
51
52 }
53 namespace Rpg {
54 template class SweepParameter<1>;
55 template class SweepParameter<2>;
56 template class SweepParameter<3>;
57 }
58}
Class for storing data about an individual sweep parameter.
SweepParameter()
Default constructor.
Main class, representing a complete physical system.
List of aliases for types used in the Rpg program-level namespace.
Periodic fields and crystallography.
Definition complex.cpp:11
Class templates for real-valued periodic fields.
SCFT and PS-FTS with real periodic fields (GPU)
PSCF package top-level namespace.