Skip to main content

No project description provided

Project description

Neighborlist implementation in rust with python interface

Install

pip install rust-neighborlist

Test

import numpy as np
pos = np.random.uniform(-4.0, 3.0, (100, 3))
cutoff = 2.0


# Using ase
import ase
import ase.neighborlist

a = ase.Atoms(positions=pos)
i2, j2, d2, D2 = ase.neighborlist.neighbor_list("ijdD", a, cutoff, self_interaction=False)


# Using rust neighborlist
from neighborlist import neighbor_list

i1, j1, d1, D1 = neighbor_list(pos, cutoff, self_interaction=False)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rust_neighborlist-0.1.1.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

rust_neighborlist-0.1.1-cp37-abi3-macosx_11_0_arm64.whl (188.0 kB view hashes)

Uploaded CPython 3.7+ macOS 11.0+ ARM64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page