PSCF v1.2
rpg/fts/analyzer/AverageAnalyzer.h
1#ifndef RPG_AVERAGE_ANALYZER_H
2#define RPG_AVERAGE_ANALYZER_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 "Analyzer.h"
12#include <util/accumulators/Average.h> // member
13
14namespace Pscf {
15namespace Rpg {
16
17 template <int D> class System;
18 template <int D> class Simulator;
19
20 using namespace Util;
21
32 template <int D>
33 class AverageAnalyzer : public Analyzer<D>
34 {
35
36 public:
37
45
49 virtual ~AverageAnalyzer();
50
61 virtual void readParameters(std::istream& in);
62
68 virtual void setup();
69
75 virtual void sample(long iStep);
76
86 virtual void output();
87
95 int nSamplePerOutput() const;
96
99 using Analyzer<D>::interval;
100 using Analyzer<D>::isAtInterval;
102
103 protected:
104
105 using Analyzer<D>::setClassName;
106 using Analyzer<D>::readInterval;
108
112 virtual double compute() = 0;
113
120 virtual void outputValue(int step, double value);
121
126
130 System<D>& system();
131
132 // Output file stream
133 std::ofstream outputFile_;
134
137
138 private:
139
141 Simulator<D>* simulatorPtr_;
142
144 System<D>* systemPtr_;
145
147 int nSamplePerOutput_;
148
149 };
150
151 // Inline functions
152
153 // Get the parent Simulator.
154 template <int D>
156 { return *simulatorPtr_; }
157
158 // Get the parent System.
159 template <int D>
161 { return *systemPtr_; }
162
163 // Get nSamplePerOutput.
164 template <int D>
166 { return nSamplePerOutput_; }
167
168 #ifndef RPG_AVERAGE_ANALYZER_TPP
169 // Suppress implicit instantiation
170 extern template class AverageAnalyzer<1>;
171 extern template class AverageAnalyzer<2>;
172 extern template class AverageAnalyzer<3>;
173 #endif
174
175}
176}
177#endif
Abstract base for periodic output and/or analysis actions.
const std::string & outputFileName() const
Return outputFileName string.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
int interval() const
Get interval value.
void readInterval(std::istream &in)
Read interval from file, with error checking.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
Analyze averages and block averages of several real variables.
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 double compute()=0
Compute value of sampled quantity.
virtual void setup()
Setup before loop.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
int nSamplePerOutput() const
Get value of nSamplePerOutput.
Simulator< D > & simulator()
Return reference to parent simulator.
System< D > & system()
Return reference to parent system.
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
Calculates the average and variance of a sampled property.
Definition Average.h:44
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
void setClassName(const char *className)
Set class name string.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.