-
Notifications
You must be signed in to change notification settings - Fork 1
/
submit-time-1936.sh
executable file
·43 lines (31 loc) · 1.25 KB
/
submit-time-1936.sh
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
#!/bin/bash
## --------------------------------------------------------
## RENAME for your job
#PBS -N topo-1936
## DIRECTORY where this job is run
#PBS -d ./
## GROUP to run under, or run under backfill
#PBS -W group_list=hyak-stf
## NUMBER nodes, CPUs per node, and MEMORY
#PBS -l nodes=3:ppn=16,mem=180gb
## WALLTIME (defaults to 1 hour, always specify for longer jobs)
#PBS -l walltime=06:00:00
## LOG the (stderr and stdout) job output in the directory
#PBS -j oe -o .
## EMAIL to send when job is aborted, begins, and terminates
#PBS -m abe -M [email protected]
## LOAD modules needed
module load matlab_2015b
module load contrib/openscad
module load contrib/starccm_12.02.010
## RUN my simulation file in batch mode
starSimFile="time-1936"
ROMStime="1936"
matlab -nodesktop -nosplash < topoCascadia_UserInputs_time${ROMStime}.m 2>&1 | tee log.topoCascadia-time${ROMStime}
cd cases/${starSimFile}
echo 'running starccm from directory:'
pwd
starccm+ -batch ../../macros/_main_ROMS_nesting_step4_Solution.java -np ${PBS_NP} -machinefile ${PBS_NODEFILE} -licpath [email protected] -batch-report ${starSimFile}.sim 2>&1 | tee log.run_${starSimFile}
# cd ../..
# mv cases/${starSimFile} cases/${starSimFile}_time${ROMStime}
echo 'all finished, have a nice day'