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.
rebuild_nemo_batch_XC40_METO in branches/UKMO/dev_r7681_rebuild_nemo/NEMOGCM/TOOLS/REBUILD_NEMO/BATCH_TEMPLATES – NEMO

source: branches/UKMO/dev_r7681_rebuild_nemo/NEMOGCM/TOOLS/REBUILD_NEMO/BATCH_TEMPLATES/rebuild_nemo_batch_XC40_METO @ 7683

Last change on this file since 7683 was 7683, checked in by timgraham, 7 years ago

#1848 First commit of modified code

  • Property svn:executable set to *
File size: 293 bytes
Line 
1#!/bin/bash --login
2#PBS -N Rebuild_Nemo
3#PBS -q shared
4#PBS -l ncpus=NTHREADS
5#PBS -l walltime=1:0:0
6
7export OMP_NUM_THREADS=NTHREADS
8indir=INDIR
9nam_rebuild=NAMELIST
10
11ulimit -s unlimited
12
13module load cray-snplauncher
14cd $PBS_O_WORKDIR
15${indir}/rebuild_nemo.exe $nam_rebuild
16
17RC=$?
18
19exit $RC
Note: See TracBrowser for help on using the repository browser.