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.
job.ksh in branches/2011/dev_r2802_MERCATOR10_diadct/NEMOGCM/TOOLS/SECTIONS_DIADCT/run – NEMO

source: branches/2011/dev_r2802_MERCATOR10_diadct/NEMOGCM/TOOLS/SECTIONS_DIADCT/run/job.ksh @ 2849

Last change on this file since 2849 was 2849, checked in by cbricaud, 13 years ago

tools to compute sections pathway

  • Property svn:executable set to *
File size: 912 bytes
RevLine 
[2849]1#!/bin/ksh
2set -x
3#####################################################
4#     CONFIGURATION CHOICE                          #
5#####################################################
6CONFIG=ORCA2_LIM
7
8#####################################################
9#     CONFIGURATION DESCRIPTION                     #
10#####################################################
11case $CONFIG in
12#
13ORCA2)
14export INSPACE=/dataref/rd/INITIALISATION/ORCA2
15COOR_FIL=coordinates.nc
16jpidta=182
17jpjdta=149
18jpizoom=1
19jpjzoom=1
20;;
21#
22esac
23
24#####################################################
25#     RUN                                           #
26#####################################################
27BIN=diadct_sections
28
29export CTLDIR=`pwd`
30cd ${CTLDIR}
31rm -f coordinates.nc
32cp ../src/${BIN} .
33ln -s $INSPACE/$COOR_FIL ./coordinates.nc
34./${BIN}  $jpidta $jpjdta $jpizoom $jpjzoom
35mv section_ijglobal.diadct section_ijglobal.diadct_$CONFIG 
Note: See TracBrowser for help on using the repository browser.