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_r3379_CMCC6_topbfm/NEMOGCM/CONFIG/PELAGOS_OFF/EXP00 – NEMO

source: branches/2012/dev_r3379_CMCC6_topbfm/NEMOGCM/CONFIG/PELAGOS_OFF/EXP00/runscript @ 3513

Last change on this file since 3513 was 3513, checked in by vichi, 11 years ago

Updated to BFM-V5 and added PELAGOS_OFFLINE

  • Property svn:executable set to *
File size: 982 bytes
Line 
1#! /bin/sh -x
2
3#BSUB -a poe
4#BSUB -J PEL_OFF          # Name of the job.
5#BSUB -o PELAGOS_%J.out  # Appends std output to file %J.out.
6#BSUB -e PELAGOS_%J.err  # Appends std error to file %J.out.
7#BSUB -P nemo
8#BSUB -q poe_short    # queue
9#BSUB -n 128          # Number of CPUs
10#BSUB -x
11#BSUB -R "span[ptile=64]"
12
13export MP_WAIT_MODE=poll
14export MP_POLLING_INTERVAL=30000000
15export MP_SHARED_MEMORY=yes
16export MP_EUILIB=us
17export MP_EUIDEVICE=sn_all
18export LDR_CNTRL=TEXTPSIZE=64K@STACKPSIZE=64K@DATAPSIZE=64K
19export MP_TASK_AFFINITY=core
20
21EXP="EXP00_OFF"
22
23workdir="/data/ans017/EXPERIMENTS/PELAGOS/${EXP}"
24datadir="/users/home/ans017/WORKS/GIT/ORCA2-DATA"
25execdir=`pwd`
26
27if [ ! -d ${workdir} ] ; then
28  mkdir -p ${workdir}
29fi
30
31cd ${workdir}
32rm -rf *
33# Copy input files to exp folder
34cp ${execdir}/* ./
35ln -sf ${datadir}/* ./
36ln -sf ${datadir}/ORCA2-TOP/* ./
37# Get the offline physical data and the mesh_mask
38ln -sf /data/ans017/EXPERIMENTS/ORCA2_LIM/*.nc ./
39
40time mpirun.lsf opa
Note: See TracBrowser for help on using the repository browser.