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/2014/dev_r4650_UKMO14.5_SST_BIAS_CORRECTION/NEMOGCM/CONFIG/GYRE_BFM/EXP00 – NEMO

source: branches/2014/dev_r4650_UKMO14.5_SST_BIAS_CORRECTION/NEMOGCM/CONFIG/GYRE_BFM/EXP00/runscript @ 5967

Last change on this file since 5967 was 5967, checked in by timgraham, 8 years ago

Reset keywords before merging with head of trunk

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 829 bytes
Line 
1#! /bin/sh
2### This is an example of a runscript for the LSF queueing system
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
11set -evx
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"
22
23workdir="TO_BE_SET_BY_USER"
24execdir=`pwd`
25
26if [ ! -d ${workdir} ] ; then
27  mkdir -p ${workdir}
28fi
29
30cd ${workdir}
31rm -rf *
32# Copy files to exp folder
33cp ${execdir}/opa ./opa.x
34cp ${execdir}/* ./
35
36# Launch the model
37
38mpirun.lsf opa.x
39
40
Note: See TracBrowser for help on using the repository browser.