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/UKMO/icebergs_restart_single_file/NEMOGCM/TOOLS/SECTIONS_DIADCT/run – NEMO

source: branches/UKMO/icebergs_restart_single_file/NEMOGCM/TOOLS/SECTIONS_DIADCT/run/job.ksh @ 6019

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

Reinstated svn keywords before upgrading to head of trunk

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 1.3 KB
RevLine 
[2849]1#!/bin/ksh
2set -x
3#####################################################
4#     CONFIGURATION CHOICE                          #
5#####################################################
[2866]6#CONFIG=ORCA2_LIM GYRE
[2849]7CONFIG=ORCA2_LIM
8
9#####################################################
10#     CONFIGURATION DESCRIPTION                     #
11#####################################################
[2943]12# each configuration is defined by:
[2947]13#   - INSPACE: directory the coordinate netcdf file is
14#   - COOR_FIL: configuration's coordinate netcdf file
15#   - LIST:     configuration's list of sections
[2943]16#
17#####################################################
[2849]18case $CONFIG in
19#
[2851]20ORCA2_LIM)
[2866]21INSPACE=/dataref/rd/INITIALISATION/ORCA2
[2849]22COOR_FIL=coordinates.nc
[2866]23LIST=list_sections.ascii_global
[2849]24;;
25#
[2866]26GYRE)
[2943]27INSPACE=/perm/ms/fr/ar5
[2866]28COOR_FIL=mesh_mask.nc
29LIST=list_sections.ascii_GYRE
30;;
31#
[2849]32esac
33
34#####################################################
35#     RUN                                           #
36#####################################################
[2859]37BIN=diadct_sections.exe
[2849]38
39export CTLDIR=`pwd`
40cd ${CTLDIR}
[2866]41rm -f coordinates.nc ${BIN} list_sections.ascii
[2859]42cp ../${BIN} .
[2866]43ln -sf ${LIST} list_sections.ascii
[2849]44ln -s $INSPACE/$COOR_FIL ./coordinates.nc
[2859]45./${BIN}
[2849]46mv section_ijglobal.diadct section_ijglobal.diadct_$CONFIG 
Note: See TracBrowser for help on using the repository browser.