Simpatico  v1.10
PairEnergy.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 "PairEnergy.h"
9 #include <tools/storage/Configuration.h>
10 #include <tools/neighbor/CellList.h>
11 #include <tools/neighbor/Cell.h>
12 #include <tools/chemistry/Atom.h>
13 #include <util/space/Vector.h>
14 
15 namespace Tools
16 {
17 
18  /*
19  * Constructor.
20  */
22  : Analyzer(configuration),
23  interaction_(),
24  cellList_(),
25  cutoff_(0.0),
26  atomCapacity_(0),
27  isInitialized_(false)
28  { setClassName("PairEnergy"); }
29 
30  /*
31  * Constructor.
32  */
34  : Analyzer(processor),
35  interaction_(),
36  cellList_(),
37  cutoff_(0.0),
38  atomCapacity_(0),
39  isInitialized_(false)
40  { setClassName("PairEnergy"); }
41 
42  /*
43  * Constructor.
44  */
47  : Analyzer(configuration, fileMaster),
48  interaction_(),
49  cellList_(),
50  cutoff_(0.0),
51  atomCapacity_(0),
52  isInitialized_(false)
53  { setClassName("PairEnergy"); }
54 
55 
56  void PairEnergy::readParameters(std::istream& in)
57  {
58  // Read interval and parameters for AutoCorrArray
59  readInterval(in);
61 
62  read<int>(in, "atomCapacity", atomCapacity_);
63  interaction_.setNAtomType(1);
64  interaction_.readParameters(in);
65 
66  cutoff_ = interaction_.maxPairCutoff();
67 
68  isInitialized_ = true;
69  }
70 
71 
72  /*
73  * Initialize at beginning of simulation.
74  */
76  {
77  if (!isInitialized_) {
78  UTIL_THROW("Error: object is not initialized");
79  }
80 
81  // Setup cell List
82  Vector lengths = configuration().boundary().lengths();
83 
84  Vector lower(0.0, 0.0, 0.0);
85  Vector upper = lengths;
86  Vector cutoffs(cutoff_, cutoff_, cutoff_);
87 
88  cellList_.allocate(atomCapacity_, lower, upper, cutoffs);
89  cellList_.makeGrid(lower, upper, cutoffs);
90  }
91 
92  void PairEnergy::sample(long iStep)
93  {
94  if (!isAtInterval(iStep)) return;
95 
96  // Clear cell list
97  cellList_.clear();
98 
99  // Place all atoms
100  AtomStorage::Iterator atomIter;
101  configuration().atoms().begin(atomIter);
102  for ( ; atomIter.notEnd(); ++atomIter) {
103  cellList_.placeAtom(*atomIter);
104  }
105 
106  // Build/update cell list
107  cellList_.build();
108  cellList_.update();
109 
110  if (!cellList_.isValid()) {
111  UTIL_THROW("Cell List Invalid\n");
112  }
113 
114  // Compute pair energy using loop over cells
115  Vector dr;
116  double energy = 0.0;
117  double rsq;
118  Cell::NeighborArray neighbors;
119  Boundary& boundary = configuration().boundary();
120  CellAtom* cellAtomPtr1 = 0;
121  CellAtom* cellAtomPtr2 = 0;
122  const Cell* cellPtr = 0;
123  int na = 0; // total number of atoms
124  int nn = 0; // number of neighbors in a cell
125  int np = 0; // Number of pairs within cutoff
126 
127  // Loop over cells in CellList
128  cellPtr = cellList_.begin();
129  while (cellPtr) {
130  cellPtr->getNeighbors(neighbors);
131  na = cellPtr->nAtom();
132  nn = neighbors.size();
133  // Loop over primary atoms, from this cell
134  for (int i = 0; i < na; ++i) {
135  cellAtomPtr1 = neighbors[i];
136  // Loop over secondary atoms in this cell
137  for (int j = 0; j < na; ++j) {
138  cellAtomPtr2 = neighbors[j];
139  if (cellAtomPtr2 > cellAtomPtr1) {
140  rsq = boundary.distanceSq(cellAtomPtr1->ptr()->position,
141  cellAtomPtr2->ptr()->position, dr);
142  if (rsq <= cutoff_*cutoff_) {
143  ++np;
144  energy += interaction_.energy(rsq,
145  cellAtomPtr1->ptr()->typeId,
146  cellAtomPtr2->ptr()->typeId);
147  }
148  }
149  }
150  // Loop over atoms in neighboring cells
151  for (int j = na; j < nn; ++j) {
152  cellAtomPtr2 = neighbors[j];
153  rsq = boundary.distanceSq(cellAtomPtr1->ptr()->position,
154  cellAtomPtr2->ptr()->position, dr);
155  if (rsq <= cutoff_*cutoff_) {
156  ++np;
157  energy += interaction_.energy(rsq,
158  cellAtomPtr1->ptr()->typeId,
159  cellAtomPtr2->ptr()->typeId);
160  }
161  }
162  }
163  cellPtr = cellPtr->nextCellPtr();
164  }
165 
166  timesteps_.append(iStep);
167  energies_.append(energy);
168  }
169 
170  /*
171  * Output results to file after simulation is completed.
172  */
174  {
175  // Output parameters
176  fileMaster().openOutputFile(outputFileName(".prm"), outputFile_);
177  writeParam(outputFile_);
178  outputFile_.close();
179 
180  // Output energies
181  fileMaster().openOutputFile(outputFileName(), outputFile_);
182  char str[50];
183  sprintf(&str[0], "%10s %-7s", "TIMESTEP", "ENERGY");
184  outputFile_ << str << std::endl;
185  for (int i = 0; i < timesteps_.size(); i++) {
186  sprintf(&str[0], "%10i %-12.7e", timesteps_[i], energies_[i]);
187  outputFile_ << str << std::endl;
188  }
189  outputFile_.close();
190 
191  }
192 
193 }
194 
PairEnergy(Configuration &configuration)
Constructor.
Definition: PairEnergy.cpp:21
void readOutputFileName(std::istream &in)
Read outputFileName from file.
A Vector is a Cartesian vector.
Definition: Vector.h:75
A post-processor for analyzing outputs of MD simulations.
Definition: Processor.h:30
double distanceSq(const Vector &r1, const Vector &r2) const
Return square distance between positions r1 and r2.
void append(const Data &data)
Append an element to the end of the sequence.
Definition: GArray.h:306
bool notEnd() const
Is the current pointer not at the end of the array?
Definition: ArrayIterator.h:83
const Vector & lengths() const
Get Vector of unit cell lengths by const reference.
An orthorhombic periodic unit cell.
virtual void readParameters(std::istream &in)
Read parameters from file.
Definition: PairEnergy.cpp:56
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
int nAtom() const
Number of atoms in cell.
void allocate(int atomCapacity, const Vector &lower, const Vector &upper, const Vector &cutoffs)
Allocate memory for this CellList (generalized coordinates).
bool isValid() const
Return true if valid, or throw Exception.
int size() const
Return logical size of this array (i.e., current number of elements).
Definition: GArray.h:455
void update()
Update the cell list.
Abstract base for periodic output and/or analysis actions.
AtomStorage & atoms()
Get the AtomStorage.
An instantaneous molecular dynamics configuration.
Definition: Configuration.h:40
void getNeighbors(NeighborArray &neighbors) const
Fill an array with pointers to atoms in a cell and neighboring cells.
A fixed capacity (static) contiguous array with a variable logical size.
Definition: FSArray.h:37
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition: global.h:51
int typeId
Atom type index.
virtual void sample(long iStep)
Compute nonbonded pair energy.
Definition: PairEnergy.cpp:92
virtual void writeParam(std::ostream &out)
Write all parameters to an output stream.
virtual void output()
Output final results to file.
Definition: PairEnergy.cpp:173
Configuration & configuration()
Get the parent Configuration by reference.
Forward iterator for an Array or a C array.
Definition: ArrayIterator.h:39
Single-processor classes for pre- and post-processing MD trajectories.
double maxPairCutoff() const
Get maximum of pair cutoff distance, for all atom type pairs.
Definition: LJPair.cpp:244
void readInterval(std::istream &in)
Read parameter interval from file.
void begin(Iterator &iter)
Initialize an iterator for atoms.
A FileMaster manages input and output files for a simulation.
Definition: FileMaster.h:142
bool isAtInterval(long counter) const
Return true iff counter is a multiple of the interval.
void makeGrid(const Vector &lower, const Vector &upper, const Vector &cutoffs)
Make the cell grid (using generalized coordinates).
Boundary & boundary()
Get the Boundary by non-const reference.
virtual void setup()
Setup before main loop.
Definition: PairEnergy.cpp:75
void setClassName(const char *className)
Set class name string.
Vector position
Atom position.
FileMaster & fileMaster()
Get an associated FileMaster by reference.
void clear()
Reset the cell list to its empty state (no atoms).
void placeAtom(Atom &atom)
Determine the appropriate cell for an Atom, based on its position.
void setNAtomType(int nAtomType)
Set nAtomType value.
Definition: LJPair.cpp:78
const Cell * nextCellPtr() const
Return a pointer to neighbor cell i.
void readParameters(std::istream &in)
Read epsilon, sigma, and cutoff, and initialize other variables.
Definition: LJPair.cpp:159
double energy(double rsq, int i, int j) const
Returns interaction energy for a single pair of atoms.
Definition: LJPair.h:237
Data for an atom in a CellList.
A single cell in a CellList.
void build()
Build the cell list.
int size() const
Return logical size of this array (i.e., number of elements).
Definition: FSArray.h:207
const Cell * begin() const
Return pointer to first local cell in linked list.
const std::string & outputFileName() const
Return outputFileName string.