Simpatico  v1.10
PerturbDerivative.cpp
1 #ifdef MCMD_PERTURB
2 /*
3 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
4 *
5 * Copyright 2010 - 2017, The Regents of the University of Minnesota
6 * Distributed under the terms of the GNU General Public License.
7 */
8 
9 #include "PerturbDerivative.h" // class header
10 #include <mcMd/perturb/Perturbation.h>
11 #include <util/misc/FileMaster.h>
12 
13 #include <cstdio>
14 
15 namespace McMd
16 {
17 
18  using namespace Util;
19 
20  /*
21  * Constructor.
22  */
24  : SystemAnalyzer<System>(system),
25  isInitialized_(false)
26  { setClassName("PerturbDerivative"); }
27 
28  /*
29  * Read parameters and initialize.
30  */
31  void PerturbDerivative::readParameters(std::istream& in)
32  {
33  readInterval(in);
35  read<int>(in,"nSamplePerBlock", nSamplePerBlock_);
36 
37  accumulator_.setNSamplePerBlock(nSamplePerBlock_);
38 
39  read<int>(in,"parameterIndex", parameterIndex_);
40 
41  // If nSamplePerBlock != 0, open an output file for block averages.
42  if (accumulator_.nSamplePerBlock()) {
43  fileMaster().openOutputFile(outputFileName(".dat"), outputFile_);
44  }
45 
46  isInitialized_ = true;
47  }
48 
49  /*
50  * Load internal state from archive.
51  */
53  {
55  loadParameter<int>(ar,"nSamplePerBlock", nSamplePerBlock_);
56  loadParameter<int>(ar,"parameterIndex", parameterIndex_);
57  ar & accumulator_;
58 
59  if (accumulator_.nSamplePerBlock()) {
60  fileMaster().openOutputFile(outputFileName(".dat"), outputFile_);
61  }
62  isInitialized_ = true;
63  }
64 
65  /*
66  * Save internal state to archive.
67  */
69  { ar & *this; }
70 
71  /*
72  * Clear accumulator.
73  */
75  {
76  if (!isInitialized_) {
77  UTIL_THROW("Object is not initialized");
78  }
79  accumulator_.clear();
80  }
81 
82 
83  /*
84  * Evaluate perturbation derivative, and add to accumulator.
85  */
86  void PerturbDerivative::sample(long iStep)
87  {
88  if (isAtInterval(iStep)) {
89  accumulator_.sample(system().perturbation().derivative(parameterIndex_), outputFile_);
90  }
91  }
92 
93  /*
94  * Output results to file after simulation is completed.
95  */
97  {
98  // If outputFile_ was used to write block averages, close it.
99  if (accumulator_.nSamplePerBlock()) {
100  outputFile_.close();
101  }
102 
103  fileMaster().openOutputFile(outputFileName(".prm"), outputFile_);
104  writeParam(outputFile_);
105  outputFile_.close();
106 
107  fileMaster().openOutputFile(outputFileName(".ave"), outputFile_);
108  accumulator_.output(outputFile_);
109  outputFile_.close();
110 
111  }
112 
113 }
114 #endif // ifdef MCMD_PERTURB
virtual void sample(long iStep)
Calculate, analyze and/or output a physical quantity.
void clear()
Clear all accumulators, set to empty initial state.
Definition: Average.cpp:42
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.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
virtual void loadParameters(Serializable::IArchive &ar)
Load internal state from an archive.
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.
PerturbDerivative(System &system)
Constructor.
void readInterval(std::istream &in)
Read interval from file, with error checking.
Utility classes for scientific computation.
Definition: accumulators.mod:1
Template for Analyzer associated with one System.
void output(std::ostream &out) const
Output final statistical properties to file.
Definition: Average.cpp:178
virtual void setup()
Clear accumulator.
void setNSamplePerBlock(int nSamplePerBlock)
Set nSamplePerBlock.
Definition: Average.cpp:63
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).
int nSamplePerBlock() const
Get number of samples per block average.
Definition: Average.h:220
void setClassName(const char *className)
Set class name string.
virtual void save(Serializable::OArchive &ar)
Save internal state to an archive.
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.
virtual void output()
Output results at end of simulation.
virtual void readParameters(std::istream &in)
Read parameters and initialize.