Skip to main content

Python tools for working with LAMMPS

Project description

lammpsio

PyPI version PyPI downloads Conda

Tools for working with LAMMPS data and dump files.

lammpsio is a pure Python package that can be installed using pip:

pip install lammpsio

or conda:

conda install -c conda-forge lammpsio

Snapshot

The particle configuration is stored in a Snapshot. A Snapshot holds the data for N particles, the simulation Box, and the timestep. The Box follows the LAMMPS conventions for its shape and bounds. Here is a 3-particle configuration in an orthorhombic box centered at the origin at step 100:

box = lammpsio.Box((-2,-3,-4), (2,3,4))
snapshot = lammpsio.Snapshot(3, box, step=100)

These constructor arguments are available as attributes:

  • N: number of particles (int)
  • box: bounding box (Box)
  • step: timestep counter (int)

The data contained in a Snapshot per particle is:

  • id: (N,) array atom IDs (dtype: int, default: runs from 1 to N)
  • position: (N,3) array of coordinates (dtype: float, default: (0,0,0))
  • image: (N,3) array of periodic image indexes (dtype: int, default: (0,0,0))
  • velocity: (N,3) array of velocities (dtype: float, default: (0,0,0))
  • molecule: (N,) array of molecule indexes (dtype: int, default: 0)
  • typeid: (N,) array of type indexes (dtype: int, default: 1)
  • mass: (N,) array of masses (dtype: float, default: 1)
  • charge: (N,) array of charges (dtype: float, default: 0)

All values of indexes will follow the LAMMPS 1-indexed convention, but the arrays themselves are 0-indexed.

The Snapshot will lazily initialize these per-particle arrays as they are accessed to save memory. Hence, accessing a per-particle property will allocate it to default values. If you want to check if an attribute has been set, use the corresponding has_ method instead (e.g., has_position()):

snapshot.position = [[0,0,0],[1,-1,1],[1.5,2.5,-3.5]]
snapshot.typeid[2] = 2
if not snapshot.has_mass():
    snapshot.mass = [2.,2.,10.]

Data files

A LAMMPS data file is represented by a DataFile. The file must be explicitly read() to get a Snapshot:

f = lammpsio.DataFile("config.data")
snapshot = f.read()

The atom_style will be read from the comment in the Atoms section of the file. If it is not present, it must be specified in the DataFile. If atom_style is specified and also present in the file, the two must match or an error will be raised.

There are many sections that can be stored in a data file, but lammpsio does not currently understand all of them. You can check DataFile.known_headers, DataFile.unknown_headers, DataFile.known_bodies and DataFile.unknown_bodies for lists of what is currently supported.

A Snapshot can be written using the create() method:

f = lammpsio.DataFile.create("config2.data", snapshot)

A DataFile corresponding to the new file is returned by create().

Dump files

A LAMMPS dump file is represented by a DumpFile. The actual file format is very flexible, but by default embeds a schema that can be read:

traj = lammpsio.DumpFile(filename="atoms.lammpstrj")

If the schema does not exist for some reason, it can be manually specified as a dictionary. Valid keys for the schema match the names and shapes in the Snapshot. The keys requiring only 1 column index are: id, typeid, molecule, charge, and mass. The keys requiring 3 column indexes are position, velocity, and image.

LAMMPS will dump particles in an unknown order unless you have used the dump_modify sort option. If you want particles to be ordered by id in the Snapshot, use sort_ids=True (default).

A DumpFile is iterable, so you can use it to go through all the snapshots of a trajectory:

for snap in traj:
    print(snap.step)

You can also get the number of snapshots in the DumpFile, but this does require reading the entire file: so use with caution!

num_frames = len(traj)

Random access to snapshots is not currently implemented, but it may be added in future. If you want to randomly access snapshots, you should load the whole file into a list:

snaps = [snap for snap in traj]
print(snaps[3].step)

Keep in the mind that the memory requirements for this can be huge!

A DumpFile can be created from a list of snapshots:

t = lammpsio.DumpFile.create("atoms.lammpstrj", schema, snaps)

The object representing the new file is returned and can be used.

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

lammpsio-0.4.1.tar.gz (19.7 kB view details)

Uploaded Source

Built Distribution

lammpsio-0.4.1-py3-none-any.whl (16.0 kB view details)

Uploaded Python 3

File details

Details for the file lammpsio-0.4.1.tar.gz.

File metadata

  • Download URL: lammpsio-0.4.1.tar.gz
  • Upload date:
  • Size: 19.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for lammpsio-0.4.1.tar.gz
Algorithm Hash digest
SHA256 6c7a6958cafa7e3c20e6b0dc355efe7607e116df47bb9e6cfbc30a7e2857c11d
MD5 a51f6337ac329bd7a6a9738bc76262bc
BLAKE2b-256 701d2c4ef71c0cf69e171bf98805c58faaaa89a40fb40e8521d5827eb831bb93

See more details on using hashes here.

File details

Details for the file lammpsio-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: lammpsio-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for lammpsio-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1d18553cee70c6a05dda5cefc970579289260dedc19bc7c4423aab168c6c95c7
MD5 9c911d2f8caa4986fffb0ad68edd45d2
BLAKE2b-256 52fddc709d08c56cbd1a770209500b40bee287c86598dd36edaf7bd5040ba6cb

See more details on using hashes here.

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