forked from HPCNow/SubmitScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gaussian-09-linda-iqtc01.sub
49 lines (45 loc) · 1.36 KB
/
gaussian-09-linda-iqtc01.sub
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
#!/bin/csh
##########################################
# SGE options and parameters
##########################################
# (1) Name of the job
#$ -N test_gaus
# (2) Requested resources
# Parallel Environment and number of cores
#$ -pe linda 8
# Queue
#$ -q iqtc04.q
# Shell
#$ -S /bin/csh
# (3) Output files
#$ -cwd
#$ -o testl_gaus.out
#$ -e testl_gaus.err
# (4) Remove the first '#' of the following 2 lines if you want to receive an email when the job ends.
##$ -m e
##$ -M [email protected]
##########################################
# User environment.
##########################################
# Load the modules needed
module load gaussian/g09b01
##########################################
# Copying files needed
##########################################
# We copy the inputs to the directory where the jobs will run
cd $TMPDIR
cp -r $HOME/proves/h2o_opt.dat .
# Es carreguen algunes variables pel Linda
setenv GAUSS_SCRDIR $TMPDIR
setenv NODES \"`cat $TMPDIR/tsnet.nodes`\"
setenv GAUSS_LFLAGS "-v -nodelist ${NODES} -mp 4"
##########################################
# Run the job
##########################################
# We run gaussian g09
g09 < ./h2o_opt.dat > h2ol_opt.log
##########################################
# Copy the results to our home directory
##########################################
mkdir $HOME/proves/resultatl
cp -r . $HOME/proves/resultatl/