You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The nonbonded interactions have to be efficiently computed when a cut off distance is introduced. A good strategy can be to limit the particle candidates to a content of cells in a cell list that are within the cut off distance.
The system can have many cell lists, grouped based on the cut off distances. The cell lists do not interact with each other if the cut off distances differ, i.e., the cell list universe is determined by the cut off distance. The location of a cell in each universe is determined by a single number computed from its k, l, m coordinates.
Different strategies can be used to computed nonbonded energies.
In the most simple way, a single cell list containing all atoms is constructed for the given cut off distance. The particle candidates are then selected from corresponding neighboured cells.
Another approach is preferred in systems of rigid proteins in an implicit solvent / explicit salt environment. Every molecule/atom group holds its own cell list containing only its atoms. To compute the energy, the outer cycle loops over the groups, skipping the unwanted ones (e.g., the same molecule), and the inner loop determines the cells within the cut off distance and compute the energy for the atom pairs.
The cell list in the previous system can be implemented as sparse, i.e., a map of cell indices → sets of atoms, or as dense, i.e., a vector over all indices → sets of atoms. The sparse list is typically suitable for big molecules like proteins, while the dense list suits to disperse particles like ions.
The cell lists are updated upon the move and are completely rebuild when the volume of the box changes.
The current g2g function and its reimplementation according to 4 should be benchmarked.
The nonbonded interactions have to be efficiently computed when a cut off distance is introduced. A good strategy can be to limit the particle candidates to a content of cells in a cell list that are within the cut off distance.
The system can have many cell lists, grouped based on the cut off distances. The cell lists do not interact with each other if the cut off distances differ, i.e., the cell list universe is determined by the cut off distance. The location of a cell in each universe is determined by a single number computed from its k, l, m coordinates.
Different strategies can be used to computed nonbonded energies.
In the most simple way, a single cell list containing all atoms is constructed for the given cut off distance. The particle candidates are then selected from corresponding neighboured cells.
Another approach is preferred in systems of rigid proteins in an implicit solvent / explicit salt environment. Every molecule/atom group holds its own cell list containing only its atoms. To compute the energy, the outer cycle loops over the groups, skipping the unwanted ones (e.g., the same molecule), and the inner loop determines the cells within the cut off distance and compute the energy for the atom pairs.
The cell list in the previous system can be implemented as sparse, i.e., a map of cell indices → sets of atoms, or as dense, i.e., a vector over all indices → sets of atoms. The sparse list is typically suitable for big molecules like proteins, while the dense list suits to disperse particles like ions.
The cell lists are updated upon the move and are completely rebuild when the volume of the box changes.
The current
g2g
function and its reimplementation according to 4 should be benchmarked.Depends on #162.
The text was updated successfully, but these errors were encountered: