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> 47 :
Analyzer(configuration, fileMaster),
62 read<int>(in,
"atomCapacity", atomCapacity_);
68 isInitialized_ =
true;
77 if (!isInitialized_) {
78 UTIL_THROW(
"Error: object is not initialized");
84 Vector lower(0.0, 0.0, 0.0);
86 Vector cutoffs(cutoff_, cutoff_, cutoff_);
88 cellList_.
allocate(atomCapacity_, lower, upper, cutoffs);
89 cellList_.
makeGrid(lower, upper, cutoffs);
102 for ( ; atomIter.
notEnd(); ++atomIter) {
122 const Cell* cellPtr = 0;
128 cellPtr = cellList_.
begin();
131 na = cellPtr->
nAtom();
132 nn = neighbors.
size();
134 for (
int i = 0; i < na; ++i) {
135 cellAtomPtr1 = neighbors[i];
137 for (
int j = 0; j < na; ++j) {
138 cellAtomPtr2 = neighbors[j];
139 if (cellAtomPtr2 > cellAtomPtr1) {
142 if (rsq <= cutoff_*cutoff_) {
144 energy += interaction_.
energy(rsq,
145 cellAtomPtr1->ptr()->
typeId,
146 cellAtomPtr2->ptr()->
typeId);
151 for (
int j = na; j < nn; ++j) {
152 cellAtomPtr2 = neighbors[j];
155 if (rsq <= cutoff_*cutoff_) {
157 energy += interaction_.
energy(rsq,
158 cellAtomPtr1->ptr()->
typeId,
159 cellAtomPtr2->ptr()->
typeId);
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;
A Vector is a Cartesian vector.
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.
bool notEnd() const
Is the current pointer not at the end of the array?
const Vector & lengths() const
Get Vector of unit cell lengths by const reference.
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.
int size() const
Return logical size of this array (i.e., current number of elements).
A fixed capacity (static) contiguous array with a variable logical size.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
virtual void writeParam(std::ostream &out)
Write all parameters to an output stream.
Forward iterator for an Array or a C array.
double maxPairCutoff() const
Get maximum of pair cutoff distance, for all atom type pairs.
A FileMaster manages input and output files for a simulation.
void setClassName(const char *className)
Set class name string.
void setNAtomType(int nAtomType)
Set nAtomType value.
void readParameters(std::istream &in)
Read epsilon, sigma, and cutoff, and initialize other variables.
double energy(double rsq, int i, int j) const
Returns interaction energy for a single pair of atoms.
int size() const
Return logical size of this array (i.e., number of elements).