mirror of
https://asciireactor.com/otho/lammps-graphene.git
synced 2024-11-22 21:05:07 +00:00
19 lines
417 B
Plaintext
19 lines
417 B
Plaintext
|
#!/bin/bash
|
||
|
#$ -N BICRYSTAL_UNITS_RELAX
|
||
|
#$ -S /bin/bash
|
||
|
#$ -l h_rt=23:55:00,cpu_model=E5-2670,pcpus=2
|
||
|
#$ -j y
|
||
|
#$ -cwd
|
||
|
#$ -o output.$JOB_ID
|
||
|
#$ -m abe
|
||
|
#$ -M othoulrich@gmail.com
|
||
|
|
||
|
#script_dir=$( cd $(dirname $0) ; pwd -P |sed 's@^\(.*\)/scripts.*@\1/scripts@')
|
||
|
#mats_dir=$script_dir/../materials/unit_bicrystals
|
||
|
|
||
|
#mkdir $script_dir/../proc
|
||
|
|
||
|
module purge
|
||
|
module load compilers/intel/2013sp1_cluster_xe
|
||
|
time $2 < $3 > $4
|