1 #ifndef MCMD_CLUSTER_IDENTIFIER_CPP 2 #define MCMD_CLUSTER_IDENTIFIER_CPP 11 #include "ClusterIdentifier.h" 12 #include <mcMd/simulation/System.h> 13 #include <mcMd/simulation/Simulation.h> 14 #include <mcMd/chemistry/Molecule.h> 15 #include <mcMd/chemistry/Atom.h> 16 #include <simp/species/Species.h> 17 #include <simp/boundary/Boundary.h> 52 speciesId_ = speciesId;
53 atomTypeId_ = atomTypeId;
58 int moleculeCapacity = speciesPtr->
capacity();
59 links_.allocate(moleculeCapacity);
60 clusters_.reserve(64);
80 double cutoffSq = cutoff_*cutoff_;
82 int thisMolId, otherMolId, otherClusterId;
85 thisLinkPtr = &workStack_.pop();
88 UTIL_THROW(
"Top ClusterLink not marked with this cluster id");
97 for ( ; atomIter.
notEnd(); ++atomIter) {
98 if (atomIter->typeId() == atomTypeId_) {
99 cellList_.
getNeighbors(atomIter->position(), neighborArray);
100 for (
int i = 0; i < neighborArray.
size(); i++) {
101 otherAtomPtr = neighborArray[i];
103 if (otherMolId != thisMolId) {
104 rsq = boundary.
distanceSq(atomIter->position(),
106 if (rsq < cutoffSq) {
107 otherLinkPtr = &(links_[otherMolId]);
110 otherClusterId = otherLinkPtr->
clusterId();
111 if (otherClusterId == -1) {
112 cluster.
addLink(*otherLinkPtr);
113 workStack_.push(*otherLinkPtr);
115 if (otherClusterId != cluster.
id()) {
134 cellList_.
setup(system().boundary(), cutoff_);
137 for (
int i = 0; i < links_.capacity(); ++i) {
145 system().
begin(speciesId_, molIter);
146 for ( ; molIter.
notEnd(); ++molIter) {
149 links_[molIter->id()].setMolecule(*molIter.
get());
152 for (molIter->begin(atomIter); atomIter.
notEnd(); ++atomIter) {
153 if (atomIter->typeId() == atomTypeId_) {
165 system().
begin(speciesId_, molIter);
166 for ( ; molIter.
notEnd(); ++molIter) {
169 linkPtr = &(links_[molIter->id()]);
176 clusters_.resize(clusterId+1);
177 clusterPtr = &clusters_[clusterId];
179 clusterPtr->
setId(clusterId);
183 workStack_.push(*linkPtr);
184 while (workStack_.size() > 0) {
185 processNextMolecule(*clusterPtr);
202 for (
int i = 0; i <
nCluster; ++i) {
206 nMolecule += clusters_[i].size();
208 if (nMolecule != systemPtr_->
nMolecule(speciesId_)) {
215 systemPtr_->
begin(speciesId_, molIter);
216 for ( ; molIter.
notEnd(); ++molIter) {
218 linkPtr = &(links_[molIter->id()]);
220 UTIL_THROW(
"Link without correct molecule association");
Molecule & molecule() const
Get the parent Molecule by reference.
Cluster & cluster(int id)
Get a specific cluster, indexed in the order identified.
int nCluster() const
Get number of clusters.
ClusterIdentifier(System &system)
Constructor.
virtual void initialize(int speciesId, int atomTypeId, double cutoff)
Clear accumulator.
void getNeighbors(const Vector &pos, NeighborArray &neighbors) const
Fill a NeighborArray with pointers to atoms near a specified position.
void begin(int speciesId, MoleculeIterator &iterator)
Initialize an iterator for molecules of one species in this System.
double distanceSq(const Vector &r1, const Vector &r2) const
Return square distance between positions r1 and r2.
bool notEnd() const
Is the current pointer not at the end of the array?
const Data * get() const
Return a pointer to const current data.
An orthorhombic periodic unit cell.
int atomCapacity() const
Get the total number of Atoms allocated.
int clusterId() const
Get cluster identifier.
void begin(AtomIterator &iterator)
Set an Molecule::AtomIterator to first Atom in this Molecule.
A set of interacting Molecules enclosed by a Boundary.
void clear()
Set cluster to empty.
Forward iterator for a PArray.
Classes used by all simpatico molecular simulations.
int id() const
Get the index for this Molecule (unique in species).
int nMolecule(int speciesId) const
Get the number of molecules of one Species in this System.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Simulation & simulation() const
Get the parent Simulation by reference.
A point particle within a Molecule.
bool notEnd() const
Is the current pointer not at the end of the PArray?
Data * get() const
Return a pointer to the current data.
Utility classes for scientific computation.
void setup(const Boundary &boundary, double cutoff)
Setup grid of empty cells.
int id() const
Get the cluster id.
void shift(Vector &r) const
Shift Cartesian Vector r to its primary image.
Molecule & molecule() const
Get associated molecule by reference.
Forward iterator for an Array or a C array.
Forward iterator for a PArray.
void identifyClusters()
Identify all clusters (main operation).
~ClusterIdentifier()
Destructor.
bool notEnd() const
Is the current pointer not at the end of the array?
Boundary & boundary() const
Get the Boundary by reference.
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
void setId(int id)
Set cluster identifier.
int capacity() const
Maximum allowed number of molecules for this Species.
void setAtomCapacity(int atomCapacity)
Set atom capacity.
const Vector & position() const
Get the position Vector by const reference.
A Species represents a set of chemically similar molecules.
bool isValid() const
Return true if valid, or throw Exception otherwise.
Species & species(int i)
Get a specific Species by reference.
int size() const
Return logical size of this array (i.e., number of elements).
void addLink(ClusterLink &link)
Add a link to the list.
void addAtom(Atom &atom)
Add a Atom to the appropriate cell, based on its position.