PSCF v1.2
r1d/sweep/LinearSweep.cpp
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "LinearSweep.h"
9#include <r1d/System.h>
10#include <cstdio>
11
12namespace Pscf {
13namespace R1d {
14
15 using namespace Util;
16
18 : Sweep(system)
19 {}
20
21 void LinearSweep::readParameters(std::istream& in)
22 {
23 // Call the base class's readParameters function.
25
26 // Read in the number of sweep parameters and allocate.
27 read(in, "nParameter", nParameter_);
28 parameters_.allocate(nParameter_);
29
30 // Set the pointer to the array of specialized parameter types for
31 // each SweepParameter object
32 for (int i = 0; i < nParameter_; ++i) {
33 parameters_[i].setParameterTypesArray(
35 }
36
37 // Read in array of SweepParameters, calling << for each
38 readDArray< SweepParameter >(in, "parameters",
39 parameters_, nParameter_);
40
41 // Verify net zero change in volume fractions if being swept
42 double sum = 0.0;
43 for (int i = 0; i < nParameter_; ++i) {
44 if (parameters_[i].type() == "phi_polymer"
45 || parameters_[i].type() == "phi_solvent")
46 {
47 sum += parameters_[i].change();
48 }
49 }
50 UTIL_CHECK(sum > -0.000001);
51 UTIL_CHECK(sum < 0.000001);
52 }
53
55 {
56 // Call base class's setup function
58
59 // Set system pointer and initial value for each parameter object
60 for (int i = 0; i < nParameter_; ++i) {
61 parameters_[i].setSystem(system());
62 parameters_[i].getInitial();
63 }
64 }
65
67 {
68 // Update the system parameter values
69 double newVal;
70 for (int i = 0; i < nParameter_; ++i) {
71 newVal = parameters_[i].initial() + s*parameters_[i].change();
72 parameters_[i].update(newVal);
73 }
74 }
75
76 void LinearSweep::outputSummary(std::ostream& out)
77 {}
78
79}
80}
81
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.
virtual void readParameters(std::istream &in)
Read ns and baseFileName parameters.
virtual void setup()
Setup operation at beginning sweep.
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.
DArrayParam< Type > & readDArray(std::istream &in, const char *label, DArray< Type > &array, int n)
Add and read a required DArray < Type > parameter.
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
#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.