!/bin/bash #SBATCH -p v6_384 #SBATCH -N 1 #SBATCH -n 16 source /public5/soft/modules/module.sh module load mpi/oneAPI/2022.1 export PATH=/public5/home/sch9140/6.3.2/vasp.6.3.2/bin:$PATH cat > INCAR << end System = fcc Si ISTART = 0 ! start from scratch ICHARG = 2 ! superposition of atomic charge densities ENCUT = 240 ! energy cutoff ISMEAR = 0 ! Gaussian smearing SIGMA = 0.1 ! end cat > KPOINTS << end K-Points 0 Monkhorst Pack 11 11 11 0 0 0
时间: 2023-05-21 10:06:55 浏览: 154
!/bin/bash 是bash程序的一行开头,指示操作系统使用bash shell来解释执行该程序中的命令。这是一种标准的Unix/Linux系统中使用的脚本文件开头声明方式,表示运行该脚本需要使用bash shell环境解释器。
阅读全文