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 trunk/NEMOGCM/SETTE – NEMO

source: trunk/NEMOGCM/SETTE/sette.sh @ 4736

Last change on this file since 4736 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
RevLine 
[3520]1#!/bin/bash
[3708]2############################################################
[3520]3# Author : Simona Flavoni for NEMO
[4245]4# Contact: sflod@locean-ipsl.upmc.fr
5# 2013   : A.C. Coward added options for testing with XIOS in dettached mode
[3520]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#############################################################
[3532]14#set -x
[3520]15set -o posix
16#set -u
17#set -e
[4245]18# ===========
[3520]19# DESCRIPTION
20# ===========
21#
22# Variables to be checked by user:
23#
[4245]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"
[3520]40#
41# Principal script is sette.sh, that calls
42#
[4245]43#  makenemo  : to create successive exectuables in ${CONFIG_NAME}/BLD/bin/nemo.exe
44#              and links to opa in ${CONFIG_NAME}/EXP00)
[3520]45#
46#  param.cfg : sets and loads following directories:
47#
[4245]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)
[3520]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#
[4245]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.
[3520]59#
[4245]60#  VALIDATION tree is:
[3520]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
[4245]65#                       execution directory takes name of TEST_NAME defined for every test
66#                       in sette.sh. (each test in executed in its own directory)
[3520]67#
[4245]68#  prepare_job.sh     : to generate the script run_job.sh
[3520]69#
[4245]70#  fcm_job.sh         : run in batch (INTERACT_FLAG="no") or interactive (INTERACT_FLAG="yes")
71#                        see sette.sh and BATCH_TEMPLATE directory
[3520]72#
[4245]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
[3520]79#
[4245]80#  NOTE: a log file, output.sette, is created in ${SETTE_DIR} with the echoes of
81#        executed commands
[3520]82#
[4245]83#  NOTE: if sette.sh is stopped in output.sette there is written the last command
84#        executed by sette.sh
[3520]85#
[4245]86# example use: ./sette.sh
87#########################################################################################
[3520]88#
[4245]89# Compiler among those in NEMOGCM/ARCH
[4316]90COMPILER=tobedefined
[4245]91export BATCH_COMMAND_PAR="llsubmit"
92export BATCH_COMMAND_SEQ=$BATCH_COMMAND_PAR
[4316]93export INTERACT_FLAG="yes"
[4245]94export MPIRUN_FLAG="yes"
95export USING_XIOS="yes"
[3520]96#
[4245]97export DEL_KEYS="key_iomput"
98if [ ${USING_XIOS} == "yes" ] 
99 then
100   export DEL_KEYS=""
101fi
[3520]102#
[4245]103# Settings which control the use of stand alone servers (only relevant if using xios)
[3520]104#
[4245]105export USING_MPMD="no"
106export NUM_XIOSERVERS=4
107export JOB_PREFIX=batch-mpmd
[3520]108#
[4245]109if [ ${USING_MPMD} == "no" ] 
110 then
111   export NUM_XIOSERVERS=0
112   export JOB_PREFIX=batch
113fi
[3520]114#
115#
[4245]116if [ ${USING_MPMD} == "yes" ] && [ ${USING_XIOS} == "no"]
117 then
118   echo "Incompatible choices. MPMD mode requires the XIOS server"
119   exit
120fi
[3520]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}
[4245]133cp BATCH_TEMPLATE/${JOB_PREFIX}-${COMPILER} job_batch_template || exit
[4316]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
[4147]141for config in 1 2 3 4 5 6 7 8 9 10 11
142
[3520]143do
144
[3680]145# TESTS FOR GYRE CONFIGURATION
[3520]146if [ ${config} -eq 1 ] ;  then
[3680]147    ## Restartability tests for GYRE
[3520]148    export TEST_NAME="LONG"
[4147]149    cd ${CONFIG_DIR}
[4245]150    . ./makenemo -m ${CMP_NAM} -n GYRE_LONG -r GYRE -j 8 del_key ${DEL_KEYS}
[3520]151    cd ${SETTE_DIR}
[4252]152    . ./param.cfg
153    . ./all_functions.sh
154    . ./prepare_exe_dir.sh
[3520]155    JOB_FILE=${EXE_DIR}/run_job.sh
[3532]156    NPROC=4
[4245]157    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[4147]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.
[4318]164    set_namelist namelist_cfg nn_fwb 0
[4147]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
[4245]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}
[3520]176
177    cd ${SETTE_DIR}
178    export TEST_NAME="SHORT"
[4252]179    . ./prepare_exe_dir.sh
[3520]180    cd ${EXE_DIR}
[4147]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.
[4316]188    set_namelist namelist_cfg nn_fwb 0
[4147]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\"
[4245]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
[3537]199    for (( i=1; i<=$NPROC; i++)) ; do
200        L_NPROC=$(( $i - 1 ))
201        L_NPROC=`printf "%04d\n" ${L_NPROC}`
[3680]202        ln -sf ../LONG/GYRE_LONG_00000060_restart_${L_NPROC}.nc .
[3537]203    done
[4245]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
[3520]209    cd ${SETTE_DIR}
[4245]210    . ./prepare_job.sh input_GYRE.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]211    cd ${SETTE_DIR}
[3532]212    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
[3520]213fi
214
215if [ ${config} -eq 2 ] ;  then
[3680]216    ## Reproducibility tests for GYRE
[3520]217    export TEST_NAME="REPRO_1_4"
[4147]218    cd ${CONFIG_DIR}
[4245]219    . ./makenemo -m ${CMP_NAM} -n GYRE_4 -r GYRE -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
[3520]220    cd ${SETTE_DIR}
[4252]221    . ./param.cfg
222    . ./all_functions.sh
223    . ./prepare_exe_dir.sh
[3520]224    JOB_FILE=${EXE_DIR}/run_job.sh
225    NPROC=4
[4245]226    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]227    cd ${EXE_DIR}
[4147]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
[4245]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
[3520]244    cd ${SETTE_DIR}
[4245]245    . ./prepare_job.sh input_GYRE.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]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"
[4252]251    . ./prepare_exe_dir.sh
[3680]252    JOB_FILE=${EXE_DIR}/run_job.sh
253    NPROC=4
[4245]254    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]255    cd ${EXE_DIR}
[4147]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
[4245]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
[3520]271    cd ${SETTE_DIR}
[4245]272    . ./prepare_job.sh input_GYRE.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]273    cd ${SETTE_DIR}
274    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
[3532]275
[3520]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"
[4147]282    cd ${CONFIG_DIR}
[4245]283    . ./makenemo -m ${CMP_NAM} -n ORCA2LIMPIS_LONG -r ORCA2_LIM_PISCES -j 8 del_key ${DEL_KEYS}
[3520]284    cd ${SETTE_DIR}
[4252]285    . ./param.cfg
286    . ./all_functions.sh
287    . ./prepare_exe_dir.sh
[3520]288    JOB_FILE=${EXE_DIR}/run_job.sh
[3532]289    NPROC=4
[4245]290    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]291    cd ${EXE_DIR}
[4147]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.
[4316]297    set_namelist namelist_cfg nn_fwb 0
[4147]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.
[3520]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
[4147]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.
[4245]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
[3520]319    cd ${SETTE_DIR}
[4245]320    . ./prepare_job.sh input_ORCA2_LIM_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3532]321   
322    cd ${SETTE_DIR}
[3520]323    export TEST_NAME="SHORT"
[4252]324    . ./prepare_exe_dir.sh
[3520]325    cd ${EXE_DIR}
[4147]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.
[4316]333    set_namelist namelist_cfg nn_fwb 0
[4147]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\"
[3520]344    # put ln_ironsed, ln_river, ln_ndepo, ln_dust
345    # if not you need input files, and for tests is not necessary
[4147]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.
[3680]354    # put ln_pisdmp to false : no restoring to global mean value
[4147]355    set_namelist namelist_pisces_cfg ln_pisdmp .false.
[3537]356    for (( i=1; i<=$NPROC; i++)) ; do
357        L_NPROC=$(( $i - 1 ))
358        L_NPROC=`printf "%04d\n" ${L_NPROC}`
[3555]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 .
[3537]362    done
[4245]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
[3520]368    cd ${SETTE_DIR}
[4245]369    . ./prepare_job.sh input_ORCA2_LIM_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]370    cd ${SETTE_DIR}
[3532]371    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
[3520]372fi
373
374if [ ${config} -eq 4 ] ;  then
[3680]375    ## Reproducibility tests for ORCA2_LIM_PISCES
[3520]376    export TEST_NAME="REPRO_4_4"
[4147]377    cd ${CONFIG_DIR}
[4245]378    . ./makenemo -m ${CMP_NAM} -n ORCA2LIMPIS_16 -r ORCA2_LIM_PISCES -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
[3520]379    cd ${SETTE_DIR}
[4252]380    . ./param.cfg
381    . ./all_functions.sh
382    . ./prepare_exe_dir.sh
[3520]383    JOB_FILE=${EXE_DIR}/run_job.sh
384    NPROC=16
[4245]385    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]386    cd ${EXE_DIR}
[4147]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.
[3520]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
[4147]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.
[3680]408    # put ln_pisdmp to false : no restoring to global mean value
[4147]409    set_namelist namelist_pisces_cfg ln_pisdmp .false.
[4245]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
[3520]415    cd ${SETTE_DIR}
[4245]416    . ./prepare_job.sh input_ORCA2_LIM_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]417    cd ${SETTE_DIR}
[3532]418    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
[3520]419
420    cd ${SETTE_DIR}
421    export TEST_NAME="REPRO_2_8"
[4252]422    . ./prepare_exe_dir.sh
[3680]423    JOB_FILE=${EXE_DIR}/run_job.sh
424    NPROC=16
[4245]425    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]426    cd ${EXE_DIR}
[4147]427    set_namelist namelist_cfg nn_it000 1
428    set_namelist namelist_cfg nn_itend 75
429    set_namelist namelist_cfg ln_clobber .true.
[4316]430    set_namelist namelist_cfg nn_fwb 0
[4147]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.
[3520]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
[4147]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.
[3680]447    # put ln_pisdmp to false : no restoring to global mean value
[4147]448    set_namelist namelist_pisces_cfg ln_pisdmp .false.
[4245]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
[3520]454    cd ${SETTE_DIR}
[4245]455    . ./prepare_job.sh input_ORCA2_LIM_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]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"
[4147]464    cd ${CONFIG_DIR}
[4245]465    . ./makenemo -m ${CMP_NAM} -n ORCA2OFFPIS_LONG -r ORCA2_OFF_PISCES -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
[3520]466    cd ${SETTE_DIR}
[4252]467    . ./param.cfg
468    . ./all_functions.sh
469    . ./prepare_exe_dir.sh
[3520]470    JOB_FILE=${EXE_DIR}/run_job.sh
[3532]471    NPROC=4
[4245]472    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]473    cd ${EXE_DIR}
[4147]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.
[3520]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
[4147]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.
[3680]494    # put ln_pisdmp to false : no restoring to global mean value
[4147]495    set_namelist namelist_pisces_cfg ln_pisdmp .false.
[4245]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
[3520]501    cd ${SETTE_DIR}
[4245]502    . ./prepare_job.sh input_ORCA2_OFF_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]503   
504    cd ${SETTE_DIR}
505    export TEST_NAME="SHORT"
[4252]506    . ./prepare_exe_dir.sh
[3520]507    cd ${EXE_DIR}
[4147]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\"
[3537]520    for (( i=1; i<=$NPROC; i++)) ; do
521        L_NPROC=$(( $i - 1 ))
522        L_NPROC=`printf "%04d\n" ${L_NPROC}`
[3555]523        ln -sf ../LONG/OFFP_LONG_00000020_restart_trc_${L_NPROC}.nc .
[3537]524    done
[3520]525    # put ln_ironsed, ln_river, ln_ndepo, ln_dust
526    # if not you need input files, and for tests is not necessary
[4147]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.
[3680]535    # put ln_pisdmp to false : no restoring to global mean value
[4147]536    set_namelist namelist_pisces_cfg ln_pisdmp .false.
[4245]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
[3520]542    cd ${SETTE_DIR}
[4245]543    . ./prepare_job.sh input_ORCA2_OFF_PISCES.cfg $NPROC ${TEST_NAME}  ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]544    cd ${SETTE_DIR}
545    . ./fcm_job.sh $NPROC  ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
546fi
547
548if [ ${config} -eq 6 ] ;  then
[3680]549    ## Reproducibility tests for ORCA2_OFF_PISCES
[3520]550    export TEST_NAME="REPRO_4_4"
[4147]551    cd ${CONFIG_DIR}
[4245]552    . ./makenemo -m ${CMP_NAM} -n ORCA2OFFPIS_16 -r ORCA2_OFF_PISCES -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
[3520]553    cd ${SETTE_DIR}
[4252]554    . ./param.cfg
555    . ./all_functions.sh
556    . ./prepare_exe_dir.sh
[3520]557    JOB_FILE=${EXE_DIR}/run_job.sh
558    NPROC=16
[4245]559    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]560    cd ${EXE_DIR}
[4147]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.
[3520]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
[4147]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.
[3680]580    # put ln_pisdmp to false : no restoring to global mean value
[4147]581    set_namelist namelist_pisces_cfg ln_pisdmp .false.
[4245]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
[3520]587    cd ${SETTE_DIR}
[4245]588    . ./prepare_job.sh input_ORCA2_OFF_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]589    cd ${SETTE_DIR}
[3532]590    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
[3520]591
592    cd ${SETTE_DIR}
593    export TEST_NAME="REPRO_2_8"
[4252]594    . ./prepare_exe_dir.sh
[3680]595    JOB_FILE=${EXE_DIR}/run_job.sh
596    NPROC=16
[4245]597    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]598    cd ${EXE_DIR}
[4147]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.
[3520]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
[4147]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.
[3680]618    # put ln_pisdmp to false : no restoring to global mean value
[4147]619    set_namelist namelist_pisces_cfg ln_pisdmp .false.
[4245]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
[3520]625    cd ${SETTE_DIR}
[4245]626    . ./prepare_job.sh input_ORCA2_OFF_PISCES.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]627    cd ${SETTE_DIR}
628    . ./fcm_job.sh $NPROC  ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
629fi
630
[3680]631# TESTS FOR AMM12 CONFIGURATION
[3520]632if [ ${config} -eq 7 ] ;  then
[3532]633    ## Restartability tests for AMM12
634    export TEST_NAME="LONG"
[4147]635    cd ${CONFIG_DIR}
[4245]636    . ./makenemo -m ${CMP_NAM} -n AMM12_LONG -r AMM12 -j 8 add_key "key_tide" del_key ${DEL_KEYS}
[3520]637    cd ${SETTE_DIR}
[4252]638    . ./param.cfg
639    . ./all_functions.sh
640    . ./prepare_exe_dir.sh
[3520]641    JOB_FILE=${EXE_DIR}/run_job.sh
642    NPROC=32
[4245]643    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]644    cd ${EXE_DIR}
[4147]645    set_namelist namelist_cfg nn_it000 1
[4252]646    set_namelist namelist_cfg nn_itend 576
647    set_namelist namelist_cfg nn_stock 288
[4147]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
[4245]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
[3520]659    cd ${SETTE_DIR}
[4245]660    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]661
662    cd ${SETTE_DIR}
[3532]663    export TEST_NAME="SHORT"
[4379]664    . ./prepare_exe_dir.sh
[3520]665    cd ${EXE_DIR}
[4252]666    set_namelist namelist_cfg nn_it000 289
667    set_namelist namelist_cfg nn_itend 576
[4147]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
[4252]676    set_namelist namelist_cfg cn_ocerst_in \"AMM12_00000288_restart_oce_out\"
677    set_namelist namelist_cfg nn_date0 20120102
[3537]678    for (( i=1; i<=$NPROC; i++)) ; do
679        L_NPROC=$(( $i - 1 ))
680        L_NPROC=`printf "%04d\n" ${L_NPROC}`
[4252]681        ln -sf ../LONG/AMM12_00000288_restart_oce_out_${L_NPROC}.nc .
[3537]682    done
[4245]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
[3520]688    cd ${SETTE_DIR}
[4245]689    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]690    cd ${SETTE_DIR}
[3532]691    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
[3520]692fi
693
694if [ ${config} -eq 8 ] ;  then
[3680]695## Reproducibility tests for AMM12
696    export TEST_NAME="REPRO_8_4"
[4147]697    cd ${CONFIG_DIR}
[4245]698    . ./makenemo -m ${CMP_NAM} -n AMM12_32 -r AMM12 -j 8 add_key "key_mpp_rep key_tide" del_key ${DEL_KEYS}
[3520]699    cd ${SETTE_DIR}
[4252]700    . ./param.cfg
701    . ./all_functions.sh
702    . ./prepare_exe_dir.sh
[3520]703    JOB_FILE=${EXE_DIR}/run_job.sh
704    NPROC=32
[4245]705    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
[3520]706    cd ${EXE_DIR}
[4147]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
[4245]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
[3520]720    cd ${SETTE_DIR}
[4245]721    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]722    cd ${SETTE_DIR}
723    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
724
725    cd ${SETTE_DIR}
[3680]726    export TEST_NAME="REPRO_4_8"
[4252]727    . ./prepare_exe_dir.sh
[3520]728    cd ${EXE_DIR}
[4147]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
[4245]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
[3520]742    cd ${SETTE_DIR}
[4245]743    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[3520]744    cd ${SETTE_DIR}
[3532]745    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
[3520]746fi
747
748
[4147]749# TESTS FOR ORCA2_SAS_LIM CONFIGURATION
[4245]750if [ ${config} -eq 9 ] ;  then
[4147]751    ## Restartability tests for SAS
752    export TEST_NAME="LONG"
753    cd ${CONFIG_DIR}
[4260]754    . ./makenemo -m ${CMP_NAM} -n SAS_LONG -r ORCA2_SAS_LIM -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
[4147]755    cd ${SETTE_DIR}
[4252]756    . ./param.cfg
757    . ./all_functions.sh
758    . ./prepare_exe_dir.sh
[4147]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.
[4316]769    set_namelist namelist_cfg nn_fwb 0
[4147]770    set_namelist namelist_cfg jpni 8
771    set_namelist namelist_cfg jpnj 4
772    set_namelist namelist_cfg jpnij 32
[4245]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
[4147]778    cd ${SETTE_DIR}
[4245]779    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[4147]780
781    cd ${SETTE_DIR}
782    export TEST_NAME="SHORT"
[4252]783    . ./prepare_exe_dir.sh
[4147]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.
[4316]790    set_namelist namelist_cfg nn_fwb 0
[4147]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
[4245]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
[4147]806    cd ${SETTE_DIR}
[4245]807    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[4147]808    cd ${SETTE_DIR}
809    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
810fi
811
[4245]812if [ ${config} -eq 10 ] ;  then
[4147]813## Reproducibility tests for ORCA2_SAS_LIM
814    export TEST_NAME="REPRO_8_4"
815    cd ${CONFIG_DIR}
[4245]816    . ./makenemo -m ${CMP_NAM} -n SAS_32 -r ORCA2_SAS_LIM -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
[4147]817    cd ${SETTE_DIR}
[4252]818    . ./param.cfg
819    . ./all_functions.sh
820    . ./prepare_exe_dir.sh
[4147]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.
[4316]830    set_namelist namelist_cfg nn_fwb 0
[4147]831    set_namelist namelist_cfg jpni 8
832    set_namelist namelist_cfg jpnj 4
833    set_namelist namelist_cfg jpnij 32
[4245]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
[4147]839    cd ${SETTE_DIR}
[4245]840    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE}  ${NUM_XIOSERVERS}
[4147]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"
[4252]845    . ./prepare_exe_dir.sh
[4147]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.
[4316]852    set_namelist namelist_cfg nn_fwb 0
[4147]853    set_namelist namelist_cfg jpni 4
854    set_namelist namelist_cfg jpnj 8
855    set_namelist namelist_cfg jpnij 32
[4245]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
[4147]861    cd ${SETTE_DIR}
[4245]862    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
[4147]863    cd ${SETTE_DIR}
864    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
865fi
866
[4245]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}
[4252]874    . ./param.cfg
875    . ./all_functions.sh
876    . ./prepare_exe_dir.sh
[4245]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.
[4316]885    set_namelist namelist_cfg nn_fwb 0
[4245]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
[3520]904done
Note: See TracBrowser for help on using the repository browser.