SERIAL

#!/bin/bash

#SBATCH -J job_name                # name of the job

#SBATCH -p standard-low            # name of the partition: available options "standard,standard-low,gpu,gpu-low,hm"

#SBATCH -n 1                       # no of processes

#SBATCH -t 01:00:00                # walltime in HH:MM:SS, Max value 72:00:00

 

#list of modules you want to use, for example

#module load apps/lammps/12.12.2018/intel

 

#name of the executable

exe=name_executable 


#run the application

$exe                               # specify the application command-line options, if any, after $exe