Simpatico
v1.10
|
An initialized Cell has an array of CellAtom objects, a pointer to the next Cell in a linked list, and a pointer to an array of integer offsets to neighboring cells.
A linked list of cells is created by a parent CellList. The method CellList::begin() returns a pointer to the first Cell in the list. This linked list normally contains only the cells with local atoms, and excludes cells of ghost atoms.
The method Cell::getNeighbors() returns an array containing pointers to atoms in this cell and all neighboring cells, with the atoms in in this cell listed first.
Here is an example of code to iterate over all local cells in a CellList, and over all pairs of neighboring atoms:
Definition at line 71 of file ddMd/neighbor/Cell.h.
#include <Cell.h>
Public Types | |
typedef FSArray< std::pair< int, int >, OffSetArrayCapacity > | OffsetArray |
An array of strips of relative ids for columns of neighboring cells. More... | |
typedef FSArray< CellAtom *, MaxNeighborAtom > | NeighborArray |
Static array for holding neighbors in a cell list. More... | |
Public Member Functions | |
Cell () | |
Constructor. More... | |
void | setNextCell (Cell &nextCell) |
Set the pointer to the next cell in the list. More... | |
void | setLastCell () |
Set this to be the last cell in the list. More... | |
const Cell * | nextCellPtr () const |
Return a pointer to neighbor cell i. More... | |
void | setId (int id) |
Set id for this Cell. More... | |
void | setOffsetArray (OffsetArray &offsets) |
Set the pointer to an array of integer offsets. More... | |
void | setIsGhostCell (bool isGhostCell=true) |
Mark as a ghost or local cell. More... | |
void | clear () |
Reset to empty before incrementing capacity. More... | |
void | incrementCapacity () |
Increment the capacity counter. More... | |
CellAtom * | initialize (CellAtom *begin) |
Associate the Cell with an array of CellAtom objects. More... | |
void | append (Atom *atomPtr) |
Append an Atom to an initialized cell. More... | |
int | id () const |
Get identifier for this Cell. More... | |
int | nAtom () const |
Number of atoms in cell. More... | |
int | atomCapacity () const |
Capacity of array segment. More... | |
CellAtom * | atomPtr (int i) const |
Return a pointer to atom i. More... | |
bool | isGhostCell () const |
Is this a ghost cell? More... | |
void | getNeighbors (NeighborArray &neighbors, bool reverseUpdateFlag=false) const |
Fill an array with pointers to atoms in a cell and neighboring cells. More... | |
Static Public Attributes | |
static const int | MaxNeighborAtom = 2000 |
Maximum possible number of atoms in this an neighboring cells. More... | |
static const int | MaxNCellCut = 4 |
Maximum number of cell per cutoff length. More... | |
static const int | OffSetArrayCapacity = (2*MaxNCellCut + 1)*(2*MaxNCellCut + 1) + 3 |
Maximum allowed number of neighboring cells. More... | |
typedef FSArray< std::pair<int,int>, OffSetArrayCapacity> DdMd::Cell::OffsetArray |
An array of strips of relative ids for columns of neighboring cells.
Every cell has a pointer to a Cell::OffsetArray, which uses relative cell indices (offsets relative to the cell id of the primary cell) to identify neighboring cells. Each std::pair<int, int> element in in an OffsetArra contains relative addresses for the the first cell (pair.first) and last cell (pair.second) cell in a contiguous strip of cells that could contain atoms that lie within a cutoff length of some point in the primary cell. The contents of the OffsetArray are calculated in the CellList::makeGrid() function.
Definition at line 105 of file ddMd/neighbor/Cell.h.
typedef FSArray<CellAtom*, MaxNeighborAtom> DdMd::Cell::NeighborArray |
Static array for holding neighbors in a cell list.
Definition at line 110 of file ddMd/neighbor/Cell.h.
DdMd::Cell::Cell | ( | ) |
void DdMd::Cell::setNextCell | ( | Cell & | nextCell | ) |
Set the pointer to the next cell in the list.
Definition at line 30 of file ddMd/neighbor/Cell.cpp.
Referenced by DdMd::CellList::allocate().
void DdMd::Cell::setLastCell | ( | ) |
Set this to be the last cell in the list.
Definition at line 33 of file ddMd/neighbor/Cell.cpp.
Referenced by DdMd::CellList::allocate().
|
inline |
Return a pointer to neighbor cell i.
Definition at line 317 of file ddMd/neighbor/Cell.h.
Referenced by DdMd::PairList::build(), DdMd::PairPotentialImpl< Interaction >::computeEnergy(), and DdMd::PairPotential::nPair().
|
inline |
Set id for this Cell.
id | integer identifier for this Cell |
Definition at line 258 of file ddMd/neighbor/Cell.h.
void DdMd::Cell::setOffsetArray | ( | OffsetArray & | offsets | ) |
Set the pointer to an array of integer offsets.
offsets | array offsets for strips of neighboring cells |
Referenced by Cell().
void DdMd::Cell::setIsGhostCell | ( | bool | isGhostCell = true | ) |
Mark as a ghost or local cell.
Definition at line 27 of file ddMd/neighbor/Cell.cpp.
References isGhostCell().
Referenced by DdMd::CellList::allocate().
|
inline |
Reset to empty before incrementing capacity.
Does not nullify nextCell pointer is isGhostCell bool.
Definition at line 267 of file ddMd/neighbor/Cell.h.
|
inline |
Increment the capacity counter.
This must be called within a loop over atoms, once per atom that belongs in this cell. This loop must completed before initialize is called.
Definition at line 261 of file ddMd/neighbor/Cell.h.
Associate the Cell with an array of CellAtom objects.
The final capacity of the cell must be known when this method is called. It associate the Cell with a C array of capacity Atom* pointers, starting at position begin. It returns a pointer to an element one past the end of this array segment.
begin | first element in associated array segment. |
Definition at line 274 of file ddMd/neighbor/Cell.h.
|
inline |
Append an Atom to an initialized cell.
Definition at line 284 of file ddMd/neighbor/Cell.h.
|
inline |
Get identifier for this Cell.
Definition at line 295 of file ddMd/neighbor/Cell.h.
Referenced by getNeighbors().
|
inline |
Number of atoms in cell.
Definition at line 301 of file ddMd/neighbor/Cell.h.
Referenced by DdMd::PairList::build(), DdMd::PairPotentialImpl< Interaction >::computeEnergy(), DdMd::CellList::isValid(), and DdMd::PairPotential::nPair().
|
inline |
Capacity of array segment.
Definition at line 323 of file ddMd/neighbor/Cell.h.
Referenced by DdMd::CellList::isValid().
|
inline |
Return a pointer to atom i.
Definition at line 307 of file ddMd/neighbor/Cell.h.
Referenced by DdMd::CellList::isValid().
|
inline |
Is this a ghost cell?
Definition at line 329 of file ddMd/neighbor/Cell.h.
Referenced by getNeighbors(), and setIsGhostCell().
void DdMd::Cell::getNeighbors | ( | NeighborArray & | neighbors, |
bool | reverseUpdateFlag = false |
||
) | const |
Fill an array with pointers to atoms in a cell and neighboring cells.
Upon return, the FSArray neighbors contains pointers to all of the atoms in this cell and neighboring cells. The first nAtom() elements contain pointers to atoms in this cell.
To avoid double counting of pairs, the method only returns atoms from neighboring local cells with a cell id greater than this->id(), and from neighboring ghost cells.
neighbors | Array of pointers to neighbor Atoms |
reverseUpdateFlag | Is reverse communication enabled? |
Definition at line 46 of file ddMd/neighbor/Cell.cpp.
References Util::FSArray< Data, Capacity >::append(), Util::FSArray< Data, Capacity >::clear(), id(), isGhostCell(), and Util::FSArray< Data, Capacity >::size().
Referenced by DdMd::PairList::build(), DdMd::PairPotentialImpl< Interaction >::computeEnergy(), and DdMd::PairPotential::nPair().
|
static |
Maximum possible number of atoms in this an neighboring cells.
Definition at line 81 of file ddMd/neighbor/Cell.h.
|
static |
Maximum number of cell per cutoff length.
Definition at line 86 of file ddMd/neighbor/Cell.h.
Referenced by DdMd::CellList::allocate().
|
static |
Maximum allowed number of neighboring cells.
Definition at line 91 of file ddMd/neighbor/Cell.h.