PSCF v1.2
rpg/scft/sweep/LinearSweep.h
1#ifndef RPG_LINEAR_SWEEP_H
2#define RPG_LINEAR_SWEEP_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "Sweep.h" // base class
12#include "SweepParameter.h" // member
13#include <util/global.h>
14#include <iostream>
15
16namespace Pscf {
17namespace Rpg {
18
19 template <int D> class System;
20
21 using namespace Util;
22 using namespace Pscf::Prdc;
23 using namespace Pscf::Prdc::Cuda;
24
31 template <int D>
32 class LinearSweep : public Sweep<D>
33 {
34 public:
35
41
47 void readParameters(std::istream& in);
48
53 void setup();
54
61 void setParameters(double s);
62
68 void outputSummary(std::ostream& out);
69
70 protected:
71
72 using Sweep<D>::system;
73 using Sweep<D>::hasSystem;
75
76 private:
78 int nParameter_;
79
81 DArray< SweepParameter<D> > parameters_;
82
83 };
84
85 #ifndef RPG_LINEAR_SWEEP_TPP
86 // Suppress implicit instantiation
87 extern template class LinearSweep<1>;
88 extern template class LinearSweep<2>;
89 extern template class LinearSweep<3>;
90 #endif
91
92}
93}
94#endif
FieldState for fields in symmetry-adapted basis format.
Base class for a sweep in parameter space where parameters change linearly with the sweep variable.
void setup()
Setup operation at the beginning of a sweep.
void outputSummary(std::ostream &out)
Output data to a running summary.
void setParameters(double s)
Set the state before an iteration.
void readParameters(std::istream &in)
Read parameters from param file.
LinearSweep(System< D > &system)
Constructor.
Solve a sequence of problems along a line in parameter space.
Definition rpg/System.h:39
bool hasSystem()
Has an association with the parent System been set?
System< D > & system()
Return the parent system by reference.
Main class for calculations that represent one system.
Definition rpg/System.h:107
Solve a sequence of problems along a path through parameter space.
Definition SweepTmpl.h:28
GArray< ParameterType > parameterTypes_
Definition SweepTmpl.h:105
Dynamically allocatable contiguous array template.
File containing preprocessor macros for error handling.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.