Skip to content

Commit 07e8944

Browse files
committed
added psii4 submit script
1 parent 92e492d commit 07e8944

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

arc/settings/submit.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,33 @@
124124
cp input.log $SubmitDir/
125125
rm -rf $WorkDir
126126
127+
""",
128+
129+
'psi4': """#!/bin/bash -l
130+
#SBATCH -p normal
131+
#SBATCH -J {name}
132+
#SBATCH -N 1
133+
#SBATCH -n {cpus}
134+
#SBATCH --time={t_max}
135+
#SBATCH --mem-per-cpu={memory}
136+
#SBATCH -o out.txt
137+
#SBATCH -e err.txt
138+
139+
echo "============================================================"
140+
echo "Job ID : $SLURM_JOB_ID"
141+
echo "Job Name : $SLURM_JOB_NAME"
142+
echo "Starting on : $(date)"
143+
echo "Running on node : $SLURMD_NODENAME"
144+
echo "Current directory : $(pwd)"
145+
echo "============================================================"
146+
147+
touch initial_time
148+
149+
conda activate psi4_env
150+
psi4 input.dat
151+
152+
touch final_time
153+
127154
""",
128155
'molpro': """#!/bin/bash -l
129156
#SBATCH -p long

0 commit comments

Comments
 (0)