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

source: branches/2013/dev_MERGE_2013/NEMOGCM/SETTE/sette.sh @ 4318

Last change on this file since 4318 was 4318, checked in by cetlod, 10 years ago

dev_MERGE : some corrections in sette tests

  • Property svn:executable set to *
File size: 35.0 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 nn_tra_dta 0
652    set_namelist namelist_cfg cn_ocerst_in \"amm12_restart_oce\"
653    ln -s restarts/amm12_restart_oce.nc amm12_restart_oce.nc
654    set_namelist namelist_cfg jpni 8
655    set_namelist namelist_cfg jpnj 4
656    set_namelist namelist_cfg jpnij 32
657    if [ ${USING_MPMD} == "yes" ] ; then
658       set_xio_using_server iodef.xml true
659    else
660       set_xio_using_server iodef.xml false
661    fi
662    cd ${SETTE_DIR}
663    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
664
665    cd ${SETTE_DIR}
666    export TEST_NAME="SHORT"
667    . prepare_exe_dir.sh
668    cd ${EXE_DIR}
669    set_namelist namelist_cfg nn_it000 289
670    set_namelist namelist_cfg nn_itend 576
671    set_namelist namelist_cfg nn_fwb 0
672    set_namelist namelist_cfg ln_ctl .false.
673    set_namelist namelist_cfg ln_clobber .true.
674    set_namelist namelist_cfg nn_tra_dta 0
675    set_namelist namelist_cfg jpni 8
676    set_namelist namelist_cfg jpnj 4
677    set_namelist namelist_cfg jpnij 32
678    set_namelist namelist_cfg ln_rstart .true.
679    set_namelist namelist_cfg nn_rstctl 2
680    set_namelist namelist_cfg cn_ocerst_in \"AMM12_00000288_restart_oce_out\"
681    set_namelist namelist_cfg nn_date0 20120102
682    for (( i=1; i<=$NPROC; i++)) ; do
683        L_NPROC=$(( $i - 1 ))
684        L_NPROC=`printf "%04d\n" ${L_NPROC}`
685        ln -sf ../LONG/AMM12_00000288_restart_oce_out_${L_NPROC}.nc .
686    done
687    if [ ${USING_MPMD} == "yes" ] ; then
688       set_xio_using_server iodef.xml true
689    else
690       set_xio_using_server iodef.xml false
691    fi
692    cd ${SETTE_DIR}
693    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
694    cd ${SETTE_DIR}
695    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
696fi
697
698if [ ${config} -eq 8 ] ;  then
699## Reproducibility tests for AMM12
700    export TEST_NAME="REPRO_8_4"
701    cd ${CONFIG_DIR}
702    . ./makenemo -m ${CMP_NAM} -n AMM12_32 -r AMM12 -j 8 add_key "key_mpp_rep key_tide" del_key ${DEL_KEYS}
703    cd ${SETTE_DIR}
704    . ./param.cfg
705    . ./all_functions.sh
706    . ./prepare_exe_dir.sh
707    JOB_FILE=${EXE_DIR}/run_job.sh
708    NPROC=32
709    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
710    cd ${EXE_DIR}
711    set_namelist namelist_cfg nn_it000 1
712    set_namelist namelist_cfg nn_itend 576
713    set_namelist namelist_cfg nn_fwb 0
714    set_namelist namelist_cfg ln_ctl .false.
715    set_namelist namelist_cfg ln_clobber .true.
716    set_namelist namelist_cfg nn_tra_dta 0
717    set_namelist namelist_cfg cn_ocerst_in \"amm12_restart_oce\"
718    ln -s restarts/amm12_restart_oce.nc amm12_restart_oce.nc
719    set_namelist namelist_cfg jpni 8
720    set_namelist namelist_cfg jpnj 4
721    set_namelist namelist_cfg jpnij 32
722    if [ ${USING_MPMD} == "yes" ] ; then
723       set_xio_using_server iodef.xml true
724    else
725       set_xio_using_server iodef.xml false
726    fi
727    cd ${SETTE_DIR}
728    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
729    cd ${SETTE_DIR}
730    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
731
732    cd ${SETTE_DIR}
733    export TEST_NAME="REPRO_4_8"
734    . ./prepare_exe_dir.sh
735    cd ${EXE_DIR}
736    set_namelist namelist_cfg nn_it000 1
737    set_namelist namelist_cfg nn_itend 576
738    set_namelist namelist_cfg nn_fwb 0
739    set_namelist namelist_cfg ln_ctl .false.
740    set_namelist namelist_cfg nn_tra_dta 0
741    set_namelist namelist_cfg ln_clobber .true.
742    set_namelist namelist_cfg cn_ocerst_in \"amm12_restart_oce\"
743    ln -s restarts/amm12_restart_oce.nc amm12_restart_oce.nc
744    set_namelist namelist_cfg jpni 4
745    set_namelist namelist_cfg jpnj 8
746    set_namelist namelist_cfg jpnij 32
747    if [ ${USING_MPMD} == "yes" ] ; then
748       set_xio_using_server iodef.xml true
749    else
750       set_xio_using_server iodef.xml false
751    fi
752    cd ${SETTE_DIR}
753    . ./prepare_job.sh input_AMM12.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
754    cd ${SETTE_DIR}
755    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
756fi
757
758
759# TESTS FOR ORCA2_SAS_LIM CONFIGURATION
760if [ ${config} -eq 9 ] ;  then
761    ## Restartability tests for SAS
762    export TEST_NAME="LONG"
763    cd ${CONFIG_DIR}
764    . ./makenemo -m ${CMP_NAM} -n SAS_LONG -r ORCA2_SAS_LIM -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
765    cd ${SETTE_DIR}
766    . ./param.cfg
767    . ./all_functions.sh
768    . ./prepare_exe_dir.sh
769    JOB_FILE=${EXE_DIR}/run_job.sh
770    NPROC=32
771    \rm $JOB_FILE
772    cd ${EXE_DIR}
773    set_namelist namelist_cfg cn_exp \"SAS\"
774    set_namelist namelist_cfg nn_it000 1
775    set_namelist namelist_cfg nn_itend 100
776    set_namelist namelist_cfg nn_stock 50
777    set_namelist namelist_cfg ln_ctl .false.
778    set_namelist namelist_cfg ln_clobber .true.
779    set_namelist namelist_cfg nn_fwb 0
780    set_namelist namelist_cfg jpni 8
781    set_namelist namelist_cfg jpnj 4
782    set_namelist namelist_cfg jpnij 32
783    if [ ${USING_MPMD} == "yes" ] ; then
784       set_xio_using_server iodef.xml true
785    else
786       set_xio_using_server iodef.xml false
787    fi
788    cd ${SETTE_DIR}
789    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
790
791    cd ${SETTE_DIR}
792    export TEST_NAME="SHORT"
793    . ./prepare_exe_dir.sh
794    cd ${EXE_DIR}
795    set_namelist namelist_cfg cn_exp \"SAS\"
796    set_namelist namelist_cfg nn_it000 51
797    set_namelist namelist_cfg nn_itend 100
798    set_namelist namelist_cfg ln_ctl .false.
799    set_namelist namelist_cfg ln_clobber .true.
800    set_namelist namelist_cfg nn_fwb 0
801    set_namelist namelist_cfg jpni 8
802    set_namelist namelist_cfg jpnj 4
803    set_namelist namelist_cfg jpnij 32
804    set_namelist namelist_cfg nn_rstctl 2
805    set_namelist namelist_cfg cn_ocerst_in \"SAS_00000050_restart\"
806    for (( i=1; i<=$NPROC; i++)) ; do
807        L_NPROC=$(( $i - 1 ))
808        L_NPROC=`printf "%04d\n" ${L_NPROC}`
809        ln -sf ../LONG/SAS_00000050_restart_${L_NPROC}.nc .
810    done
811    if [ ${USING_MPMD} == "yes" ] ; then
812       set_xio_using_server iodef.xml true
813    else
814       set_xio_using_server iodef.xml false
815    fi
816    cd ${SETTE_DIR}
817    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
818    cd ${SETTE_DIR}
819    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
820fi
821
822if [ ${config} -eq 10 ] ;  then
823## Reproducibility tests for ORCA2_SAS_LIM
824    export TEST_NAME="REPRO_8_4"
825    cd ${CONFIG_DIR}
826    . ./makenemo -m ${CMP_NAM} -n SAS_32 -r ORCA2_SAS_LIM -j 8 add_key "key_mpp_rep" del_key ${DEL_KEYS}
827    cd ${SETTE_DIR}
828    . ./param.cfg
829    . ./all_functions.sh
830    . ./prepare_exe_dir.sh
831    JOB_FILE=${EXE_DIR}/run_job.sh
832    NPROC=32
833    \rm ${JOB_FILE}
834    cd ${EXE_DIR}
835    set_namelist namelist_cfg cn_exp \"SAS\"
836    set_namelist namelist_cfg nn_it000 51
837    set_namelist namelist_cfg nn_itend 100
838    set_namelist namelist_cfg ln_ctl .false.
839    set_namelist namelist_cfg ln_clobber .true.
840    set_namelist namelist_cfg nn_fwb 0
841    set_namelist namelist_cfg jpni 8
842    set_namelist namelist_cfg jpnj 4
843    set_namelist namelist_cfg jpnij 32
844    if [ ${USING_MPMD} == "yes" ] ; then
845       set_xio_using_server iodef.xml true
846    else
847       set_xio_using_server iodef.xml false
848    fi
849    cd ${SETTE_DIR}
850    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE}  ${NUM_XIOSERVERS}
851    cd ${SETTE_DIR}
852    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
853    cd ${SETTE_DIR}
854    export TEST_NAME="REPRO_4_8"
855    . ./prepare_exe_dir.sh
856    cd ${EXE_DIR}
857    set_namelist namelist_cfg cn_exp \"SAS\"
858    set_namelist namelist_cfg nn_it000 51
859    set_namelist namelist_cfg nn_itend 100
860    set_namelist namelist_cfg ln_ctl .false.
861    set_namelist namelist_cfg ln_clobber .true.
862    set_namelist namelist_cfg nn_fwb 0
863    set_namelist namelist_cfg jpni 4
864    set_namelist namelist_cfg jpnj 8
865    set_namelist namelist_cfg jpnij 32
866    if [ ${USING_MPMD} == "yes" ] ; then
867       set_xio_using_server iodef.xml true
868    else
869       set_xio_using_server iodef.xml false
870    fi
871    cd ${SETTE_DIR}
872    . ./prepare_job.sh input_SAS.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
873    cd ${SETTE_DIR}
874    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
875fi
876
877# TEST FOR ORCA2_LIM_AGRIF : simple test of running AGRIF (no restartability neither reproducibility tests)
878if [ ${config} -eq 11 ] ;  then
879    ## ORCA2_LIM with Agulhas AGRIF zoom in MPI
880    export TEST_NAME="SHORT"
881    cd ${CONFIG_DIR}
882    . ./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}
883    cd ${SETTE_DIR}
884    . ./param.cfg
885    . ./all_functions.sh
886    . ./prepare_exe_dir.sh
887    JOB_FILE=${EXE_DIR}/run_job.sh
888    NPROC=2
889    if [ -f ${JOB_FILE} ] ; then \rm ${JOB_FILE} ; fi
890    cd ${EXE_DIR}
891    set_namelist namelist_cfg nn_it000 1
892    set_namelist namelist_cfg nn_itend 75
893    set_namelist namelist_cfg ln_ctl .false.
894    set_namelist namelist_cfg ln_clobber .true.
895    set_namelist namelist_cfg nn_fwb 0
896    set_namelist namelist_cfg jpni 1
897    set_namelist namelist_cfg jpnj 2
898    set_namelist namelist_cfg jpnij 2
899    set_namelist 1_namelist_cfg nn_it000 1
900    set_namelist 1_namelist_cfg nn_itend 150
901    set_namelist 1_namelist_cfg ln_ctl .false.
902    set_namelist 1_namelist_cfg ln_clobber .true.
903    if [ ${USING_MPMD} == "yes" ] ; then
904       set_xio_using_server iodef.xml true
905    else
906       set_xio_using_server iodef.xml false
907    fi
908    cd ${SETTE_DIR}
909    . ./prepare_job.sh input_ORCA2_LIM_AGRIF.cfg $NPROC ${TEST_NAME} ${MPIRUN_FLAG} ${JOB_FILE} ${NUM_XIOSERVERS}
910    cd ${SETTE_DIR}
911    . ./fcm_job.sh $NPROC ${JOB_FILE} ${INTERACT_FLAG} ${MPIRUN_FLAG}
912fi
913
914done
Note: See TracBrowser for help on using the repository browser.