Simpatico  v1.10
PressureAverage.h
1 #ifndef MCMD_PRESSURE_AVERAGE_H
2 #define MCMD_PRESSURE_AVERAGE_H
3 
4 /*
5 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
6 *
7 * Copyright 2010 - 2017, The Regents of the University of Minnesota
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 #include <mcMd/analyzers/SystemAnalyzer.h> // base class template
12 #include <util/accumulators/Average.h> // member
13 #include <util/misc/FileMaster.h>
14 #include <util/archives/Serializable_includes.h>
15 
16 #include <cstdio>
17 
18 namespace McMd
19 {
20 
21  using namespace Util;
22 
31  template <class SystemType>
32  class PressureAverage : public SystemAnalyzer<SystemType>
33  {
34 
35  public:
36 
40  PressureAverage(SystemType& system);
41 
45  ~PressureAverage();
46 
50  virtual void readParameters(std::istream& in);
51 
57  virtual void loadParameters(Serializable::IArchive& ar);
58 
64  virtual void save(Serializable::OArchive& ar);
65 
72  template <class Archive>
73  void serialize(Archive& ar, const unsigned int version);
74 
78  virtual void setup();
79 
80  /*
81  * Evaluate energy per particle, and add to ensemble.
82  */
83  virtual void sample(long iStep);
84 
88  virtual void output();
89 
90  private:
91 
93  std::ofstream outputFile_;
94 
96  Average accumulator_;
97 
99  int nSamplePerBlock_;
100 
102  bool isInitialized_;
103 
113 
114  };
115 
116  /*
117  * Constructor.
118  */
119  template <class SystemType>
121  : SystemAnalyzer<SystemType>(system),
122  outputFile_(),
123  accumulator_(),
124  nSamplePerBlock_(-1),
125  isInitialized_(false)
126  {}
127 
128  /*
129  * Destructor.
130  */
131  template <class SystemType>
133  {}
134 
135  /*
136  * Read parameters and initialize.
137  */
138  template <class SystemType>
140  {
141  readInterval(in);
142  readOutputFileName(in);
143  read(in,"nSamplePerBlock", nSamplePerBlock_);
144 
145  accumulator_.setNSamplePerBlock(nSamplePerBlock_);
146 
147  // Open output file for block averages, if nSamplePerBlock != 0.
148  if (accumulator_.nSamplePerBlock()) {
149  fileMaster().openOutputFile(outputFileName(".dat"), outputFile_);
150  }
151  isInitialized_ = true;
152  }
153 
154  /*
155  * Load state from an archive.
156  */
157  template <class SystemType>
159  {
161  loadParameter(ar, "nSamplePerBlock", nSamplePerBlock_);
162  ar & accumulator_;
163 
164  if (accumulator_.nSamplePerBlock() != nSamplePerBlock_) {
165  UTIL_THROW("Inconsistent values of nSamplePerBlock");
166  }
167 
168  // Open output file for block averages, if nSamplePerBlock != 0.
169  if (accumulator_.nSamplePerBlock()) {
170  fileMaster().openOutputFile(outputFileName(".dat"), outputFile_);
171  }
172  isInitialized_ = true;
173  }
174 
175 
176  /*
177  * Save state to archive.
178  */
179  template <class SystemType>
181  { ar & *this; }
182 
183  /*
184  * Serialize to/from an archive.
185  */
186  template <class SystemType>
187  template <class Archive>
188  void PressureAverage<SystemType>::serialize(Archive& ar, const unsigned int version)
189  {
190  Analyzer::serialize(ar, version);
191  ar & nSamplePerBlock_;
192  ar & accumulator_;
193  }
194 
195  /*
196  * Set up immediately before simulation.
197  */
198  template <class SystemType>
200  {
201  if (!isInitialized_) {
202  UTIL_THROW("Object not initialized");
203  }
204  accumulator_.clear();
205  }
206 
207  /*
208  * Evaluate pressure, and add to accumulator.
209  */
210  template <class SystemType>
212  {
213  double pressure;
214  SystemType* systemPtr_ = &system();
215  systemPtr_->computeStress(pressure);
216  if (isAtInterval(iStep)) {
217  accumulator_.sample(pressure, outputFile_);
218  }
219  }
220 
221  /*
222  * Output results to file after simulation is completed.
223  */
224  template <class SystemType>
226  {
227  // If outputFile_ was used to write block averages, close it.
228  if (accumulator_.nSamplePerBlock()) {
229  outputFile_.close();
230  }
231 
232  // Write parameters to *.prm file
233  fileMaster().openOutputFile(outputFileName(".prm"), outputFile_);
234  writeParam(outputFile_);
235  outputFile_.close();
236 
237  // Write average and variance to *.ave file
238  fileMaster().openOutputFile(outputFileName(".ave"), outputFile_);
239  accumulator_.output(outputFile_);
240  outputFile_.close();
241 
242  }
243 
244 }
245 #endif
void clear()
Clear all accumulators, set to empty initial state.
Definition: Average.cpp:42
Calculates the average and variance of a sampled property.
Definition: Average.h:43
virtual void readParameters(std::istream &in)
Read parameters and initialize.
virtual void setup()
Set up before simulation.
void openOutputFile(const std::string &filename, std::ofstream &out, std::ios_base::openmode mode=std::ios_base::out) const
Open an output file.
Definition: FileMaster.cpp:290
virtual void loadParameters(Serializable::IArchive &ar)
Load parameters from archive.
virtual void save(Serializable::OArchive &ar)
Save state to archive.
SystemType & system()
Return reference to parent system.
~PressureAverage()
Destructor.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
void serialize(Archive &ar, PairSelector &selector, const unsigned int version)
Serialize a PairSelector.
Definition: PairSelector.h:167
Saving / output archive for binary ostream.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition: global.h:51
void serialize(Archive &ar, const unsigned int version)
Serialize to/from an archive.
virtual void writeParam(std::ostream &out)
Write all parameters to an output stream.
void readInterval(std::istream &in)
Read interval from file, with error checking.
Utility classes for scientific computation.
Definition: accumulators.mod:1
virtual void loadParameters(Serializable::IArchive &ar)
Load state from an archive.
ScalarParam< Type > & loadParameter(Serializable::IArchive &ar, const char *label, Type &value, bool isRequired)
Add and load a new ScalarParam < Type > object.
Template for Analyzer associated with one System.
void output(std::ostream &out) const
Output final statistical properties to file.
Definition: Average.cpp:178
void setNSamplePerBlock(int nSamplePerBlock)
Set nSamplePerBlock.
Definition: Average.cpp:63
PressureAverage evaluates average pressure.
virtual void sample(long iStep)
Calculate, analyze and/or output a physical quantity.
Saving archive for binary istream.
void sample(double value)
Add a sampled value to the ensemble.
Definition: Average.cpp:94
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
PressureAverage(SystemType &system)
Constructor.
void serialize(Archive &ar, const unsigned int version)
Serialize to/from an archive.
int nSamplePerBlock() const
Get number of samples per block average.
Definition: Average.h:220
FileMaster & fileMaster()
Get the FileMaster by reference.
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
const std::string & outputFileName() const
Return outputFileName string.
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
virtual void output()
Output results at end of simulation.