Simpatico  v1.10
BoundaryAverage.cpp
1 /*
2 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
3 *
4 * Copyright 2010 - 2017, The Regents of the University of Minnesota
5 * Distributed under the terms of the GNU General Public License.
6 */
7 
8 #include "BoundaryAverage.h"
9 #include <mcMd/simulation/Simulation.h>
10 #include <simp/species/Species.h>
11 #include <simp/boundary/Boundary.h>
12 #include <util/space/Dimension.h>
13 #include <util/space/Vector.h>
14 #include <util/archives/Serializable_includes.h>
15 
16 #include <util/global.h>
17 
18 namespace McMd
19 {
20 
21  using namespace Util;
22  using namespace Simp;
23 
24  /*
25  * Constructor.
26  */
28  : SystemAnalyzer<System>(system),
29  outputFile_(),
30  accumulators_(),
31  nSamplePerBlock_(-1),
32  isInitialized_(false)
33  { setClassName("BoundaryAverage"); }
34 
35  /*
36  * Read parameters from file, and allocate accumulators array.
37  */
38  void BoundaryAverage::readParameters(std::istream& in)
39  {
40  readInterval(in);
42  read<int>(in,"nSamplePerBlock", nSamplePerBlock_);
43 
44  accumulators_.allocate(Dimension+1);
45 
46  for (int i = 0; i < Dimension+1; ++i) {
47  accumulators_[i].setNSamplePerBlock(nSamplePerBlock_);
48  }
49 
50  // If nSamplePerBlock != 0, open an output file for block averages.
51  if (accumulators_[0].nSamplePerBlock()) {
52  fileMaster().openOutputFile(outputFileName(".dat"), outputFile_);
53  }
54 
55  isInitialized_ = true;
56  }
57 
58  /*
59  * Load state from an archive.
60  */
62  {
64  loadParameter<int>(ar,"nSamplePerBlock", nSamplePerBlock_);
65  ar & accumulators_;
66 
67  // If nSamplePerBlock != 0, open an output file for block averages.
68  if (accumulators_[0].nSamplePerBlock()) {
69  fileMaster().openOutputFile(outputFileName(".dat"), outputFile_);
70  }
71  isInitialized_ = true;
72  }
73 
74  /*
75  * Save state to archive.
76  */
78  { ar & *this; }
79 
80  /*
81  * Initialize at beginning of simulation.
82  */
84  {
85  if (!isInitialized_) {
86  UTIL_THROW("Error: object is not initialized");
87  }
88  for (int i = 0; i < Dimension+1; ++i) {
89  accumulators_[i].clear();
90  }
91 
92  }
93 
94  /*
95  * Evaluate volume and lengths of cell, add to ensemble.
96  */
97  void BoundaryAverage::sample(long iStep)
98  {
99  if (!isAtInterval(iStep)) return;
100 
101  Vector lengths;
102  double volume;
103 
104  lengths = system().boundary().lengths();
105  volume = system().boundary().volume();
106 
107  for (int i = 0; i < Dimension; ++i) {
108  accumulators_[i].sample(lengths[i], outputFile_);
109  }
110  accumulators_[3].sample(volume, outputFile_);
111 
112  }
113 
116  {
117  // If outputFile_ was used to write block averages, close it.
118  if (accumulators_[0].nSamplePerBlock()) {
119  outputFile_.close();
120  }
121 
122  // Echo parameters to a log file
123  fileMaster().openOutputFile(outputFileName(".prm"), outputFile_);
124  writeParam(outputFile_);
125  outputFile_.close();
126 
127  // Output statistical analysis to separate data file
128  fileMaster().openOutputFile(outputFileName(".ave"), outputFile_);
129  for (int i = 0; i < Dimension; ++i) {
130  accumulators_[i].output(outputFile_);
131  outputFile_ << std::endl;
132  }
133  outputFile_.close();
134 
135  }
136 
137 }
const int Dimension
Dimensionality of space.
Definition: Dimension.h:19
A Vector is a Cartesian vector.
Definition: Vector.h:75
BoundaryAverage(System &system)
Constructor.
double volume() const
Return unit cell volume.
const Vector & lengths() const
Get Vector of unit cell lengths by const reference.
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.
A set of interacting Molecules enclosed by a Boundary.
Definition: System.h:115
System & system()
Return reference to parent system.
virtual void sample(long iStep)
Evaluate volume and lengths of simulation cell, and add to ensemble.
File containing preprocessor macros for error handling.
Classes used by all simpatico molecular simulations.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
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
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 save(Serializable::OArchive &ar)
Save state to archive.
virtual void readParameters(std::istream &in)
Read parameters from file.
Template for Analyzer associated with one System.
virtual void output()
Output results to file after simulation is completed.
Boundary & boundary() const
Get the Boundary by reference.
Definition: System.h:1064
Saving archive for binary istream.
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
virtual void loadParameters(Serializable::IArchive &ar)
Load state from an archive.
virtual void setup()
Clear accumulator.
void setClassName(const char *className)
Set class name string.
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.