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
RevLine 
[3478]1#! /bin/sh
[3813]2### This is an example of a runscript for the LSF queueing system
[3399]3#BSUB -a poe
[3478]4#BSUB -J GYRE_BFM         # Name of the job.
[3399]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
[3478]9#BSUB -n 4            # Number of CPUs
[3399]10
[3478]11set -evx
12
[3399]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
[3478]21EXP="EXP00"
22
[3813]23workdir="TO_BE_SET_BY_USER"
[3399]24execdir=`pwd`
25
[3478]26if [ ! -d ${workdir} ] ; then
27  mkdir -p ${workdir}
28fi
29
30cd ${workdir}
[3399]31rm -rf *
[3478]32# Copy files to exp folder
33cp ${execdir}/opa ./opa.x
[3399]34cp ${execdir}/* ./
35
[3478]36# Launch the model
37
[3813]38mpirun.lsf opa.x
[3478]39
40
Note: See TracBrowser for help on using the repository browser.