This commit is contained in:
Pierre-Francois Loos 2019-04-02 09:22:30 +02:00
parent 13831505c6
commit 78025c4826
18 changed files with 147001 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
%mem=100GB
%nproc=24
#p ROCCSD(T,FreezeInnerNobleGasCore) cc-pV5Z pop=full gfprint
G2
0,2
Be
H,1,RBEH
RBEH=1.34380733

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
0,2
Be
H,1,RBEH
RBEH=1.34380733

View File

@ -0,0 +1,11 @@
%mem=100GB
%nproc=24
#p ROCCSD(T,FreezeInnerNobleGasCore) cc-pV5Z pop=full gfprint
G2
0,1
Li
Li,1,R
R=2.72127987

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
0,1
Li
Li,1,R
R=2.72127987

View File

@ -0,0 +1,11 @@
%mem=100GB
%nproc=24
#p ROCCSD(T,FreezeInnerNobleGasCore) cc-pV5Z pop=full gfprint
G2
0,1
Li
H,1,R
R=1.61452972

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
0,1
Li
H,1,R
R=1.61452972

View File

@ -0,0 +1,11 @@
%mem=100GB
%nproc=24
#p ROCCSD(T,FreezeInnerNobleGasCore) cc-pV5Z pop=full gfprint
G2
0,1
Na
Na,1,R
R=3.0149584

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
0,1
Na
Na,1,R
R=3.0149584

View File

@ -0,0 +1,6 @@
%mem=100GB
%nproc=24
#p ROCCSD(T,FreezeInnerNobleGasCore) cc-pV5Z pop=full gfprint
G2

View File

@ -0,0 +1,8 @@
#! /bin/bash
for OUT in $( ls *.out ); do
MOL=${OUT%.*}
qp_convert_output_to_ezfio -o ${MOL} ${MOL}.out
done

View File

@ -0,0 +1,17 @@
#! /bin/bash
if [ $# != 1 ]
then
echo "Please provide template file"
fi
if [ $# = 1 ]
then
for XYZ in $( ls *.xyz ); do
MOL=${XYZ%.*}
cat $1 ${MOL}.xyz > ${MOL}.inp
done
fi

View File

@ -0,0 +1,10 @@
#! /bin/bash
#SBATCH -p xeonv3 -c 24 -n 1 -N 1
module load g09/d01
for INP in $( ls *.inp ); do
MOL=${INP%.*}
g09 ${MOL}.inp ${MOL}.out
done