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 5627 for branches/2015 – NEMO

Changeset 5627 for branches/2015


Ignore:
Timestamp:
2015-07-22T12:39:37+02:00 (9 years ago)
Author:
nicolasmartin
Message:

dev_r5092_CNRS_SETTE minor modifications

Location:
branches/2015/dev_r5092_CNRS_SETTE/NEMOGCM/TRUST
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5092_CNRS_SETTE/NEMOGCM/TRUST/config/user_template.cfg

    r5484 r5627  
    44 
    55# NEMO overall configuration: 
    6 [ -z "${NEMO_BRAN}" ] && NEMO_BRAN=''        # ex: 'trunk', 'dev_v3_4_STABLE_2012', ... 
     6[ -z "${NEMO_BRAN}" ] && NEMO_BRAN=''        # ex: 'trunk', 'nemo_v3_6_STABLE', ... 
     7[ -z "${CONF_REFE}" ] && REFE_CONF=''        # ex: 'ORCA2_LIM_PISCES', 'GYRE', ... 
     8[ -z "${CONF_TEST}" ] && TEST_CONF=''        # ex: "${CONF_REFE}_trust", ... 
     9[ -z "${FORC_TARF}" ] && FORC_TARF=''     # Archive name (ex: 'ORCA2_LIM_nemo_v3.6.tar', ...), let blank if not requested 
    710NEMO_HOME=''                              # NEMOGCM directory for computation (./ARCH, ./CONFIG, ...) 
    811                                             # ex: ".../NEMO/${NEMO_BRAN}/NEMOGCM", ... 
    9 [ -z "${CONF_REFE}" ] && REFE_CONF=''        # ex: 'ORCA2_LIM_PISCES', 'GYRE', ... 
    10 [ -z "${CONF_TEST}" ] && TEST_CONF=''        # ex: "${CONF_REFE}_trust", ... 
     12NEMO_FORC=''                              #     Directory with forcing archive from DODS/ESGF server to extract 
     13                                           # or    " "     ""  all inputs files to copy into ${TEST_DIR} 
    1114 
    1215# Comparatives directories localization: 
    13 REFE_DIR=''                  # "Standard" folder where previous result files are stored for comparison 
     16REFE_DIR=''                  # "Standard" folder where previous result files have been stored for comparison 
    1417                                             # ex: ".../${CONF_REFE}/${NEMO_BRAN}" 
    1518TEST_DIR=''                  # Test       folder for computation 
     
    2023#DIR_OASI=''                       # ex: '.../OASIS' 
    2124 
    22 # NEMO inputs 
    23 NEMO_FORC=''                              #     Directory with forcing archive from DODS/ESGF server to extract 
    24                                            # or    " "     ""  all inputs files to copy into ${TEST_DIR} 
    25 FORC_TARF=''                              # Archive name (ex: 'ORCA2_LIM_nemo_v3.6.tar', ...), let blank if not requested 
    26  
    2725# Mailing list to inform of a failure (-p|--publish option required) 
    2826[ -z "$EMAIL"] && EMAIL='' 
  • branches/2015/dev_r5092_CNRS_SETTE/NEMOGCM/TRUST/trusting.sh

    r5623 r5627  
    1212while [ $# -ne 0 ]; do 
    1313    case $1 in 
    14         -b|--branch ) NEMO_BRAN=$2         ; shift 2;; -d|--debug  ) set -vx; DEBUG=1     ; shift  ;; 
    15    -e|--email  ) EMAIL=$2             ; shift 2;; -j|--job    ) NPROC=$2             ; shift 2;; 
    16    -h|--help   ) cat trusting_help.txt; exit  1;; -m|--machine) CFG_ARCH=$2          ; shift 2;; 
    17    -n|--newconf) TEST_CONF=$2         ; shift 2;; -r|--refconf) REFE_CONF=$2         ; shift 2;; 
    18    -t|--time   ) TIME_LIMI=$2         ; shift 2;; -p|--publish) PUBLISH=1            ; shift  ;; 
    19         -u|--user   ) CFG_USER=$2          ; shift 2;; -v|--version) NEMO_VERS=$2         ; shift 2;; 
    20                    *) cat trusting_help.txt; exit  1;; 
     14   -a|--archive) FORC_TARF=$2         ; shift 2;; -b|--branch ) NEMO_BRAN=$2         ; shift 2;; 
     15   -d|--debug  ) set -vx; DEBUG=1     ; shift  ;; -e|--email  ) EMAIL=$2             ; shift 2;; 
     16   -j|--job    ) NPROC=$2             ; shift 2;; -h|--help   ) cat trusting_help.txt; exit  1;; 
     17   -m|--machine) CFG_ARCH=$2          ; shift 2;; -n|--newconf) TEST_CONF=$2         ; shift 2;; 
     18   -r|--refconf) REFE_CONF=$2         ; shift 2;; -t|--time   ) TIME_LIMI=$2         ; shift 2;; 
     19   -p|--publish) PUBLISH=1            ; shift  ;; -u|--user   ) CFG_USER=$2          ; shift 2;; 
     20   -v|--version) NEMO_VERS=$2         ; shift 2;;            *) cat trusting_help.txt; exit  1;; 
    2121    esac 
    2222done 
  • branches/2015/dev_r5092_CNRS_SETTE/NEMOGCM/TRUST/trusting_func.sh

    r5623 r5627  
    9696    fi 
    9797 
    98     ${cmd_iol} > inputs_list.txt 
    99     ${cmd_iof} > /dev/null 
     98    ${cmd_iol} > inputs_list.txt && ${cmd_iof} > /dev/null 
    10099} 
    101100 
Note: See TracChangeset for help on using the changeset viewer.