Surface Energy Helper Files
From EVOCD
<Back to Properties of Aluminum
Contents |
PBS Script
Purpose
This PBS script submits a jobs to the computational cluster "Raptor" at HPC2.
Implementation
For this script only the name of the job (first line) needs to be modified. Once that is done it can be run the same way as the PBS script in the previous section.
#PBS -N <name of output files> #PBS -l nodes=4:ppn=4 #PBS -l walltime=48:00:00 #PBS -q q64p48h@raptor #PBS -mea #PBS -r n #PBS -V cd $PBS_O_WORKDIR mpiexec -np 16 ./job.sh
Job shell script
Purpose
Shell scripts are mainly used as macros or "list of predefined commands" to run.
Implementation
Here, the path to the VASP executable needs to be input. Then save this file as "job.sh".
#!/bin/bash ulimit -s unlimited <Absolute path of VASP exe>