-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathts-sym.sh
More file actions
55 lines (47 loc) · 845 Bytes
/
ts-sym.sh
File metadata and controls
55 lines (47 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
#$ -pe smp 4
#$ -q debug
#$ -N gamess
module load gamess
THISNAME=ts-sym
MYRUNGAMESS=$HOME/CBE60547/Labs/Gamess/bin/rungms
cat <<EOF > ~/.gmsrc
set SCR=/scratch365/$USER
set USERSCR=$PWD
EOF
cat<<'EOF' > ts-sym.inp
$CONTRL SCFTYP=RHF DFTTYP=PBE RUNTYP=OPTIMIZE COORD=ZMT NZVAR=18 ISPHER=1 $END
$BASIS GBASIS=PCseg-0 $END
$DATA
FCH2CH2F eclipsed TS
CS
C
C 1 r1
F 2 r2 1 A1
H 2 r3 1 A2 3 D1
H 2 r4 1 A3 3 D2
F 1 r5 2 A4 3 D3
H 1 r6 2 A5 6 D4
H 1 r7 2 A6 6 D5
r1=1.5
r2=1.4
r3=1.1
r4=1.1
r5=1.5
r6=1.1
r7=1.1
A1=109.54214
A2=109.54214
A3=109.54214
A4=109.54214
A5=109.54214
A6=109.54214
D1=120.
D2=-120.
D3=0.
D4=120.
D5=-120.
$END
EOF
$MYRUNGAMESS $THISNAME.inp > $THISNAME.out
grep 'NSERCH:' $THISNAME.out | gawk '{print $4, $7, $9}' > $THISNAME.sum