I have written a Python script to calculate the distance between two points in 3D space while accounting for periodic boundary conditions. The problem is that I need to do this calculation for many, many points and the calculation is quite slow. Here is my function.
def PBCdist(coord1,coord2,UC):
dx = coord1[0] - coord2[0]
if (abs(dx) > UC[0]*0.5):
dx = UC[0] - dx
dy = coord1[1] - coord2[1]
if (abs(dy) > UC[1]*0.5):
dy = UC[1] - dy
dz = coord1[2] - coord2[2]
if (abs(dz) > UC[2]*0.5):
dz = UC[2] - dz
dist = np.sqrt(dx**2 + dy**2 + dz**2)
return dist
I then call the function as so
for i, coord2 in enumerate(coordlist):
if (PBCdist(coord1,coord2,UC) < radius):
do something with i
Recently I read that I can greatly increase performance by using list comprehension. The following works for the non-PBC case, but not for the PBC case
coord_indices = [i for i, y in enumerate([np.sqrt(np.sum((coord2-coord1)**2)) for coord2 in coordlist]) if y < radius]
for i in coord_indices:
do something
Is there some way to do the equivalent of this for the PBC case? Is there an alternative that would work better?
Have a look at Ian Ozsvalds high performance python tutorial. It contains lots of suggestions on where you can go next.
Including:
You should write your
distance()
function in a way that you can vectorise the loop over the 5711 points. The following implementation accepts an array of points as either thex0
orx1
parameter:Example:
The result is the array of distances between the points passed as second parameter to
distance()
and each point inpoints
.Here
a
andb
are lists of vectors you wish to calculate the distance between andbounds
are the boundaries of the space (so here all three dimensions go from 0 to 10 and then wrap). It calculates the distances betweena[0]
andb[0]
,a[1]
andb[1]
, and so on.I'm sure numpy experts could do better, but this will probably be an order of magnitude faster than what you're doing, since most of the work is now done in C.
I have found that
meshgrid
is very useful for generating distances. For example:I now have an array (
radius_squared
) where every entry specifies the square of the distance from the array position[x_coord, y_coord]
.To circularize the array, I can do the following:
I now have all the array distances circularized with vector math.