Skip to content

m3g/CellListMapArticleCodes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CellListMapArticleCodes

Code blocks of the CellListMap paper explained.

The package is available at: http://github.com/m3g/CellListMap.jl

Article: Martínez, L. CellListMap.jl: Efficient and customizable cell list implementation for calculation of pairwise particle properties within a cutoff. https://doi.org/10.48550/arXiv.2202.06427

Code Block 1
Minimal working example for the computation of the sum of distances of 100k particles in a cubic periodic box of side 1 and a cutoff of 0.05.

Code Block 2
General format of the function to be evaluated for each pair of particles closer than the cutoff distance, to be passed to the map_pairwise function.

Code Block 3
Initialization of the system Box, with orthorhombic or triclinic periodic boundary conditions. The system’s geometry is defined by the type of unit cell matrix, and an orthorhombic cell is assumed if a vector of box sides is supplied.

Code Block 4
Computing the cell lists from the coordinates, x, and the system box. Particles are replicated at the boundaries to avoid coordinate wrapping in the function mapping step.

Code Block 5
Mapping the computation of a property into the pairs of particles which, according to the cell lists and system box properties, are within the desired cutoff.

Code Block 6
Calculation of a simple Lennard-Jones potential energy of 3 million Neon atoms in 3 dimensions, in a periodic cubic box with sides of 31.034 nm and a cutoff of 1.2 nm.

Code Block 7
Example code for the calculation of a vector of forces between particles. The function will update the f vector.

Code Block 8
Example code for the calculation of a nearest-neighbor list between two independent sets of particles. A custom reduction function is required to merge lists, keeping the minimum distances.

Code Block 9
Units, uncertainties, and automatic differentiation propagating through pairwise computations with CellListMap.jl.

Code Block 10
Computing a histogram of average pairwise velocities between galaxies, as a function of their relative distances, a typical calculation in astrophysical simulations.

About

Code blocks of the CellListMap paper.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages