1 #ifndef MCMD_PRESSURE_AVERAGE_H 2 #define MCMD_PRESSURE_AVERAGE_H 11 #include <mcMd/analyzers/SystemAnalyzer.h> 12 #include <util/accumulators/Average.h> 13 #include <util/misc/FileMaster.h> 14 #include <util/archives/Serializable_includes.h> 31 template <
class SystemType>
50 virtual void readParameters(std::istream& in);
72 template <
class Archive>
73 void serialize(Archive& ar,
const unsigned int version);
83 virtual void sample(
long iStep);
88 virtual void output();
93 std::ofstream outputFile_;
119 template <
class SystemType>
124 nSamplePerBlock_(-1),
125 isInitialized_(false)
131 template <
class SystemType>
138 template <
class SystemType>
143 read(in,
"nSamplePerBlock", nSamplePerBlock_);
151 isInitialized_ =
true;
157 template <
class SystemType>
164 if (accumulator_.nSamplePerBlock() != nSamplePerBlock_) {
165 UTIL_THROW(
"Inconsistent values of nSamplePerBlock");
169 if (accumulator_.nSamplePerBlock()) {
172 isInitialized_ =
true;
179 template <
class SystemType>
186 template <
class SystemType>
187 template <
class Archive>
191 ar & nSamplePerBlock_;
198 template <
class SystemType>
201 if (!isInitialized_) {
204 accumulator_.
clear();
210 template <
class SystemType>
214 SystemType* systemPtr_ = &
system();
215 systemPtr_->computeStress(pressure);
217 accumulator_.
sample(pressure, outputFile_);
224 template <
class SystemType>
239 accumulator_.
output(outputFile_);
void clear()
Clear all accumulators, set to empty initial state.
Calculates the average and variance of a sampled property.
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.
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.
Saving / output archive for binary ostream.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
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.
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.
void setNSamplePerBlock(int nSamplePerBlock)
Set nSamplePerBlock.
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.
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.
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.