PSCF v1.2
rpg/fts/analyzer/AverageListAnalyzer.h
1#ifndef RPG_AVERAGE_LIST_ANALYZER_H
2#define RPG_AVERAGE_LIST_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
18 template <int D> class System;
19
20 using namespace Util;
21
32 template <int D>
33 class AverageListAnalyzer : public Analyzer<D>
34 {
35
36 public:
37
44
48 virtual ~AverageListAnalyzer();
49
59 virtual void readParameters(std::istream& in);
60
61 #if 0
67 virtual void loadParameters(Serializable::IArchive &ar);
68
74 virtual void save(Serializable::OArchive &ar);
75 #endif
76
80 virtual void clear();
81
87 virtual void setup();
88
94 virtual void sample(long iStep);
95
99 virtual void output();
100
108 int nSamplePerOutput() const;
109
113 int nValue() const;
114
122 const std::string& name(int i) const;
123
129 const Average& accumulator(int i) const;
130
135
136 using Analyzer<D>::interval;
137 using Analyzer<D>::isAtInterval;
141
142 protected:
143
144 using Analyzer<D>::setClassName;
145 using Analyzer<D>::readInterval;
146
154
160 void clearAccumulators();
161
170 void setName(int i, std::string name);
171
178 void setValue(int i, double value);
179
185 virtual void compute() = 0;
186
194 double value(int i) const;
195
201 void updateAccumulators(long iStep);
202
206 void outputAccumulators();
207
211 System<D>& system();
212
213 // Output file stream
214 std::ofstream outputFile_;
215
216 private:
217
219 DArray<Average> accumulators_;
220
222 DArray<double> values_;
223
225 DArray<std::string> names_;
226
228 int nSamplePerOutput_;
229
231 int nValue_;
232
234 bool hasAccumulators_;
235
236 };
237
238 // Inline functions
239
240 /*
241 * Get nSamplePerOutput.
242 */
243 template <int D>
245 { return nSamplePerOutput_; }
246
247 /*
248 * Get nValue (number of variables).
249 */
250 template <int D>
252 {
253 UTIL_CHECK(hasAccumulators_);
254 return nValue_;
255 }
256
257 /*
258 * Get current value of a variable, set by compute function.
259 */
260 template <int D>
261 inline double AverageListAnalyzer<D>::value(int i) const
262 {
263 UTIL_CHECK(hasAccumulators_);
264 UTIL_CHECK(i >= 0 && i < nValue_);
265 return values_[i];
266 }
267
268 /*
269 * Get name of specific variable.
270 */
271 template <int D>
272 inline const std::string& AverageListAnalyzer<D>::name(int i) const
273 {
274 UTIL_CHECK(hasAccumulators_);
275 UTIL_CHECK(i >= 0 && i < nValue_);
276 return names_[i];
277 }
278
279 /*
280 * Get accumulator associated with a variable.
281 */
282 template <int D>
284 {
285 UTIL_CHECK(hasAccumulators_);
286 UTIL_CHECK(i >= 0 && i < nValue_);
287 return accumulators_[i];
288 }
289
290 /*
291 * Set current value of a variable.
292 */
293 template <int D>
294 inline void AverageListAnalyzer<D>::setValue(int i, double value)
295 {
296 UTIL_CHECK(hasAccumulators_);
297 UTIL_CHECK(i >= 0 && i < nValue_);
298 values_[i] = value;
299 }
300
301 // Get the parent system.
302 template <int D>
304 { return *systemPtr_; }
305
306 #ifndef RPG_AVERAGE_LIST_ANALYZER_TPP
307 // Suppress implicit instantiation
308 extern template class AverageListAnalyzer<1>;
309 extern template class AverageListAnalyzer<2>;
310 extern template class AverageListAnalyzer<3>;
311 #endif
312
313}
314}
315#endif
Abstract base for periodic output and/or analysis actions.
const std::string & outputFileName() const
Return outputFileName string.
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.
AverageListAnalyzer(System< D > &system)
Constructor.
System< D > * systemPtr_
Pointer to the parent system.
void setName(int i, std::string name)
Set name of variable.
virtual void readParameters(std::istream &in)
Read interval, outputFileName and (optionally) nSamplePerOutput.
void setValue(int i, double value)
Set current value, used by compute function.
void outputAccumulators()
Write results of statistical analysis to files.
System< D > & system()
Return reference to parent system.
void clearAccumulators()
Clear internal state of the accumulator.
virtual void compute()=0
Compute value of sampled quantity.
const Average & accumulator(int i) const
Get Average accumulator for a specific value.
const std::string & name(int i) const
Get name associated with value.
int nSamplePerOutput() const
Get value of nSamplePerOutput.
void updateAccumulators(long iStep)
Add current value to accumulator, output block average if needed.
void initializeAccumulators(int nValue)
Instantiate Average accumulators and set nSamplePerOutput set nValue.
virtual void sample(long iStep)
Compute a sampled value and update the accumulator.
double value(int i) const
Get current value of a specific variable.
virtual void output()
Write final results to file after a simulation.
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
Loading (input) archive for binary istream.
Saving / output archive for binary ostream.
Dynamically allocatable contiguous array template.
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.
virtual void save(Serializable::OArchive &ar)
Saves all parameters to an archive.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
virtual void loadParameters(Serializable::IArchive &ar)
Load state from archive, without adding Begin and End lines.
#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.