#!/bin/bash #===========================================================# # Job submission script for VASP # # Created by flmore on February 12, 2023 # # update url: https://flmore.github.io/2023/33c11a8e.html # #===========================================================# # 1. PBS job control
#PBS -S /bin/bash #PBS -N vasp #PBS -l nodes=1:ppn=24 # We can also manually set the specified node to calculate. #PBS -q batch #PBS -l walltime=30:00:00 #PBS -m e #PBS -M your-email-name@example.com # A reminder message will be sent to this mailbox when the task is over.
#!/bin/bash #===========================================================# # Job submission script for CP2K # # Created by flmore on February 12, 2022 # # update url: https://flmore.github.io/2023/33c11a8e.html # #===========================================================# # 1. PBS job control
#PBS -S /bin/bash #PBS -N cp2k #PBS -l nodes=1:ppn=24 #PBS -q batch #PBS -l walltime=30:00:00 #PBS -m e #PBS -M your-email-name@example.com # A reminder message will be sent to this mailbox when the task is over.