drkcore

2009/05/28 21:02:21

macbookでGAMESS

rungmsをちょっと書き換える必要がある。 あとgmsにalias切った。

set TARGET=sockets
set SCR=/Users/kzfm/gamess/scr
set GMSPATH=/Users/kzfm/gamess
# location where the .dat and .irc files go
set USERSCR=/Users/kzfm/scr
#
set JOB=$1      # name of the input file xxx.inp, give only the xxx part
set VERNO=$2    # revision number of the executable created by 'lked' step
set NCPUS=$3    # number of compute processes to be run

# provide defaults if last two arguments are not given to this script
if (null$VERNO == null) set VERNO=Jan122009R1
if (null$NCPUS == null) set NCPUS=1

水の構造最適化用インプットファイル

 $CONTRL RUNTYP=OPTIMIZE SCFTYP=RHF MULT=1 MAXIT=100 UNITS=ANGS
 $END
 $SYSTEM TIMLIM=10000 MWORDS=30 MEMDDI=10 $END
 $BASIS GBASIS=N31 NGAUSS=6 NPFUNC=1 NDFUNC=1 $END
 $GUESS GUESS=HUCKEL $END
 $DATA
H2O  RHF/6-31G(D P) OPTIMIZE
CNV   2

O      8.0     0.00000   0.00000   0.00000
H      1.0     0.87      0.00     -0.50

実行

gms h2o.inp > h2o.out

Comments