PSCF v1.2
rpg/fts/analyzer/AverageAnalyzer.tpp
1#ifndef RPG_AVERAGE_ANALYZER_TPP
2#define RPG_AVERAGE_ANALYZER_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 "AverageAnalyzer.h"
12
13#include <rpg/System.h>
14#include <rpg/fts/simulator/Simulator.h>
15
16#include <util/format/Int.h>
17#include <util/format/Dbl.h>
18#include <util/misc/FileMaster.h>
19#include <util/misc/ioUtil.h>
20
21namespace Pscf {
22namespace Rpg {
23
24 using namespace Util;
25
26 /*
27 * Constructor.
28 */
29 template <int D>
31 System<D>& system)
32 : Analyzer<D>(),
33 simulatorPtr_(&simulator),
34 systemPtr_(&system),
35 nSamplePerOutput_(1)
36 {}
37
38 /*
39 * Destructor.
40 */
41 template <int D>
44
45 /*
46 * Read interval, outputFileName, and nSamplePerOutput.
47 */
48 template <int D>
50 {
51 // Read interval and outputFileName
53
54 // Read nSamplePerOutput_
55 nSamplePerOutput_ = 1;
56 readOptional(in,"nSamplePerOutput", nSamplePerOutput_);
57 if (nSamplePerOutput_ > 0) {
58 std::string fileName = outputFileName(".dat");
59 system().fileMaster().openOutputFile(fileName, outputFile_);
60 }
61
62 // Set the Average accumulator to compute block averages
63 // for blocks containing nSamplePerOutput_ sampled values
64 accumulator_.setNSamplePerBlock(nSamplePerOutput_);
65 }
66
67 /*
68 * Setup before system.
69 */
70 template <int D>
72 { accumulator_.clear(); }
73
74 /*
75 * Compute and sample current values.
76 */
77 template <int D>
79 {
80 if (!isAtInterval(iStep)) return;
81
82 double value = compute();
83 accumulator_.sample(value);
84
85 // Output block averages
86 if (nSamplePerOutput_ > 0) {
87 if (accumulator_.isBlockComplete()) {
88 int beginStep = iStep - (nSamplePerOutput_ - 1)*interval();
89 value = accumulator_.blockAverage();
90 outputValue(beginStep, value);
91 }
92 }
93
94 }
95
96 /*
97 * Write a sampled or block average value to file.
98 */
99 template <int D>
100 void AverageAnalyzer<D>::outputValue(int step, double value)
101 {
102 UTIL_CHECK(outputFile_.is_open());
103 outputFile_ << Int(step);
104 outputFile_ << Dbl(value);
105 outputFile_ << "\n";
106 }
107
108 /*
109 * Output results after a system is completed.
110 */
111 template <int D>
113 {
114 // Close data file, if any
115 if (outputFile_.is_open()) {
116 outputFile_.close();
117 }
118 std::string fileName;
119
120 #if 0
121 // Write parameter (*.prm) file
122 fileName = outputFileName(".prm");
123 system().fileMaster().openOutputFile(fileName, outputFile_);
124 ParamComposite::writeParam(outputFile_);
125 outputFile_.close();
126 #endif
127
128 // Write average (*.ave) file
129 fileName = outputFileName(".ave");
130 system().fileMaster().openOutputFile(fileName, outputFile_);
131 double ave = accumulator_.average();
132 outputFile_ << "Average = ";
133 outputFile_ << Dbl(ave);
134 if (!simulator().hasRamp()) {
135 double err = accumulator_.blockingError();
136 outputFile_ << " +- " << Dbl(err, 10, 3);
137 }
138 outputFile_ << "\n";
139
140 // Write error analysis to file
141 if (!simulator().hasRamp()) {
142 outputFile_ << "\n";
143 std::string line;
144 line =
145 "-------------------------------------------------------------------";
146 outputFile_ << line << std::endl;
147 accumulator_.output(outputFile_);
148 outputFile_ << std::endl;
149 }
150
151 outputFile_.close();
152
153 }
154
155}
156}
157#endif
Abstract base for periodic output and/or analysis actions.
virtual void readParameters(std::istream &in)
Read parameters from archive.
virtual void readParameters(std::istream &in)
Read interval, outputFileName and (optionally) nSamplePerOutput.
virtual void sample(long iStep)
Compute a sampled value and update the accumulator.
AverageAnalyzer(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual void setup()
Setup before loop.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
virtual void output()
Write final results to file after a simulation.
Field theoretic simulator (base class).
Definition rpg/System.h:41
Main class for calculations that represent one system.
Definition rpg/System.h:107
Wrapper for a double precision number, for formatted ostream output.
Definition Dbl.h:40
Wrapper for an int, for formatted ostream output.
Definition Int.h:37
virtual void writeParam(std::ostream &out) const
Write all parameters to an output stream.
#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.