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.
Changeset 11140 for NEMO/branches/2019/fix_sette_ticket2239/param.cfg – NEMO

Ignore:
Timestamp:
2019-06-19T17:38:50+02:00 (6 years ago)
Author:
mathiot
Message:

sette rpt changes: FAILED line in red, indication when the run start to diverge, move old/unused script to OLD, update README to README.rst and add extra parameters in param.cfg

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/fix_sette_ticket2239/param.cfg

    r10819 r11140  
    11# Computer/user dependant variable needed to run sette 
    2 # 
    3 # Compiler among those in NEMOGCM/ARCH 
    4 COMPILER=X64_ADA 
    52# 
    63# REFERENCE run.stat tracer.stat you want to compare with 
     
    118# ------------------------------------------------------------------------------------------ 
    129# IMPORTANT: 
    13 # variables (BATCH_CMD, BATCH_STAT, BATCH_NAME, FORCING_DIR, SVN_CMD, ADD_NOSIGNEDZERO) 
     10# variables (COMPILER, USING_XIOS, USING_MPMD, BATCH_CMD, BATCH_STAT, BATCH_NAME, FORCING_DIR, SVN_CMD, ADD_NOSIGNEDZERO) 
    1411# can be exported from your shell startup files.  
    1512# If it is the case, nothing to do 
    1613# otherwise, you need to update the default initialisation 
    1714# 
    18 # ADVISE: setup the default value in your startup file if it doesn't fit your need. 
     15# ADVISE: setup the default value in your startup file if it doesn't fit your need for at least 
     16# SETTE_COMPILER, SETTE_BATCH_CMD, SETTE_BATCH_STAT, SETTE_BATCH_NAME, SETTE_FORCING_DIR,  
     17# 
     18# ------------------------------------------------------------------------------------------ 
     19# COMPILER setting 
     20# Compiler among those in NEMOGCM/ARCH 
     21COMPILER=${SETTE_COMPILER:-XXXXXXXX} 
     22# ------------------------------------------------------------------------------------------ 
    1923# 
    2024# BATCH command 
     
    2529# generic sette job name (as it appears with $BATCH_STAT command) 
    2630BATCH_NAME=${SETTE_BATCH_NAME:-sette} 
     31# ------------------------------------------------------------------------------------------ 
    2732# 
    28 # 
    29 # FILES STORING 
     33# FILES STORING paths 
    3034# forcing files storing 
    3135FORCING_DIR=${SETTE_FORCING_DIR:-$WORKDIR/FORCING} 
    3236# validation files storing 
    33 NEMO_VALIDATION_DIR=${WORKDIR:-$MAIN_DIR}/NEMO_VALIDATION 
     37NEMO_VALIDATION_DIR=${SETTE_NEMO_VALIDATION_DIR:-$MAIN_DIR}/NEMO_VALIDATION 
    3438# input files storing (namelist, iodef ...) (DO NOT CHANGE) 
    3539INPUT_DIR=${CONFIG_DIR}/${NEW_CONF}/EXP00 
     40# ------------------------------------------------------------------------------------------ 
    3641# 
     42# RUN set up 
     43# USING_XIOS        : flag to control the activation of key_iomput 
     44#                      "yes" to compile using key_iomput and link to the external XIOS library 
     45#                      "no"  to compile without key_iomput and link to the old IOIPSL library 
     46USING_XIOS=${SETTE_XIOS:-"yes"} 
     47# USING_MPMD        : flag to control the use of stand-alone IO servers 
     48#                     requires USING_XIOS="yes" 
     49#                      "yes" to run in MPMD (detached) mode with stand-alone IO servers 
     50#                      "no"  to run in SPMD (attached) mode without separate IO servers  
     51# MPMD 
     52USING_MPMD=${SETTE_MPMD:-"no"} 
     53# generique batch scrip prefix name if MPMD set to true/false 
     54JOB_PREFIX_MPMD=${SETTE_JOB_PREFIX_MPMD:-batch-mpmd} 
     55JOB_PREFIX_NOMPMD=${SETTE_JOB_PREFIX_NOMPMD:-batch} 
     56# ------------------------------------------------------------------------------------------ 
    3757# 
    3858# MISCELENIOUS 
     
    4464#- only for IBM 
    4565#TMPDIR=${CONFIG_DIR}/${NEW_CONF}/EXP00 
    46 # 
     66# ------------------------------------------------------------------------------------------ 
    4767# 
    4868# LIST OF CONFIGURATIONS 
    4969# to be updated if you added an new configuration in sette_test-cases.sh or sette_reference-configuration.sh 
    5070TEST_CONFIGS=${SETTE_TEST_CONFIGS:-"ORCA2_ICE_PISCES ORCA2_OFF_PISCES AMM12 AGRIF SPITZ12 GYRE_PISCES SAS ORCA2_ICE_OBS ICE_AGRIF OVERFLOW LOCK_EXCHANGE VORTEX ISOMIP"} 
     71# ------------------------------------------------------------------------------------------ 
Note: See TracChangeset for help on using the changeset viewer.