* (WIP) Minor improvement + documentation.

This commit is contained in:
Wirawan Purwanto
2022-09-30 17:22:19 -04:00
parent 5edd528511
commit c4601a5a30

View File

@@ -1,4 +1,14 @@
#!/bin/bash -l
#
# QUANTUM ESPRESSO (PWSCF) SUBMISSION SCRIPT
#
# Author: ODU Research Computing Services
#
# Usage: g09slurm INPUT_FILE.com [OUTPUT_FILE.out] [START_TIME]
MYSELF=$0
MYNAME=$(basename "$MYSELF")
module load openmpi/3.1.4
module load quantum-espresso/6.3
@@ -8,7 +18,7 @@ name=`basename $0`
if [ $# -ne 3 ]; then
echo "Usage: $name [number of processors {1 - 256}] [inputfile] [outputfile]"
echo
echo "Example: $name 4 data.in results.out"
echo "Example: $name 4 model.in results.out"
exit -1
fi