PSCF v1.2
r1d/sweep/LinearSweep.h
1#ifndef R1D_LINEAR_SWEEP_H
2#define R1D_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/containers/DArray.h>
14#include <util/global.h>
15#include <iostream>
16
17namespace Pscf {
18namespace R1d {
19
20 class System;
21
22 using namespace Util;
23
31 class LinearSweep : public Sweep
32 {
33 public:
34
40
46 void readParameters(std::istream& in);
47
52 void setup();
53
60 void setParameters(double s);
61
67 void outputSummary(std::ostream& out);
68
69 protected:
70
71 using Sweep::system;
73
74 private:
75
77 int nParameter_;
78
80 DArray< SweepParameter > parameters_;
81
82 };
83
84}
85}
86#endif
Base class for a sweep in parameter space where parameters change linearly with the sweep variable.
void readParameters(std::istream &in)
Read parameters from param file.
void outputSummary(std::ostream &out)
Output data to a running summary.
void setParameters(double s)
Set the state before an iteration.
LinearSweep(System &system)
Constructor.
void setup()
Setup operation at the beginning of a sweep.
Solve a sequence of problems along a line in parameter space.
const System & system() const
Get parent System by reference.
Main class in SCFT simulation of one system.
Definition r1d/System.h:65
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.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.