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.
sette.sh in branches/UKMO/2014_Surge_Modelling/NEMOGCM/SETTE – NEMO

source: branches/UKMO/2014_Surge_Modelling/NEMOGCM/SETTE/sette.sh @ 5275

Last change on this file since 5275 was 4379, checked in by rfurner, 10 years ago

small changes to SETTE to suit new AMM input tarfile

  • Property svn:executable set to *
File size: 34.5 KB
Line 
1#!/bin/bash
2############################################################
3# Author : Simona Flavoni for NEMO
4# Contact: sflod@locean-ipsl.upmc.fr
5# 2013   : A.C. Coward added options for testing with XIOS in dettached mode
6#
7# sette.sh   : principal script of SET TEsts for NEMO (SETTE)
8# ----------------------------------------------------------------------
9# NEMO/SETTE , NEMO Consortium (2010)
10# Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
11# ----------------------------------------------------------------------
12#
13#############################################################
14#set -x
15set -o posix
16#set -u
17#set -e
18# ===========
19# DESCRIPTION
20# ===========
21#
22# Variables to be checked by user:
23#
24# COMPILER          : name of compiler as defined in NEMOGCM/ARCH directory
25# BATCH_COMMAND_PAR :  name of the command for submitting parallel batch jobs
26# BATCH_COMMAND_SEQ :  name of the command for submitting sequential batch jobs 
27# INTERACT_FLAG     : flag to run in interactive mode "yes"
28#                           to run in batch mode "no"
29# MPIRUN_FLAG       : flag to run in parallel (MPI) "yes"
30#                           to run in sequential mode (NB_PROC = 1) "no"
31# USING_XIOS        : flag to control the activation of key_iomput
32#                      "yes" to compile using key_iomput and link to the external XIOS library
33#                      "no"  to compile without key_iomput and link to the old IOIPSL library
34# USING_MPMD        : flag to control the use of stand-alone IO servers
35#                     requires USING_XIOS="yes"
36#                      "yes" to run in MPMD (detached) mode with stand-alone IO servers
37#                      "no"  to run in SPMD (attached) mode without separate IO servers
38# NUM_XIOSERVERS    : number of stand-alone IO servers to employ
39#                     set to zero if USING_MPMD="no"
40#
41# Principal script is sette.sh, that calls
42#
43#  makenemo  : to create successive exectuables in ${CONFIG_NAME}/BLD/bin/nemo.exe
44#              and links to opa in ${CONFIG_NAME}/EXP00)
45#
46#  param.cfg : sets and loads following directories:
47#
48#   FORCING_DIR         : is the directory for forcing files (tarfile)
49#   INPUT_DIR           : is the directory for input files storing
50#   TMPDIR              : is the temporary directory (if needed)
51#   NEMO_VALIDATION_DIR : is the validation directory
52#
53#   (NOTE: this file is the same for all configrations to be tested with sette)
54#
55#   all_functions.sh : loads functions used by sette (note: new functions can be added here)
56#   set_namelist     : function declared in all_functions that sets namelist parameters
57#   post_test_tidyup : creates validation storage directory and copies required output files
58#                      (solver.stat and ocean.output) in it after execution of test.
59#
60#  VALIDATION tree is:
61#
62#   NEMO_VALIDATION_DIR/WCONFIG_NAME/WCOMPILER_NAME/TEST_NAME/REVISION_NUMBER(or DATE)
63#
64#  prepare_exe_dir.sh : defines and creates directory where the test is executed
65#                       execution directory takes name of TEST_NAME defined for every test
66#                       in sette.sh. (each test in executed in its own directory)
67#
68#  prepare_job.sh     : to generate the script run_job.sh
69#
70#  fcm_job.sh         : run in batch (INTERACT_FLAG="no") or interactive (INTERACT_FLAG="yes")
71#                        see sette.sh and BATCH_TEMPLATE directory
72#
73#  NOTE: jobs requiring initial or forcing data need to have an input_CONFIG.cfg in which
74#        can be found paths to the input tar file)
75#  NOTE: if job is not launched for any reason you have the executable ready in ${EXE_DIR}
76#        directory
77#  NOTE: the changed namelists are left in ${EXE_DIR} directory whereas original namelists
78#        remain in ${NEW_CONF}/EXP00
79#
80#  NOTE: a log file, output.sette, is created in ${SETTE_DIR} with the echoes of
81#        executed commands
82#
83#  NOTE: if sette.sh is stopped in output.sette there is written the last command
84#        executed by sette.sh
85#
86# example use: ./sette.sh
87#########################################################################################
88#
89# Compiler among those in NEMOGCM/ARCH
90COMPILER=tobedefined
91export BATCH_COMMAND_PAR="llsubmit"
92export BATCH_COMMAND_SEQ=$BATCH_COMMAND_PAR
93export INTERACT_FLAG="yes"
94export MPIRUN_FLAG="yes"
95export USING_XIOS="yes"
96#
97export DEL_KEYS="key_iomput"
98if [ ${USING_XIOS} == "yes" ] 
99 then
100   export DEL_KEYS=""
101fi
102#
103# Settings which control the use of stand alone servers (only relevant if using xios)
104#
105export USING_MPMD="no"
106export NUM_XIOSERVERS=4
107export JOB_PREFIX=batch-mpmd
108#
109if [ ${USING_MPMD} == "no" ] 
110 then
111   export NUM_XIOSERVERS=0
112   export JOB_PREFIX=batch
113fi
114#
115#
116if [ ${USING_MPMD} == "yes" ] && [ ${USING_XIOS} == "no"]
117 then
118   echo "Incompatible choices. MPMD mode requires the XIOS server"
119   exit
120fi
121#
122
123# Directory to run the tests
124SETTE_DIR=$(cd $(dirname "$0"); pwd)
125MAIN_DIR=${SETTE_DIR%/SETTE}
126CONFIG_DIR=${MAIN_DIR}/CONFIG
127TOOLS_DIR=${MAIN_DIR}/TOOLS
128COMPIL_DIR=${TOOLS_DIR}/COMPILE
129
130CMP_NAM=${1:-$COMPILER}
131# Copy job_batch_COMPILER file for specific compiler into job_batch_template
132cd ${SETTE_DIR}
133cp BATCH_TEMPLATE/${JOB_PREFIX}-${COMPILER} job_batch_template || exit
134# Description of configuration tested:
135# GYRE            : 1 &  2
136# ORCA2_LIM_PISCES: 3 &  4
137# ORCA2_OFF_PISCES: 5 &  6
138# AMM12           : 7 &  8
139# SAS             : 9 & 10
140# ORCA2_AGRIF_LIM: 11
141for config in 1 2 3 4 5 6 7 8 9 10 11
142
143do
144
145# TESTS FOR GYRE CONFIGURATION
146if [ ${config} -eq 1 ] ;  then
147    ## Restartability tests for GYRE
148    export TEST_NAME="LONG"
149    cd ${CONFIG_DIR}
150    . ./makenemo -m ${CMP_NAM} -n GYRE_LONG -r GYRE -j 8 del_key ${DEL_KEYS}
151    cd ${SETTE_DIR}
152    . ./param.cfg
153    . ./all_functions.sh
154    . ./prepare_exe_dir.sh
155    JOB_FILE=${EXE_DIR}/run_job.sh
156    NPROC=4
157    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
158    cd ${EXE_DIR} 
159    set_namelist namelist_cfg cn_exp \"GYRE_LONG\"
160    set_namelist namelist_cfg nn_it000 1
161    set_namelist namelist_cfg nn_itend 120
162    set_namelist namelist_cfg nn_stock 60
163    set_namelist namelist_cfg ln_clobber .true.
164    set_namelist namelist_cfg nn_fwb 0
165    set_namelist namelist_cfg nn_solv 2
166    set_namelist namelist_cfg jpni 2
167    set_namelist namelist_cfg jpnj 2
168    set_namelist namelist_cfg jpnij 4
169    if [ ${USING_MPMD} == "yes" ] ; then
170       set_xio_using_server iodef.xml true
171    else
172       set_xio_using_server iodef.xml false
173    fi
174    cd ${SETTE_DIR}
175    . ./prepare_job.sh input_GYRE.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
176
177    cd ${SETTE_DIR}
178    export TEST_NAME="SHORT"
179    . ./prepare_exe_dir.sh
180    cd ${EXE_DIR}
181    set_namelist namelist_cfg cn_exp \"GYRE_SHORT\"
182    set_namelist namelist_cfg nn_it000 61
183    set_namelist namelist_cfg nn_itend 120
184    set_namelist namelist_cfg nn_stock 60
185    set_namelist namelist_cfg ln_rstart .true.
186    set_namelist namelist_cfg nn_rstctl 2
187    set_namelist namelist_cfg ln_clobber .true.
188    set_namelist namelist_cfg nn_fwb 0
189    set_namelist namelist_cfg nn_solv 2
190    set_namelist namelist_cfg jpni 2
191    set_namelist namelist_cfg jpnj 2
192    set_namelist namelist_cfg jpnij 4
193    set_namelist namelist_cfg cn_ocerst_in \"GYRE_LONG_00000060_restart\"
194    if [ ${USING_MPMD} == "yes" ] ; then
195       set_xio_using_server iodef.xml true
196    else
197       set_xio_using_server iodef.xml false
198    fi
199    for (( i=1; i<=$NPROC; i++)) ; do
200        L_NPROC=$(( $i - 1 ))
201        L_NPROC=`printf "%04d\n" ${L_NPROC}`
202        ln -sf ../LONG/GYRE_LONG_00000060_restart_${L_NPROC}.nc .
203    done
204    if [ ${USING_MPMD} == "yes" ] ; then
205       set_xio_using_server iodef.xml true
206    else
207       set_xio_using_server iodef.xml false
208    fi
209    cd ${SETTE_DIR}
210    . ./prepare_job.sh input_GYRE.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
211    cd ${SETTE_DIR}
212    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
213fi
214
215if [ ${config} -eq 2 ] ;  then
216    ## Reproducibility tests for GYRE
217    export TEST_NAME="REPRO_1_4"
218    cd ${CONFIG_DIR}
219    . ./makenemo -m ${CMP_NAM} -n GYRE_4 -r GYRE -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
220    cd ${SETTE_DIR}
221    . ./param.cfg
222    . ./all_functions.sh
223    . ./prepare_exe_dir.sh
224    JOB_FILE=${EXE_DIR}/run_job.sh
225    NPROC=4
226    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
227    cd ${EXE_DIR}
228    set_namelist namelist_cfg cn_exp \"GYRE_14\"
229    set_namelist namelist_cfg nn_it000 1
230    set_namelist namelist_cfg nn_itend 60
231    set_namelist namelist_cfg nn_fwb 0
232    set_namelist namelist_cfg nn_bench 0
233    set_namelist namelist_cfg ln_ctl .false.
234    set_namelist namelist_cfg ln_clobber .true.
235    set_namelist namelist_cfg nn_solv 2
236    set_namelist namelist_cfg jpni 1
237    set_namelist namelist_cfg jpnj 4
238    set_namelist namelist_cfg jpnij 4
239    if [ ${USING_MPMD} == "yes" ] ; then
240       set_xio_using_server iodef.xml true
241    else
242       set_xio_using_server iodef.xml false
243    fi
244    cd ${SETTE_DIR}
245    . ./prepare_job.sh input_GYRE.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
246    cd ${SETTE_DIR}
247    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
248
249    cd ${SETTE_DIR}
250    export TEST_NAME="REPRO_2_2"
251    . ./prepare_exe_dir.sh
252    JOB_FILE=${EXE_DIR}/run_job.sh
253    NPROC=4
254    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
255    cd ${EXE_DIR}
256    set_namelist namelist_cfg cn_exp \"GYRE_22\"
257    set_namelist namelist_cfg nn_it000 1
258    set_namelist namelist_cfg nn_itend 60
259    set_namelist namelist_cfg nn_fwb 0
260    set_namelist namelist_cfg ln_ctl .false.
261    set_namelist namelist_cfg ln_clobber .true.
262    set_namelist namelist_cfg nn_solv 2
263    set_namelist namelist_cfg jpni 2
264    set_namelist namelist_cfg jpnj 2
265    set_namelist namelist_cfg jpnij 4
266    if [ ${USING_MPMD} == "yes" ] ; then
267       set_xio_using_server iodef.xml true
268    else
269       set_xio_using_server iodef.xml false
270    fi
271    cd ${SETTE_DIR}
272    . ./prepare_job.sh input_GYRE.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
273    cd ${SETTE_DIR}
274    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
275
276fi
277
278# TESTS FOR ORCA2_LIM_PISCES CONFIGURATION
279if [ ${config} -eq 3 ] ;  then
280    ## Restartability tests for ORCA2_LIM_PISCES
281    export TEST_NAME="LONG"
282    cd ${CONFIG_DIR}
283    . ./makenemo -m ${CMP_NAM} -n ORCA2LIMPIS_LONG -r ORCA2_LIM_PISCES -j 8 del_key ${DEL_KEYS}
284    cd ${SETTE_DIR}
285    . ./param.cfg
286    . ./all_functions.sh
287    . ./prepare_exe_dir.sh
288    JOB_FILE=${EXE_DIR}/run_job.sh
289    NPROC=4
290    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
291    cd ${EXE_DIR}
292    set_namelist namelist_cfg cn_exp \"O2LP_LONG\"
293    set_namelist namelist_cfg nn_it000 1
294    set_namelist namelist_cfg nn_itend 150
295    set_namelist namelist_cfg nn_stock 75
296    set_namelist namelist_cfg ln_clobber .true.
297    set_namelist namelist_cfg nn_fwb 0
298    set_namelist namelist_cfg jpni 2
299    set_namelist namelist_cfg jpnj 2
300    set_namelist namelist_cfg jpnij 4
301    set_namelist namelist_cfg nn_solv 2
302    set_namelist namelist_top_cfg ln_trcdta .false.
303    set_namelist namelist_top_cfg ln_diatrc .false.
304    # put ln_ironsed, ln_river, ln_ndepo, ln_dust to false
305    # if not you need input files, and for tests is not necessary
306    set_namelist namelist_pisces_cfg ln_presatm .false.
307    set_namelist namelist_pisces_cfg ln_varpar .false.
308    set_namelist namelist_pisces_cfg ln_dust .false.
309    set_namelist namelist_pisces_cfg ln_solub .false.
310    set_namelist namelist_pisces_cfg ln_river .false.
311    set_namelist namelist_pisces_cfg ln_ndepo .false.
312    set_namelist namelist_pisces_cfg ln_ironsed .false.
313    set_namelist namelist_pisces_cfg ln_hydrofe .false.
314    if [ ${USING_MPMD} == "yes" ] ; then
315       set_xio_using_server iodef.xml true
316    else
317       set_xio_using_server iodef.xml false
318    fi
319    cd ${SETTE_DIR}
320    . ./prepare_job.sh input_ORCA2_LIM_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
321   
322    cd ${SETTE_DIR}
323    export TEST_NAME="SHORT"
324    . ./prepare_exe_dir.sh
325    cd ${EXE_DIR}
326    set_namelist namelist_cfg cn_exp \"O2LP_SHORT\"
327    set_namelist namelist_cfg nn_it000 76
328    set_namelist namelist_cfg nn_itend 150
329    set_namelist namelist_cfg nn_stock 75
330    set_namelist namelist_cfg ln_rstart .true.
331    set_namelist namelist_cfg nn_rstctl 2
332    set_namelist namelist_cfg ln_clobber .true.
333    set_namelist namelist_cfg nn_fwb 0
334    set_namelist namelist_cfg jpni 2
335    set_namelist namelist_cfg jpnj 2
336    set_namelist namelist_cfg jpnij 4
337    set_namelist namelist_cfg nn_solv 2
338    set_namelist namelist_top_cfg ln_diatrc .false.
339    set_namelist namelist_top_cfg ln_rsttr .true.
340    set_namelist namelist_top_cfg nn_rsttr 2
341    set_namelist namelist_cfg cn_ocerst_in \"O2LP_LONG_00000075_restart\"
342    set_namelist namelist_ice_cfg cn_icerst_in \"O2LP_LONG_00000075_restart_ice\"
343    set_namelist namelist_top_cfg cn_trcrst_in \"O2LP_LONG_00000075_restart_trc\"
344    # put ln_ironsed, ln_river, ln_ndepo, ln_dust
345    # if not you need input files, and for tests is not necessary
346    set_namelist namelist_pisces_cfg ln_presatm .false.
347    set_namelist namelist_pisces_cfg ln_varpar .false.
348    set_namelist namelist_pisces_cfg ln_dust .false.
349    set_namelist namelist_pisces_cfg ln_solub .false.
350    set_namelist namelist_pisces_cfg ln_river .false.
351    set_namelist namelist_pisces_cfg ln_ndepo .false.
352    set_namelist namelist_pisces_cfg ln_ironsed .false.
353    set_namelist namelist_pisces_cfg ln_hydrofe .false.
354    # put ln_pisdmp to false : no restoring to global mean value
355    set_namelist namelist_pisces_cfg ln_pisdmp .false.
356    for (( i=1; i<=$NPROC; i++)) ; do
357        L_NPROC=$(( $i - 1 ))
358        L_NPROC=`printf "%04d\n" ${L_NPROC}`
359        ln -sf ../LONG/O2LP_LONG_00000075_restart_${L_NPROC}.nc .
360        ln -sf ../LONG/O2LP_LONG_00000075_restart_trc_${L_NPROC}.nc .
361        ln -sf ../LONG/O2LP_LONG_00000075_restart_ice_${L_NPROC}.nc .
362    done
363    if [ ${USING_MPMD} == "yes" ] ; then
364       set_xio_using_server iodef.xml true
365    else
366       set_xio_using_server iodef.xml false
367    fi
368    cd ${SETTE_DIR}
369    . ./prepare_job.sh input_ORCA2_LIM_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
370    cd ${SETTE_DIR}
371    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
372fi
373
374if [ ${config} -eq 4 ] ;  then
375    ## Reproducibility tests for ORCA2_LIM_PISCES
376    export TEST_NAME="REPRO_4_4"
377    cd ${CONFIG_DIR}
378    . ./makenemo -m ${CMP_NAM} -n ORCA2LIMPIS_16 -r ORCA2_LIM_PISCES -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
379    cd ${SETTE_DIR}
380    . ./param.cfg
381    . ./all_functions.sh
382    . ./prepare_exe_dir.sh
383    JOB_FILE=${EXE_DIR}/run_job.sh
384    NPROC=16
385    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
386    cd ${EXE_DIR}
387    set_namelist namelist_cfg nn_it000 1
388    set_namelist namelist_cfg nn_itend 75
389    set_namelist namelist_cfg nn_fwb 0
390    set_namelist namelist_cfg ln_ctl .false.
391    set_namelist namelist_cfg ln_clobber .true.
392    set_namelist namelist_cfg jpni 4
393    set_namelist namelist_cfg jpnj 4
394    set_namelist namelist_cfg jpnij 16
395    set_namelist namelist_cfg nn_solv 2
396    set_namelist namelist_top_cfg ln_trcdta .false.
397    set_namelist namelist_top_cfg ln_diatrc .false.
398    # put ln_ironsed, ln_river, ln_ndepo, ln_dust to false
399    # if not you need input files, and for tests is not necessary
400    set_namelist namelist_pisces_cfg ln_presatm .false.
401    set_namelist namelist_pisces_cfg ln_varpar .false.
402    set_namelist namelist_pisces_cfg ln_dust .false.
403    set_namelist namelist_pisces_cfg ln_solub .false.
404    set_namelist namelist_pisces_cfg ln_river .false.
405    set_namelist namelist_pisces_cfg ln_ndepo .false.
406    set_namelist namelist_pisces_cfg ln_ironsed .false.
407    set_namelist namelist_pisces_cfg ln_hydrofe .false.
408    # put ln_pisdmp to false : no restoring to global mean value
409    set_namelist namelist_pisces_cfg ln_pisdmp .false.
410    if [ ${USING_MPMD} == "yes" ] ; then
411       set_xio_using_server iodef.xml true
412    else
413       set_xio_using_server iodef.xml false
414    fi
415    cd ${SETTE_DIR}
416    . ./prepare_job.sh input_ORCA2_LIM_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
417    cd ${SETTE_DIR}
418    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
419
420    cd ${SETTE_DIR}
421    export TEST_NAME="REPRO_2_8"
422    . ./prepare_exe_dir.sh
423    JOB_FILE=${EXE_DIR}/run_job.sh
424    NPROC=16
425    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
426    cd ${EXE_DIR}
427    set_namelist namelist_cfg nn_it000 1
428    set_namelist namelist_cfg nn_itend 75
429    set_namelist namelist_cfg ln_clobber .true.
430    set_namelist namelist_cfg nn_fwb 0
431    set_namelist namelist_cfg jpni 2
432    set_namelist namelist_cfg jpnj 8
433    set_namelist namelist_cfg jpnij 16
434    set_namelist namelist_cfg nn_solv 2
435    set_namelist namelist_top_cfg ln_trcdta .false.
436    set_namelist namelist_top_cfg ln_diatrc .false.
437    # put ln_ironsed, ln_river, ln_ndepo, ln_dust to false
438    # if not you need input files, and for tests is not necessary
439    set_namelist namelist_pisces_cfg ln_presatm .false.
440    set_namelist namelist_pisces_cfg ln_varpar .false.
441    set_namelist namelist_pisces_cfg ln_dust .false.
442    set_namelist namelist_pisces_cfg ln_solub .false.
443    set_namelist namelist_pisces_cfg ln_river .false.
444    set_namelist namelist_pisces_cfg ln_ndepo .false.
445    set_namelist namelist_pisces_cfg ln_ironsed .false.
446    set_namelist namelist_pisces_cfg ln_hydrofe .false.
447    # put ln_pisdmp to false : no restoring to global mean value
448    set_namelist namelist_pisces_cfg ln_pisdmp .false.
449    if [ ${USING_MPMD} == "yes" ] ; then
450       set_xio_using_server iodef.xml true
451    else
452       set_xio_using_server iodef.xml false
453    fi
454    cd ${SETTE_DIR}
455    . ./prepare_job.sh input_ORCA2_LIM_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
456    cd ${SETTE_DIR}
457    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
458fi
459
460# TESTS FOR ORCA2_OFF_PISCES CONFIGURATION
461if [ ${config} -eq 5 ] ;  then
462    ## Restartability tests for ORCA2_OFF_PISCES
463    export TEST_NAME="LONG"
464    cd ${CONFIG_DIR}
465    . ./makenemo -m ${CMP_NAM} -n ORCA2OFFPIS_LONG -r ORCA2_OFF_PISCES -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
466    cd ${SETTE_DIR}
467    . ./param.cfg
468    . ./all_functions.sh
469    . ./prepare_exe_dir.sh
470    JOB_FILE=${EXE_DIR}/run_job.sh
471    NPROC=4
472    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
473    cd ${EXE_DIR}
474    set_namelist namelist_cfg cn_exp \"OFFP_LONG\"
475    set_namelist namelist_cfg nn_it000 1
476    set_namelist namelist_cfg nn_itend 40
477    set_namelist namelist_cfg nn_stock 20
478    set_namelist namelist_cfg ln_clobber .true.
479    set_namelist namelist_cfg jpni 2
480    set_namelist namelist_cfg jpnj 2
481    set_namelist namelist_cfg jpnij 4
482    set_namelist namelist_top_cfg ln_trcdta .false.
483    set_namelist namelist_top_cfg ln_diatrc .false.
484    # put ln_ironsed, ln_river, ln_ndepo, ln_dust to false
485    # if not you need input files, and for tests is not necessary
486    set_namelist namelist_pisces_cfg ln_presatm .false.
487    set_namelist namelist_pisces_cfg ln_varpar .false.
488    set_namelist namelist_pisces_cfg ln_dust .false.
489    set_namelist namelist_pisces_cfg ln_solub .false.
490    set_namelist namelist_pisces_cfg ln_river .false.
491    set_namelist namelist_pisces_cfg ln_ndepo .false.
492    set_namelist namelist_pisces_cfg ln_ironsed .false.
493    set_namelist namelist_pisces_cfg ln_hydrofe .false.
494    # put ln_pisdmp to false : no restoring to global mean value
495    set_namelist namelist_pisces_cfg ln_pisdmp .false.
496    if [ ${USING_MPMD} == "yes" ] ; then
497       set_xio_using_server iodef.xml true
498    else
499       set_xio_using_server iodef.xml false
500    fi
501    cd ${SETTE_DIR}
502    . ./prepare_job.sh input_ORCA2_OFF_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
503   
504    cd ${SETTE_DIR}
505    export TEST_NAME="SHORT"
506    . ./prepare_exe_dir.sh
507    cd ${EXE_DIR}
508    set_namelist namelist_cfg cn_exp \"OFFP_SHORT\"
509    set_namelist namelist_cfg nn_it000 21
510    set_namelist namelist_cfg nn_itend 40
511    set_namelist namelist_cfg nn_stock 20
512    set_namelist namelist_cfg ln_clobber .true.
513    set_namelist namelist_cfg jpni 2
514    set_namelist namelist_cfg jpnj 2
515    set_namelist namelist_cfg jpnij 4
516    set_namelist namelist_top_cfg ln_diatrc .false.
517    set_namelist namelist_top_cfg ln_rsttr .true.
518    set_namelist namelist_top_cfg nn_rsttr 2
519    set_namelist namelist_top_cfg cn_trcrst_in \"OFFP_LONG_00000020_restart_trc\"
520    for (( i=1; i<=$NPROC; i++)) ; do
521        L_NPROC=$(( $i - 1 ))
522        L_NPROC=`printf "%04d\n" ${L_NPROC}`
523        ln -sf ../LONG/OFFP_LONG_00000020_restart_trc_${L_NPROC}.nc .
524    done
525    # put ln_ironsed, ln_river, ln_ndepo, ln_dust
526    # if not you need input files, and for tests is not necessary
527    set_namelist namelist_pisces_cfg ln_presatm .false.
528    set_namelist namelist_pisces_cfg ln_varpar .false.
529    set_namelist namelist_pisces_cfg ln_dust .false.
530    set_namelist namelist_pisces_cfg ln_solub .false.
531    set_namelist namelist_pisces_cfg ln_river .false.
532    set_namelist namelist_pisces_cfg ln_ndepo .false.
533    set_namelist namelist_pisces_cfg ln_ironsed .false.
534    set_namelist namelist_pisces_cfg ln_hydrofe .false.
535    # put ln_pisdmp to false : no restoring to global mean value
536    set_namelist namelist_pisces_cfg ln_pisdmp .false.
537    if [ ${USING_MPMD} == "yes" ] ; then
538       set_xio_using_server iodef.xml true
539    else
540       set_xio_using_server iodef.xml false
541    fi
542    cd ${SETTE_DIR}
543    . ./prepare_job.sh input_ORCA2_OFF_PISCES.cfg $NPROC ${TEST_NAME}  ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
544    cd ${SETTE_DIR}
545    . ./fcm_job.sh $NPROC  ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
546fi
547
548if [ ${config} -eq 6 ] ;  then
549    ## Reproducibility tests for ORCA2_OFF_PISCES
550    export TEST_NAME="REPRO_4_4"
551    cd ${CONFIG_DIR}
552    . ./makenemo -m ${CMP_NAM} -n ORCA2OFFPIS_16 -r ORCA2_OFF_PISCES -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
553    cd ${SETTE_DIR}
554    . ./param.cfg
555    . ./all_functions.sh
556    . ./prepare_exe_dir.sh
557    JOB_FILE=${EXE_DIR}/run_job.sh
558    NPROC=16
559    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
560    cd ${EXE_DIR}
561    set_namelist namelist_cfg nn_it000 1
562    set_namelist namelist_cfg nn_itend 40
563    set_namelist namelist_cfg ln_ctl .false.
564    set_namelist namelist_cfg ln_clobber .true.
565    set_namelist namelist_cfg jpni 4
566    set_namelist namelist_cfg jpnj 4
567    set_namelist namelist_cfg jpnij 16
568    set_namelist namelist_top_cfg ln_trcdta .false.
569    set_namelist namelist_top_cfg ln_diatrc .false.
570    # put ln_ironsed, ln_river, ln_ndepo, ln_dust to false
571    # if not you need input files, and for tests is not necessary
572    set_namelist namelist_pisces_cfg ln_presatm .false.
573    set_namelist namelist_pisces_cfg ln_varpar .false.
574    set_namelist namelist_pisces_cfg ln_dust .false.
575    set_namelist namelist_pisces_cfg ln_solub .false.
576    set_namelist namelist_pisces_cfg ln_river .false.
577    set_namelist namelist_pisces_cfg ln_ndepo .false.
578    set_namelist namelist_pisces_cfg ln_ironsed .false.
579    set_namelist namelist_pisces_cfg ln_hydrofe .false.
580    # put ln_pisdmp to false : no restoring to global mean value
581    set_namelist namelist_pisces_cfg ln_pisdmp .false.
582    if [ ${USING_MPMD} == "yes" ] ; then
583       set_xio_using_server iodef.xml true
584    else
585       set_xio_using_server iodef.xml false
586    fi
587    cd ${SETTE_DIR}
588    . ./prepare_job.sh input_ORCA2_OFF_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
589    cd ${SETTE_DIR}
590    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
591
592    cd ${SETTE_DIR}
593    export TEST_NAME="REPRO_2_8"
594    . ./prepare_exe_dir.sh
595    JOB_FILE=${EXE_DIR}/run_job.sh
596    NPROC=16
597    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
598    cd ${EXE_DIR}
599    set_namelist namelist_cfg nn_it000 1
600    set_namelist namelist_cfg nn_itend 40
601    set_namelist namelist_cfg ln_ctl .false.
602    set_namelist namelist_cfg ln_clobber .true.
603    set_namelist namelist_cfg jpni 2
604    set_namelist namelist_cfg jpnj 8
605    set_namelist namelist_cfg jpnij 16
606    set_namelist namelist_top_cfg ln_trcdta .false.
607    set_namelist namelist_top_cfg ln_diatrc .false.
608    # put ln_ironsed, ln_river, ln_ndepo, ln_dust to false
609    # if not you need input files, and for tests is not necessary
610    set_namelist namelist_pisces_cfg ln_presatm .false.
611    set_namelist namelist_pisces_cfg ln_varpar .false.
612    set_namelist namelist_pisces_cfg ln_dust .false.
613    set_namelist namelist_pisces_cfg ln_solub .false.
614    set_namelist namelist_pisces_cfg ln_river .false.
615    set_namelist namelist_pisces_cfg ln_ndepo .false.
616    set_namelist namelist_pisces_cfg ln_ironsed .false.
617    set_namelist namelist_pisces_cfg ln_hydrofe .false.
618    # put ln_pisdmp to false : no restoring to global mean value
619    set_namelist namelist_pisces_cfg ln_pisdmp .false.
620    if [ ${USING_MPMD} == "yes" ] ; then
621       set_xio_using_server iodef.xml true
622    else
623       set_xio_using_server iodef.xml false
624    fi
625    cd ${SETTE_DIR}
626    . ./prepare_job.sh input_ORCA2_OFF_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
627    cd ${SETTE_DIR}
628    . ./fcm_job.sh $NPROC  ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
629fi
630
631# TESTS FOR AMM12 CONFIGURATION
632if [ ${config} -eq 7 ] ;  then
633    ## Restartability tests for AMM12
634    export TEST_NAME="LONG"
635    cd ${CONFIG_DIR}
636    . ./makenemo -m ${CMP_NAM} -n AMM12_LONG -r AMM12 -j 8 add_key "key_tide" del_key ${DEL_KEYS}
637    cd ${SETTE_DIR}
638    . ./param.cfg
639    . ./all_functions.sh
640    . ./prepare_exe_dir.sh
641    JOB_FILE=${EXE_DIR}/run_job.sh
642    NPROC=32
643    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
644    cd ${EXE_DIR}
645    set_namelist namelist_cfg nn_it000 1
646    set_namelist namelist_cfg nn_itend 576
647    set_namelist namelist_cfg nn_stock 288
648    set_namelist namelist_cfg nn_fwb 0
649    set_namelist namelist_cfg ln_ctl .false.
650    set_namelist namelist_cfg ln_clobber .true.
651    set_namelist namelist_cfg jpni 8
652    set_namelist namelist_cfg jpnj 4
653    set_namelist namelist_cfg jpnij 32
654    if [ ${USING_MPMD} == "yes" ] ; then
655       set_xio_using_server iodef.xml true
656    else
657       set_xio_using_server iodef.xml false
658    fi
659    cd ${SETTE_DIR}
660    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
661
662    cd ${SETTE_DIR}
663    export TEST_NAME="SHORT"
664    . ./prepare_exe_dir.sh
665    cd ${EXE_DIR}
666    set_namelist namelist_cfg nn_it000 289
667    set_namelist namelist_cfg nn_itend 576
668    set_namelist namelist_cfg nn_fwb 0
669    set_namelist namelist_cfg ln_ctl .false.
670    set_namelist namelist_cfg ln_clobber .true.
671    set_namelist namelist_cfg jpni 8
672    set_namelist namelist_cfg jpnj 4
673    set_namelist namelist_cfg jpnij 32
674    set_namelist namelist_cfg ln_rstart .true.
675    set_namelist namelist_cfg nn_rstctl 2
676    set_namelist namelist_cfg cn_ocerst_in \"AMM12_00000288_restart_oce_out\"
677    set_namelist namelist_cfg nn_date0 20120102
678    for (( i=1; i<=$NPROC; i++)) ; do
679        L_NPROC=$(( $i - 1 ))
680        L_NPROC=`printf "%04d\n" ${L_NPROC}`
681        ln -sf ../LONG/AMM12_00000288_restart_oce_out_${L_NPROC}.nc .
682    done
683    if [ ${USING_MPMD} == "yes" ] ; then
684       set_xio_using_server iodef.xml true
685    else
686       set_xio_using_server iodef.xml false
687    fi
688    cd ${SETTE_DIR}
689    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
690    cd ${SETTE_DIR}
691    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
692fi
693
694if [ ${config} -eq 8 ] ;  then
695## Reproducibility tests for AMM12
696    export TEST_NAME="REPRO_8_4"
697    cd ${CONFIG_DIR}
698    . ./makenemo -m ${CMP_NAM} -n AMM12_32 -r AMM12 -j 8 add_key "key_mpp_rep key_tide" del_key ${DEL_KEYS}
699    cd ${SETTE_DIR}
700    . ./param.cfg
701    . ./all_functions.sh
702    . ./prepare_exe_dir.sh
703    JOB_FILE=${EXE_DIR}/run_job.sh
704    NPROC=32
705    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
706    cd ${EXE_DIR}
707    set_namelist namelist_cfg nn_it000 1
708    set_namelist namelist_cfg nn_itend 576
709    set_namelist namelist_cfg nn_fwb 0
710    set_namelist namelist_cfg ln_ctl .false.
711    set_namelist namelist_cfg ln_clobber .true.
712    set_namelist namelist_cfg jpni 8
713    set_namelist namelist_cfg jpnj 4
714    set_namelist namelist_cfg jpnij 32
715    if [ ${USING_MPMD} == "yes" ] ; then
716       set_xio_using_server iodef.xml true
717    else
718       set_xio_using_server iodef.xml false
719    fi
720    cd ${SETTE_DIR}
721    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
722    cd ${SETTE_DIR}
723    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
724
725    cd ${SETTE_DIR}
726    export TEST_NAME="REPRO_4_8"
727    . ./prepare_exe_dir.sh
728    cd ${EXE_DIR}
729    set_namelist namelist_cfg nn_it000 1
730    set_namelist namelist_cfg nn_itend 576
731    set_namelist namelist_cfg nn_fwb 0
732    set_namelist namelist_cfg ln_ctl .false.
733    set_namelist namelist_cfg ln_clobber .true.
734    set_namelist namelist_cfg jpni 4
735    set_namelist namelist_cfg jpnj 8
736    set_namelist namelist_cfg jpnij 32
737    if [ ${USING_MPMD} == "yes" ] ; then
738       set_xio_using_server iodef.xml true
739    else
740       set_xio_using_server iodef.xml false
741    fi
742    cd ${SETTE_DIR}
743    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
744    cd ${SETTE_DIR}
745    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
746fi
747
748
749# TESTS FOR ORCA2_SAS_LIM CONFIGURATION
750if [ ${config} -eq 9 ] ;  then
751    ## Restartability tests for SAS
752    export TEST_NAME="LONG"
753    cd ${CONFIG_DIR}
754    . ./makenemo -m ${CMP_NAM} -n SAS_LONG -r ORCA2_SAS_LIM -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
755    cd ${SETTE_DIR}
756    . ./param.cfg
757    . ./all_functions.sh
758    . ./prepare_exe_dir.sh
759    JOB_FILE=${EXE_DIR}/run_job.sh
760    NPROC=32
761    \rm $JOB_FILE
762    cd ${EXE_DIR}
763    set_namelist namelist_cfg cn_exp \"SAS\"
764    set_namelist namelist_cfg nn_it000 1
765    set_namelist namelist_cfg nn_itend 100
766    set_namelist namelist_cfg nn_stock 50
767    set_namelist namelist_cfg ln_ctl .false.
768    set_namelist namelist_cfg ln_clobber .true.
769    set_namelist namelist_cfg nn_fwb 0
770    set_namelist namelist_cfg jpni 8
771    set_namelist namelist_cfg jpnj 4
772    set_namelist namelist_cfg jpnij 32
773    if [ ${USING_MPMD} == "yes" ] ; then
774       set_xio_using_server iodef.xml true
775    else
776       set_xio_using_server iodef.xml false
777    fi
778    cd ${SETTE_DIR}
779    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
780
781    cd ${SETTE_DIR}
782    export TEST_NAME="SHORT"
783    . ./prepare_exe_dir.sh
784    cd ${EXE_DIR}
785    set_namelist namelist_cfg cn_exp \"SAS\"
786    set_namelist namelist_cfg nn_it000 51
787    set_namelist namelist_cfg nn_itend 100
788    set_namelist namelist_cfg ln_ctl .false.
789    set_namelist namelist_cfg ln_clobber .true.
790    set_namelist namelist_cfg nn_fwb 0
791    set_namelist namelist_cfg jpni 8
792    set_namelist namelist_cfg jpnj 4
793    set_namelist namelist_cfg jpnij 32
794    set_namelist namelist_cfg nn_rstctl 2
795    set_namelist namelist_cfg cn_ocerst_in \"SAS_00000050_restart\"
796    for (( i=1; i<=$NPROC; i++)) ; do
797        L_NPROC=$(( $i - 1 ))
798        L_NPROC=`printf "%04d\n" ${L_NPROC}`
799        ln -sf ../LONG/SAS_00000050_restart_${L_NPROC}.nc .
800    done
801    if [ ${USING_MPMD} == "yes" ] ; then
802       set_xio_using_server iodef.xml true
803    else
804       set_xio_using_server iodef.xml false
805    fi
806    cd ${SETTE_DIR}
807    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
808    cd ${SETTE_DIR}
809    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
810fi
811
812if [ ${config} -eq 10 ] ;  then
813## Reproducibility tests for ORCA2_SAS_LIM
814    export TEST_NAME="REPRO_8_4"
815    cd ${CONFIG_DIR}
816    . ./makenemo -m ${CMP_NAM} -n SAS_32 -r ORCA2_SAS_LIM -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
817    cd ${SETTE_DIR}
818    . ./param.cfg
819    . ./all_functions.sh
820    . ./prepare_exe_dir.sh
821    JOB_FILE=${EXE_DIR}/run_job.sh
822    NPROC=32
823    \rm ${JOB_FILE}
824    cd ${EXE_DIR}
825    set_namelist namelist_cfg cn_exp \"SAS\"
826    set_namelist namelist_cfg nn_it000 51
827    set_namelist namelist_cfg nn_itend 100
828    set_namelist namelist_cfg ln_ctl .false.
829    set_namelist namelist_cfg ln_clobber .true.
830    set_namelist namelist_cfg nn_fwb 0
831    set_namelist namelist_cfg jpni 8
832    set_namelist namelist_cfg jpnj 4
833    set_namelist namelist_cfg jpnij 32
834    if [ ${USING_MPMD} == "yes" ] ; then
835       set_xio_using_server iodef.xml true
836    else
837       set_xio_using_server iodef.xml false
838    fi
839    cd ${SETTE_DIR}
840    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE}  ${NUM_XIOSERVERS}
841    cd ${SETTE_DIR}
842    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
843    cd ${SETTE_DIR}
844    export TEST_NAME="REPRO_4_8"
845    . ./prepare_exe_dir.sh
846    cd ${EXE_DIR}
847    set_namelist namelist_cfg cn_exp \"SAS\"
848    set_namelist namelist_cfg nn_it000 51
849    set_namelist namelist_cfg nn_itend 100
850    set_namelist namelist_cfg ln_ctl .false.
851    set_namelist namelist_cfg ln_clobber .true.
852    set_namelist namelist_cfg nn_fwb 0
853    set_namelist namelist_cfg jpni 4
854    set_namelist namelist_cfg jpnj 8
855    set_namelist namelist_cfg jpnij 32
856    if [ ${USING_MPMD} == "yes" ] ; then
857       set_xio_using_server iodef.xml true
858    else
859       set_xio_using_server iodef.xml false
860    fi
861    cd ${SETTE_DIR}
862    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
863    cd ${SETTE_DIR}
864    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
865fi
866
867# TEST FOR ORCA2_LIM_AGRIF : simple test of running AGRIF (no restartability neither reproducibility tests)
868if [ ${config} -eq 11 ] ;  then
869    ## ORCA2_LIM with Agulhas AGRIF zoom in MPI
870    export TEST_NAME="SHORT"
871    cd ${CONFIG_DIR}
872    . ./makenemo -m ${CMP_NAM} -n ORCA2AGUL_1_2 -r ORCA2_LIM -j 8 add_key "key_mpp_rep key_agrif" del_key "key_zdftmx" del_key ${DEL_KEYS}
873    cd ${SETTE_DIR}
874    . ./param.cfg
875    . ./all_functions.sh
876    . ./prepare_exe_dir.sh
877    JOB_FILE=${EXE_DIR}/run_job.sh
878    NPROC=2
879    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
880    cd ${EXE_DIR}
881    set_namelist namelist_cfg nn_it000 1
882    set_namelist namelist_cfg nn_itend 75
883    set_namelist namelist_cfg ln_ctl .false.
884    set_namelist namelist_cfg ln_clobber .true.
885    set_namelist namelist_cfg nn_fwb 0
886    set_namelist namelist_cfg jpni 1
887    set_namelist namelist_cfg jpnj 2
888    set_namelist namelist_cfg jpnij 2
889    set_namelist 1_namelist_cfg nn_it000 1
890    set_namelist 1_namelist_cfg nn_itend 150
891    set_namelist 1_namelist_cfg ln_ctl .false.
892    set_namelist 1_namelist_cfg ln_clobber .true.
893    if [ ${USING_MPMD} == "yes" ] ; then
894       set_xio_using_server iodef.xml true
895    else
896       set_xio_using_server iodef.xml false
897    fi
898    cd ${SETTE_DIR}
899    . ./prepare_job.sh input_ORCA2_LIM_AGRIF.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
900    cd ${SETTE_DIR}
901    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
902fi
903
904done
Note: See TracBrowser for help on using the repository browser.