PSCF v1.2
rpg/scft/sweep/LinearSweep.tpp
1#ifndef RPG_LINEAR_SWEEP_TPP
2#define RPG_LINEAR_SWEEP_TPP
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 "LinearSweep.h"
12#include <rpg/System.h>
13#include <cstdio>
14
15namespace Pscf {
16namespace Rpg {
17
18 using namespace Util;
19
20 template <int D>
22 : Sweep<D>(system)
23 {}
24
25 template <int D>
26 void LinearSweep<D>::readParameters(std::istream& in)
27 {
28 // Call the base class's readParameters function.
30
31 // Read in the number of sweep parameters and allocate.
32 this->read(in, "nParameter", nParameter_);
33 parameters_.allocate(nParameter_);
34
35 // Set the pointer to the array of specialized parameter types for
36 // each SweepParameter object
37 for (int i = 0; i < nParameter_; ++i) {
38 parameters_[i].setParameterTypesArray(
39 SweepTmpl< BasisFieldState<D> >::parameterTypes_);
40 }
41
42 // Read in array of SweepParameters, calling << for each
43 this->template readDArray< SweepParameter<D> >(in, "parameters", parameters_, nParameter_);
44
45 // Verify net zero change in volume fractions if being swept
46 double sum = 0.0;
47 for (int i = 0; i < nParameter_; ++i) {
48 if (parameters_[i].type() == "phi_polymer" || parameters_[i].type() == "phi_solvent") {
49 sum += parameters_[i].change();
50 }
51 }
52 UTIL_CHECK(sum > -0.000001);
53 UTIL_CHECK(sum < 0.000001);
54 }
55
56 template <int D>
58 {
59 // Verify that the LinearSweep has a system pointer
60 UTIL_CHECK(hasSystem());
61
62 // Call base class's setup function
64
65 // Set system pointer and initial value for each parameter object
66 for (int i = 0; i < nParameter_; ++i) {
67 parameters_[i].setSystem(system());
68 parameters_[i].getInitial();
69 }
70 }
71
72 template <int D>
74 {
75 // Update the system parameter values
76 double newVal;
77 for (int i = 0; i < nParameter_; ++i) {
78 newVal = parameters_[i].initial() + s*parameters_[i].change();
79 parameters_[i].update(newVal);
80 }
81 }
82
83 template <int D>
84 void LinearSweep<D>::outputSummary(std::ostream& out)
85 {}
86
87}
88}
89
90#endif
FieldState for fields in symmetry-adapted basis format.
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
virtual void readParameters(std::istream &in)
Read parameters from param file.
virtual void setup()
Setup operation at the beginning of a sweep.
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
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.