LAMMPS
LAMMPS is a classical molecular dynamics (MD) code, see https://docs.lammps.org/Intro_features.html
A general overview of LAMMPS is given in the intro section of the official LAMMPS documentation.
Table of Contents
lamp: a device that generates light, heat, or therapeutic radiation; something that illumines the mind or soul -- www.dictionary.com
In the HPC Cluster, LAMMPS is build from source in multiple versions. By default GCC and OpenMPI are used.
You have to load additional modules until you can load LAMMPS:
module load foss/2021a
module load LAMMPS/23Jun2022-kokkos
Available LAMMPS versions can be listed with module spider LAMMPS
. Specifying a version will list the needed modules: module spider LAMMPS/23Jun2022-kokkos
MPI Parallel Job:
#!/usr/bin/zsh
### Request the time you need for execution. The full format is D-HH:MM:SS
### You must at least specify minutes or days and hours and may add or
### leave out any other parameters
#SBATCH --time=80
### Request 12 processes, all on a single node
#SBATCH --nodes=1
#SBATCH --ntasks=12
### Load required modules
module load foss/2021a
module load LAMMPS/23Jun2022-kokkos
### start the MPI binary
$MPIEXEC $FLAGS_MPI_BATCH lmp -in in.lj