Simpatico  v1.10
IntraBondTensorAutoCorr.tpp
1 #ifndef MCMD_INTRA_BOND_TENSOR_AUTO_CORR_INC_H
2 #define MCMD_INTRA_BOND_TENSOR_AUTO_CORR_INC_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 "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>
19 
20 #include <util/global.h>
21 
22 namespace McMd
23 {
24 
25  using namespace Util;
26 
27  /*
28  * Constructor.
29  */
30  template <class SystemType>
32  : SystemAnalyzer<SystemType>(system),
33  outputFile_(),
34  accumulator_(),
35  speciesId_(-1),
36  nMolecule_(-1),
37  nBond_(-1),
38  capacity_(-1),
39  isInitialized_(false)
40  {}
41 
42  /*
43  * Destructor.
44  */
45  template <class SystemType>
47  {}
48 
49  /*
50  * Read parameters from file.
51  */
52  template <class SystemType>
54  {
55  readInterval(in);
57 
58  read(in, "speciesId", speciesId_);
59  read(in, "capacity", capacity_);
60 
61  // Validate input
62  if (speciesId_ < 0)
63  UTIL_THROW("Negative speciesId");
64  if (speciesId_ >= system().simulation().nSpecies())
65  UTIL_THROW("speciesId >= nSpecies");
66  if (capacity_ <= 0)
67  UTIL_THROW("Negative capacity");
68 
69  speciesPtr_ = &system().simulation().species(speciesId_);
70  nBond_ = speciesPtr_->nBond();
71  if (nBond_ <= 0) UTIL_THROW("Number of bonds per molecule <= 0");
72 
73  // Allocate memory
74  int speciesCapacity = speciesPtr_->capacity();
75  if (speciesCapacity <= 0) UTIL_THROW("Species capacity <= 0");
76  data_.allocate(speciesCapacity);
77  accumulator_.setParam(speciesCapacity, capacity_);
78 
79  // Delay initialization of AutoCorrArray until first call
80  // of sample(), when the number of molecules is known.
81 
82  isInitialized_ = true;
83  }
84 
85  /*
86  * Load internal state from file.
87  */
88  template <class SystemType>
90  {
92  loadParameter(ar, "speciesId", speciesId_);
93  loadParameter(ar, "capacity", capacity_);
94  ar & nBond_;
95  ar & nMolecule_;
96  ar & accumulator_;
97 
98  // Validate parameters and set speciesPtr_
99  if (speciesId_ < 0) {
100  UTIL_THROW("Negative speciesId");
101  }
102  if (speciesId_ >= system().simulation().nSpecies()) {
103  UTIL_THROW("speciesId >= nSpecies");
104  }
105  if (capacity_ <= 0) {
106  UTIL_THROW("Negative capacity");
107  }
108  if (nBond_ <= 0) {
109  UTIL_THROW("Number of bonds per molecule <= 0");
110  }
111  speciesPtr_ = &system().simulation().species(speciesId_);
112  if (nBond_ != speciesPtr_->nBond()) {
113  UTIL_THROW("Inconsistent values for nBond");
114  }
115 
116  // Allocate data_ array for internal usage.
117  int speciesCapacity = speciesPtr_->capacity();
118  if (speciesCapacity <= 0) {
119  UTIL_THROW("Species capacity <= 0");
120  }
121  data_.allocate(speciesCapacity);
122 
123  isInitialized_ = true;
124  }
125 
126  /*
127  * Save internal state to an archive.
128  */
129  template <class SystemType>
130  void
132  { ar & *this; }
133 
134  /*
135  * Evaluate end-to-end vectors of all chains, add to ensemble.
136  */
137  template <class SystemType>
139  {
140  if (!isInitialized_) {
141  UTIL_THROW("Object is not intitialized");
142  }
143 
144  // Get number of molecules and initialize the accumulator
145  nMolecule_ = system().nMolecule(speciesId_);
146  if (nMolecule_ <= 0) UTIL_THROW("nMolecule <= 0");
147  accumulator_.setNEnsemble(nMolecule_);
148  }
149 
150  /*
151  * Evaluate end-to-end vectors of all chains, add to ensemble.
152  */
153  template <class SystemType>
155  {
156  if (isAtInterval(iStep)) {
157  Boundary& boundary = system().boundary();
160  Tensor t;
161  Vector dr, u;
162  double trace;
163  int i, j;
164 
165  // Validate nMolecule_ (must remain constant).
166  if (nMolecule_ != system().nMolecule(speciesId_)) {
167  UTIL_THROW("Number of molecules has changed.");
168  }
169 
170  // Loop over molecules
171  i = 0;
172  system().begin(speciesId_, molIter);
173  for ( ; molIter.notEnd(); ++ molIter) {
174  data_[i].zero();
175 
176  // Loop over bonds
177  molIter->begin(bondIter);
178  for ( ; bondIter.notEnd(); ++bondIter) {
179  boundary.distanceSq(bondIter->atom(0).position(),
180  bondIter->atom(1).position(), dr);
181  u.versor(dr);
182  t.dyad(u, u);
183  data_[i] += t;
184  }
185 
186  // Remove trace
187  trace = data_[i].trace()/double(Dimension);
188  for (j=0; j < Dimension; ++j) {
189  data_[i](j, j) -= trace;
190  }
191  ++i;
192  }
193 
194  accumulator_.sample(data_);
195  }
196  }
197 
198  /*
199  * Output results after simulation is completed.
200  */
201  template <class SystemType>
203  {
204 
205  // Echo parameters to analyzer log file
206  fileMaster().openOutputFile(outputFileName(".prm"), outputFile_);
207  writeParam(outputFile_);
208  outputFile_.close();
209 
210  // Output statistical analysis to separate data file
211  fileMaster().openOutputFile(outputFileName(".dat"), outputFile_);
212  accumulator_.output(outputFile_);
213  outputFile_.close();
214 
215  }
216 
217 }
218 #endif
const int Dimension
Dimensionality of space.
Definition: Dimension.h:19
A Vector is a Cartesian vector.
Definition: Vector.h:75
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.
Definition: FileMaster.cpp:290
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.
Definition: Tensor.h:32
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.
Definition: global.h:51
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.
Definition: accumulators.mod:1
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.
Definition: Tensor.h:763
Vector & versor(const Vector &v)
Calculate unit vector parallel to input vector v.
Definition: Vector.h:726
int nBond() const
Get number of bonds per molecule for this Species.
virtual void loadParameters(Serializable::IArchive &ar)
Load internal state from file.