New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
runscript in branches/2012/dev_MERGE_2012/NEMOGCM/CONFIG/GYRE_BFM/EXP00 – NEMO

source: branches/2012/dev_MERGE_2012/NEMOGCM/CONFIG/GYRE_BFM/EXP00/runscript @ 3771

Last change on this file since 3771 was 3478, checked in by vichi, 12 years ago

Updated namelist for GYRE_BFM

  • Property svn:executable set to *
File size: 856 bytes
Line 
1#! /bin/sh
2
3#BSUB -a poe
4#BSUB -J GYRE_BFM         # Name of the job.
5#BSUB -o GYRE_BFM_%J.out  # Appends std output to file %J.out.
6#BSUB -e GYRE_BFM_%J.err  # Appends std error to file %J.out.
7#BSUB -P nemo
8#BSUB -q poe_short    # queue
9#BSUB -n 4            # Number of CPUs
10##BSUB -x
11###BSUB -R "span[ptile=32]"
12
13set -evx
14
15export MP_WAIT_MODE=poll
16export MP_POLLING_INTERVAL=30000000
17export MP_SHARED_MEMORY=yes
18export MP_EUILIB=us
19export MP_EUIDEVICE=sn_all
20export LDR_CNTRL=TEXTPSIZE=64K@STACKPSIZE=64K@DATAPSIZE=64K
21export MP_TASK_AFFINITY=core
22
23EXP="EXP00"
24
25workdir="/data/ans033/EXPERIMENTS/GYRE_BFM/${EXP}"
26execdir=`pwd`
27
28if [ ! -d ${workdir} ] ; then
29  mkdir -p ${workdir}
30fi
31
32cd ${workdir}
33rm -rf *
34# Copy files to exp folder
35cp ${execdir}/opa ./opa.x
36cp ${execdir}/* ./
37
38# Launch the model
39
40time mpirun.lsf opa.x
41
42echo " ${EXP} DONEEE!!!"
43
Note: See TracBrowser for help on using the repository browser.