1 #ifndef MCMD_INTRA_BOND_TENSOR_AUTO_CORR_INC_H 2 #define MCMD_INTRA_BOND_TENSOR_AUTO_CORR_INC_H 11 #include "IntraBondTensorAutoCorr.h" 12 #include <mcMd/simulation/Simulation.h> 13 #include <simp/species/Species.h> 14 #include <mcMd/chemistry/Molecule.h> 15 #include <mcMd/chemistry/Bond.h> 16 #include <mcMd/chemistry/Atom.h> 17 #include <simp/boundary/Boundary.h> 18 #include <util/misc/FileMaster.h> 30 template <
class SystemType>
45 template <
class SystemType>
52 template <
class SystemType>
58 read(in,
"speciesId", speciesId_);
59 read(in,
"capacity", capacity_);
64 if (speciesId_ >=
system().simulation().nSpecies())
69 speciesPtr_ = &
system().simulation().species(speciesId_);
70 nBond_ = speciesPtr_->
nBond();
71 if (nBond_ <= 0)
UTIL_THROW(
"Number of bonds per molecule <= 0");
74 int speciesCapacity = speciesPtr_->
capacity();
75 if (speciesCapacity <= 0)
UTIL_THROW(
"Species capacity <= 0");
76 data_.allocate(speciesCapacity);
77 accumulator_.setParam(speciesCapacity, capacity_);
82 isInitialized_ =
true;
88 template <
class SystemType>
102 if (speciesId_ >=
system().simulation().nSpecies()) {
105 if (capacity_ <= 0) {
109 UTIL_THROW(
"Number of bonds per molecule <= 0");
111 speciesPtr_ = &
system().simulation().species(speciesId_);
112 if (nBond_ != speciesPtr_->
nBond()) {
117 int speciesCapacity = speciesPtr_->
capacity();
118 if (speciesCapacity <= 0) {
121 data_.allocate(speciesCapacity);
123 isInitialized_ =
true;
129 template <
class SystemType>
137 template <
class SystemType>
140 if (!isInitialized_) {
145 nMolecule_ =
system().nMolecule(speciesId_);
146 if (nMolecule_ <= 0)
UTIL_THROW(
"nMolecule <= 0");
147 accumulator_.setNEnsemble(nMolecule_);
153 template <
class SystemType>
166 if (nMolecule_ !=
system().nMolecule(speciesId_)) {
167 UTIL_THROW(
"Number of molecules has changed.");
172 system().begin(speciesId_, molIter);
173 for ( ; molIter.
notEnd(); ++ molIter) {
177 molIter->begin(bondIter);
178 for ( ; bondIter.
notEnd(); ++bondIter) {
179 boundary.
distanceSq(bondIter->atom(0).position(),
180 bondIter->atom(1).position(), dr);
187 trace = data_[i].trace()/double(
Dimension);
189 data_[i](j, j) -= trace;
194 accumulator_.sample(data_);
201 template <
class SystemType>
212 accumulator_.output(outputFile_);
const int Dimension
Dimensionality of space.
A Vector is a Cartesian vector.
double distanceSq(const Vector &r1, const Vector &r2) const
Return square distance between positions r1 and r2.
virtual ~IntraBondTensorAutoCorr()
Destructor.
An orthorhombic periodic unit cell.
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.
SystemType & system()
Return reference to parent system.
virtual void save(Serializable::OArchive &ar)
Save internal state to file.
Forward iterator for a PArray.
File containing preprocessor macros for error handling.
virtual void readParameters(std::istream &in)
Read parameters from file.
void readOutputFileName(std::istream &in)
Read outputFileName from file.
A Tensor represents a Cartesian tensor.
Forward const iterator for an Array or a C array.
Saving / output archive for binary ostream.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
IntraBondTensorAutoCorr(SystemType &system)
Constructor.
virtual void writeParam(std::ostream &out)
Write all parameters to an output stream.
virtual void setup()
Set number of molecules and clear accumulator.
void readInterval(std::istream &in)
Read interval from file, with error checking.
virtual void sample(long iStep)
Evaluate end-to-end vectors of all chains, add to ensemble.
Utility classes for scientific computation.
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.
bool notEnd() const
Is the current pointer not at the end of the array?
Saving archive for binary istream.
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
int capacity() const
Maximum allowed number of molecules for this Species.
virtual void output()
Output results after simulation is completed.
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.
bool notEnd() const
Is this not the end of the array?
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
Tensor & dyad(const Vector &v1, const Vector &v2)
Create dyad of two vectors.
Vector & versor(const Vector &v)
Calculate unit vector parallel to input vector v.
int nBond() const
Get number of bonds per molecule for this Species.
virtual void loadParameters(Serializable::IArchive &ar)
Load internal state from file.