Skip to main content

Python interface for running LAMMPS input scripts

Project description

LAMMPS simulator

A light-weight Python package for launching LAMMPS simulations. Given a LAMMPS input script, the simulation is launched from a specified working directory. The default behavior is to copy the input script and all dependencies to the working directory, making it easy to redo the simulations. Simulations can be submitted directly to the Slurm simulation queue.

Installation

Install package from source using pip:

$ pip install lammps-simulator

Prerequisites

  1. Python 3.3+ (subprocess.DEVNULL from 3.3 needed)
  2. LAMMPS (Any recent version)

Basic usage

To run a LAMMPS script from the current directory, the script has to be specified and the way of running the simulation has to be defined. The easiest way of doing this is to use the default simulation object, sim:

from lammps_simulator import sim

sim.set_input_script("script.in")
sim.run(num_procs=4, lmp_exec="lmp")

where the LAMMPS input script script.in is launched on 4 CPU processes by calling the LAMMPS executable lmp. This corresponds to running

$ mpirun -n 4 lmp -in script.in

Defining working directory and copy files to it

Associating each simulation with a respective working directory is good practice, as it makes it easy to rerun the simulation. Create a simulator object associated with a directory by:

from lammps_simulator import Simulator

sim = Simulator("simulation", overwrite=False)

The argument overwrite can be set to True if the contents of the simulation should overwrite a potentially existing simulation directory.

Often, the LAMMPS script requires other files, like parameter files, data files or other LAMMPS scripts. The function copy_to_wd can be used to copy any file to the working directory:

sim.copy_to_wd("parameters.vashishta")
sim.copy_to_wd("pos.data")
sim.copy_to_wd("compute_something.in")

or more compact:

sim.copy_to_wd("parameters.vashishta", "pos.data", "compute_something.in")

Assign variables to LAMMPS script

If your LAMMPS script takes command line variables, they can be specified by

sim.set_input_script("script.in", var1=v1, var2=v2, ..., varN=vN)

or

lmp_vars = {'var1': v1, 'var2': v2, ... 'varN': vN}
sim.set_input_script("script.in", **lmp_vars)

Variables might also be lists (index variables in LAMMPS terms):

sim.set_input_script("script.in", var=[1, 2, 3])

Slurm support

Simulations can be submitted to the Slurm queue by adding slurm=True and Slurm arguments to the run-method. Basic example:

slurm_args = {'job-name'='cpu', 'partition'='normal', 'ntasks'=16, 'nodes'=1}
sim.run(num_procs=16, lmp_exec="lmp", slurm=True, slurm_args=slurm_args)

A job script, job.sh, will then be generated in the simulation directory, which is executed with

sbatch job.sh

For more examples, see the examples pages and the documentation.

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

lammps-simulator-1.2.2.tar.gz (7.6 kB view details)

Uploaded Source

File details

Details for the file lammps-simulator-1.2.2.tar.gz.

File metadata

  • Download URL: lammps-simulator-1.2.2.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/50.3.1 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10

File hashes

Hashes for lammps-simulator-1.2.2.tar.gz
Algorithm Hash digest
SHA256 607b2b7467496c3eef4ba68c4318b7b04b24601bebf18ead5d4316e7ab63a876
MD5 494700200c02ad1e28ff83de193ccbb6
BLAKE2b-256 b8feaaa7fda08b31a5f2dc90492ecb8c40d7cd601d992fcde54256571c93e1db

See more details on using hashes here.

Supported by

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