Simpatico  v1.10
RDF.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 "RDF.h"
9 #include <mcMd/simulation/Simulation.h>
10 #include <mcMd/chemistry/Molecule.h>
11 #include <mcMd/chemistry/Atom.h>
12 #include <simp/boundary/Boundary.h>
13 #include <util/math/feq.h>
14 #include <util/misc/FileMaster.h>
15 #include <util/archives/Serializable_includes.h>
16 
17 
18 #include <util/global.h>
19 
20 namespace McMd
21 {
22 
23  using namespace Util;
24  using namespace Simp;
25 
26  /*
27  * Constructor.
28  */
29  RDF::RDF(System& system)
30  : SystemAnalyzer<System>(system),
31  outputFile_(),
32  accumulator_(),
33  typeNumbers_(),
34  selector_(),
35  max_(1.0),
36  normSum_(0.0),
37  nBin_(1),
38  nAtomType_(0),
39  isInitialized_(false)
40  { setClassName("RDF"); }
41 
42  /*
43  * Read parameters from file, and allocate data array.
44  */
45  void RDF::readParameters(std::istream& in)
46  {
48  read<double>(in, "max", max_);
49  read<int>(in, "nBin", nBin_);
50  read<PairSelector>(in, "selector", selector_);
51 
52  nAtomType_ = system().simulation().nAtomType();
53  typeNumbers_.allocate(nAtomType_);
54  accumulator_.setParam(max_, nBin_);
55  isInitialized_ = true;
56  }
57 
58  /*
59  * Load state from an archive.
60  */
62  {
64  loadParameter<double>(ar, "max", max_);
65  loadParameter<int>(ar, "nBin", nBin_);
66  loadParameter<PairSelector>(ar, "selector", selector_);
67 
68  ar & accumulator_;
69  ar & nAtomType_;
70  ar & typeNumbers_;
71  ar & normSum_;
72 
73  // Validate
74  if (nAtomType_ != system().simulation().nAtomType()) {
75  UTIL_THROW("Inconsistent nAtomType");
76  }
77  if (nAtomType_ != typeNumbers_.capacity()) {
78  UTIL_THROW("Inconsistent typeNumbers capacity");
79  }
80  if (nBin_ != accumulator_.nBin()) {
81  UTIL_THROW("Inconsistent nBin values");
82  }
83  if (!feq(max_, accumulator_.max())) {
84  UTIL_THROW("Inconsistent max values");
85  }
86 
87  isInitialized_ = true;
88  }
89 
90  /*
91  * Save state to archive.
92  */
94  { ar & *this; }
95 
96  /*
97  * Add particle pairs to RDF histogram.
98  */
99  void RDF::setup()
100  {
101  if (!isInitialized_) {
102  UTIL_THROW("Object not initialized");
103  }
104  accumulator_.clear();
105  }
106 
108  void RDF::sample(long iStep)
109  {
110  if (isAtInterval(iStep)) {
111 
112  accumulator_.beginSnapshot();
113 
114  System::ConstMoleculeIterator molIter1, molIter2;
115  Molecule::ConstAtomIterator atomIter1, atomIter2;
116  Vector r1, r2;
117  double dRsq, dR;
118  Boundary* boundaryPtr;
119  int iSpecies1, iSpecies2, nSpecies, i;
120 
121  for (i = 0; i < nAtomType_; ++i) {
122  typeNumbers_[i] = 0;
123  }
124 
125  boundaryPtr = &system().boundary();
126  nSpecies = system().simulation().nSpecies();
127 
128  // Loop over atom 1
129  for (iSpecies1 = 0; iSpecies1 < nSpecies; ++iSpecies1) {
130  system().begin(iSpecies1, molIter1);
131  for ( ; molIter1.notEnd(); ++molIter1) {
132  molIter1->begin(atomIter1);
133  for ( ; atomIter1.notEnd(); ++atomIter1) {
134  r1 = atomIter1->position();
135 
136  ++typeNumbers_[atomIter1->typeId()];
137 
138  // Loop over atom 2
139  for (iSpecies2 = 0; iSpecies2 < nSpecies; ++iSpecies2) {
140  system().begin(iSpecies2, molIter2);
141  for ( ; molIter2.notEnd(); ++molIter2) {
142 
143  //Check if molecules are the same
144  //if ( &(*molIter2) != &(*molIter1)) {
145 
146  molIter2->begin(atomIter2);
147  for ( ; atomIter2.notEnd(); ++atomIter2) {
148 
149  if (selector_.match(*atomIter1, *atomIter2)) {
150  r2 = atomIter2->position();
151 
152  dRsq = boundaryPtr->distanceSq(r1, r2);
153  dR = sqrt(dRsq);
154 
155  accumulator_.sample(dR);
156 
157  }
158 
159  }
160 
161  //}
162 
163  }
164  } // for iSpecies2
165 
166  }
167  }
168  } // for iSpecies1
169 
170  // Increment normSum_
171  double number = 0;
172  for (i = 0; i < nAtomType_; ++i) {
173  number += typeNumbers_[i];
174  }
175  normSum_ += number*number/boundaryPtr->volume();
176 
177  } // if isAtInterval
178 
179  }
180 
181 
183  void RDF::output()
184  {
185 
186  // Echo parameters to a log file
187  fileMaster().openOutputFile(outputFileName(".prm"), outputFile_);
188  writeParam(outputFile_);
189  outputFile_.close();
190 
191  // Output statistical analysis to separate data file
192  fileMaster().openOutputFile(outputFileName(".dat"), outputFile_);
193  double nSnapshot = double(accumulator_.nSnapshot()) ;
194  accumulator_.setNorm(normSum_ / nSnapshot);
195  if (selector_.pairType() == PairSelector::ALL) {
196  accumulator_.setOutputIntegral(true);
197  }
198  accumulator_.output(outputFile_);
199  outputFile_.close();
200 
201  }
202 
203 }
virtual void output()
Output results to output file.
Definition: RDF.cpp:183
A Vector is a Cartesian vector.
Definition: Vector.h:75
void setParam(double max, int nBin)
Set parameters and initialize.
void output(std::ostream &out)
Output the distribution to file.
void begin(int speciesId, MoleculeIterator &iterator)
Initialize an iterator for molecules of one species in this System.
Definition: System.h:1147
double distanceSq(const Vector &r1, const Vector &r2) const
Return square distance between positions r1 and r2.
double volume() const
Return unit cell volume.
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.
A set of interacting Molecules enclosed by a Boundary.
Definition: System.h:115
System & system()
Return reference to parent system.
Forward iterator for a PArray.
void setOutputIntegral(bool outputIntegral)
Set true to enable output of spatial integral of g(r).
File containing preprocessor macros for error handling.
Classes used by all simpatico molecular simulations.
virtual void sample(long iStep)
Add particle pairs to RDF histogram.
Definition: RDF.cpp:108
Forward const iterator for an Array or a C array.
Saving / output archive for binary ostream.
long nSnapshot()
Get number of snapshots.
void setNorm(double norm)
Set the factor used to normalize the RDF before output.
virtual void readParameters(std::istream &in)
Read parameters from archive.
bool match(const Atom &atom1, const Atom &atom2) const
Return true if pair of atoms matches the selector policy.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition: global.h:51
Simulation & simulation() const
Get the parent Simulation by reference.
Definition: System.h:1055
virtual void writeParam(std::ostream &out)
Write all parameters to an output stream.
void beginSnapshot()
Mark the beginning of a "snapshot" (i.e., a sampled time step).
Utility classes for scientific computation.
Definition: accumulators.mod:1
void sample(double value)
Sample a value.
virtual void readParameters(std::istream &in)
Read parameters from file.
Definition: RDF.cpp:45
virtual void setup()
Setup before a simulation (clear accumulator).
Definition: RDF.cpp:99
Template for Analyzer associated with one System.
bool notEnd() const
Is the current pointer not at the end of the array?
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).
int nSpecies() const
Get the number of Species in this Simulation.
virtual void save(Serializable::OArchive &ar)
Save state to archive.
Definition: RDF.cpp:93
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.
virtual void clear()
Clear all accumulators.
const std::string & outputFileName() const
Return outputFileName string.
void allocate(int capacity)
Allocate the underlying C array.
Definition: DArray.h:191
int nAtomType() const
Get the number of atom types.
bool notEnd() const
Is this not the end of the array?
bool feq(double x, double y, double eps=1.0E-10)
Are two floating point numbers equal to within round-off error?
Definition: feq.h:27
PairType pairType() const
Return value of pair type.
Definition: PairSelector.h:117
virtual void loadParameters(Serializable::IArchive &ar)
Load state from an archive.
Definition: RDF.cpp:61
RDF(System &system)
Constructor.
Definition: RDF.cpp:29