root / examples / Gaussian / HCN_zmat / run_Path @ 12
Historique | Voir | Annoter | Télécharger (1,14 ko)
1 |
#!/bin/bash |
---|---|
2 |
|
3 |
###################################### |
4 |
# |
5 |
# you might have to change the following variables |
6 |
# |
7 |
###################################### |
8 |
# |
9 |
# Name of the input file |
10 |
# |
11 |
Job=HCN_Gaussian |
12 |
# |
13 |
# Where is Path.exe ?? |
14 |
# |
15 |
PathExe=../../../src/Path.exe |
16 |
# |
17 |
### Gaussian Stuff |
18 |
# Change the path for g09root !!! |
19 |
export g09root=/home/pfleura2/Programs/G09 |
20 |
export GAUSS_SCRDIR=/tmp |
21 |
source $g09root/g09/bsd/g09.profile |
22 |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/lib/ |
23 |
# |
24 |
# Some libraries... |
25 |
# |
26 |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/fc/9.1.037/lib/:/opt/intel/cc/9.1.045/lib:/usr/lib:/opt/intel/mkl/8.1/lib/32 |
27 |
export PATH=/opt/intel/fc/9.1.037/bin/:/opt/intel/cc/9.1.045/bin/:$PATH:$HOME/bin:/usr/local/mpich-intel9/bin |
28 |
export LD_RUN_PATH=$LD_RUN_PATH:/opt/intel/fc/9.1.037/lib/:/opt/intel/cc/9.1.045/lib |
29 |
export MANPATH=$MANPATH:/opt/intel/fc/9.1.037/man/:/opt/intel/cc/9.1.045/man |
30 |
export LANG=C |
31 |
# |
32 |
#Usually nothing has to be changed after this line |
33 |
# |
34 |
################################################# |
35 |
|
36 |
############################### |
37 |
# |
38 |
# We launch PATH |
39 |
# |
40 |
############################### |
41 |
ln -fs ${PathExe} . |
42 |
|
43 |
./Path.exe ${Job}.path > ${Job}.out 2> ${Job}.err |
44 |
|
45 |
|
46 |
|