Changeset 1147 for trunk/libIGCM


Ignore:
Timestamp:
12/19/14 23:46:38 (10 years ago)
Author:
sdipsl
Message:

broken ensemble. Tentative fix for Agathe. Ensemble are broken since r1057...
broken rebuild station due to changes in LMDZ station files. Tentative fix for Lidia.

Location:
trunk/libIGCM
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/libIGCM_ensemble/libIGCM_ensemble.ksh

    r1066 r1147  
    3535  IGCM_debug_Print 1 "Ens_PARAMETRIC ACTIVE  = ${ensemble_Ens_PARAMETRIC_active}" 
    3636  echo "" 
     37 
     38  #==================================================== 
     39  # Define ARCHIVE : Dedicated to large files 
     40  # Define STORAGE : Dedicated to small/medium files 
     41  # Define R_OUT   : Output tree located on ARCHIVE 
     42  # Define R_FIG   : Output tree located on STORAGE hosting figures (monitoring and atlas, and/or small files) 
     43  # Define R_BUF   : USELESS and DEPRECATED output tree. 
     44  IGCM_sys_defineArchives 
    3745 
    3846  IGCM_debug_PopStack "IGCM_ensemble_Init" 
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_ada.ksh

    r1140 r1147  
    18211821    [ ${i} = 1 ] && file_out=${file_in} && continue 
    18221822    # detect time counter and do the job only if present 
    1823     var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1) 
     1823    var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1 | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') 
    18241824    if [ X${var_unlim} = Xtime_counter ] ; then 
    18251825      prefix_invert=$( basename ${file_in} .nc ) 
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_curie.ksh

    r1140 r1147  
    19851985    [ ${i} = 1 ] && file_out=${file_in} && continue 
    19861986    # detect time counter and do the job only if present 
    1987     var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1) 
     1987    var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1 | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') 
    19881988    if [ X${var_unlim} = Xtime_counter ] ; then 
    19891989      prefix_invert=$( basename ${file_in} .nc ) 
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_default.ksh

    r1140 r1147  
    14971497    [ ${i} = 1 ] && file_out=${file_in} && continue 
    14981498    # detect time counter and do the job only if present 
    1499     var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1) 
     1499    var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1 | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') 
    15001500    if [ X${var_unlim} = Xtime_counter ] ; then 
    15011501      prefix_invert=$( basename ${file_in} .nc ) 
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_iitm.ksh

    r1140 r1147  
    15391539    [ ${i} = 1 ] && file_out=${file_in} && continue 
    15401540    # detect time counter and do the job only if present 
    1541     var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1) 
     1541    var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1 | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') 
    15421542    if [ X${var_unlim} = Xtime_counter ] ; then 
    15431543      prefix_invert=$( basename ${file_in} .nc ) 
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_obelix.ksh

    r1140 r1147  
    15371537    [ ${i} = 1 ] && file_out=${file_in} && continue 
    15381538    # detect time counter and do the job only if present 
    1539     var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1) 
     1539    var_unlim=$(ncdump -h ${file_in} | grep UNLIMITED | cut -d ' ' -f 1 | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') 
    15401540    if [ X${var_unlim} = Xtime_counter ] ; then 
    15411541      prefix_invert=$( basename ${file_in} .nc ) 
Note: See TracChangeset for help on using the changeset viewer.