|
|
在用Gassian 09 计算一个分子的时候,出现了错误,以前从见过的错误。
求高手们参考参考。不胜感激!
系统的错误信息如下:
--------------------------------------------- System error information ---------------------------------------------------------------
Problem with file /home/software/gaussian/g09/l1.exe omode 33261 compare 7.
Error: segmentation violation
rax 0000000000000000, rbx 0000000000000203, rcx ffffffffffffffff
rdx 0000000000002767, rsp 00007fffb1aec208, rbp 00007fffb1af2f75
rsi 000000000000000b, rdi 0000000000002767, r8 00002b18c422b160
r9 0000000000000000, r10 00007fffb1aebf90, r11 0000000000000202
r12 00007fffb1af2f90, r13 00007fffb1af2690, r14 00007fffb1af2f90
r15 00007fffb1af0380
--- traceback not available
-------------------------------------------- System error information ----------------------------------------------------------------
然后gaussian的输出文件如下:
-------------------------------------- Gaussian output error information --------------------------------------
Entering Gaussian System, Link 0=/home/software/gaussian/g09/g09
Files in the Gaussian directory are world accessible.
This must be fixed.
-------------------------------------- Gaussian output error information --------------------------------------
初始的gaussian输入文件如下:
-------------------------------------- Gaussian input file --------------------------------------
%NProcShared=32
%Chk=checkpoint.chk
#P AM1/STO-3G pop=chelpg scf=(direct)
L0617 Gaussian AM1
-10 1
O
H 1 B1
C 1 B2 2 A2
H 3 B3 1 A3 2 D3
***
*** (下面的内容省略了)
-------------------------------------- Gaussian input file --------------------------------------
任务提交的脚本如下:
-------------------------------------- job submitting script --------------------------------------
#!/bin/bash
#$ -pe mpi 32 #no. of processors going to using, can assign up to 128
#$ -N LAM1 #job name
#$ -cwd #change to working directory
#$ -e output2.err #specify file name for standard error
#$ -o output2.out #specify file name for standard output
# setting up Guassian environment
export g09root=/home/software/gaussian
# $HOME/tmp folder already been changed by chmod -R 777 $HOME/tmp
export GAUSS_SCRDIR=$HOME/tmp
source $g09root/g09/bsd/g09.profile
export MACHINEFILE=$TMPDIR/machines
filename=myjob
$g09root/g09/g09 < ${filename}.com > ${filename}.out
-------------------------------------- job submitting script --------------------------------------
|
|