PSCF v1.2
rpc/fts/analyzer/AverageListAnalyzer.h
1#ifndef RPC_AVERAGE_LIST_ANALYZER_H
2#define RPC_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 Rpc
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
239 // Inline functions
240
241 /*
242 * Get nSamplePerOutput.
243 */
244 template <int D>
246 { return nSamplePerOutput_; }
247
248 /*
249 * Get nValue (number of variables).
250 */
251 template <int D>
253 {
254 UTIL_CHECK(hasAccumulators_);
255 return nValue_;
256 }
257
258 /*
259 * Get current value of a variable, set by compute function.
260 */
261 template <int D>
262 inline double AverageListAnalyzer<D>::value(int i) const
263 {
264 UTIL_CHECK(hasAccumulators_);
265 UTIL_CHECK(i >= 0 && i < nValue_);
266 return values_[i];
267 }
268
269 /*
270 * Get name of specific variable.
271 */
272 template <int D>
273 inline const std::string& AverageListAnalyzer<D>::name(int i) const
274 {
275 UTIL_CHECK(hasAccumulators_);
276 UTIL_CHECK(i >= 0 && i < nValue_);
277 return names_[i];
278 }
279
280 /*
281 * Get accumulator associated with a variable.
282 */
283 template <int D>
285 {
286 UTIL_CHECK(hasAccumulators_);
287 UTIL_CHECK(i >= 0 && i < nValue_);
288 return accumulators_[i];
289 }
290
291 /*
292 * Set current value of a variable.
293 */
294 template <int D>
295 inline void AverageListAnalyzer<D>::setValue(int i, double value)
296 {
297 UTIL_CHECK(hasAccumulators_);
298 UTIL_CHECK(i >= 0 && i < nValue_);
299 values_[i] = value;
300 }
301
302 // Get the parent system.
303 template <int D>
305 { return *systemPtr_; }
306
307 #ifndef RPC_AVERAGE_LIST_ANALYZER_TPP
308 // Suppress implicit instantiation
309 extern template class AverageListAnalyzer<1>;
310 extern template class AverageListAnalyzer<2>;
311 extern template class AverageListAnalyzer<3>;
312 #endif
313
314}
315}
316#endif
Abstract base for periodic output and/or analysis actions.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
void readInterval(std::istream &in)
Optionally read interval from file, with error checking.
const std::string & outputFileName() const
Return outputFileName string.
int interval() const
Get interval value.
Analyze averages and block averages of several real variables.
void updateAccumulators(long iStep)
Add current value to accumulator, output block average if needed.
void clearAccumulators()
Clear internal state of the accumulator.
int nSamplePerOutput() const
Get value of nSamplePerOutput.
const Average & accumulator(int i) const
Get Average accumulator for a specific value.
void initializeAccumulators(int nValue)
Instantiate Average accumulators and set nSamplePerOutput set nValue.
virtual void output()
Write final results to file after a simulation.
double value(int i) const
Get current value of a specific variable.
const std::string & name(int i) const
Get name associated with value.
System< D > & system()
Return reference to parent system.
virtual void compute()=0
Compute value of sampled quantity.
void setName(int i, std::string name)
Set name of variable.
virtual void sample(long iStep)
Compute a sampled value and update the accumulator.
System< D > * systemPtr_
Pointer to the parent system.
AverageListAnalyzer(System< D > &system)
Constructor.
void outputAccumulators()
Write results of statistical analysis to files.
void setValue(int i, double value)
Set current value, used by compute function.
virtual void readParameters(std::istream &in)
Read interval, outputFileName and (optionally) nSamplePerOutput.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
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.