Ignore:
Timestamp:
11/22/10 12:44:59 (14 years ago)
Author:
sdipsl
Message:
  • function IGCM_sys_Get_Master on cesium will try 10 times to scp files from master machine. Hopefully the last cesium consolidation
  • function IGCM_config_Check will check chunck2D/3D consistency with TimeSeriesFrequency?.
  • change the way the output from post-processing script was named. We will now have:

-rebuild_fromWorkdir.20051231.out
-create_ts.20051231.2D.out
-create_ts.20051231.3D.out
-atlas_PISCES.19991231.out
-create_ts.20051231.Chunck2D.ATM.POST_1D_histday.out
-create_ts.20051231.Chunck2D.OCE.POST_1D_grid_T.out

  • remove modipsl headers from AA_SE_Checker, AA_TimeSeries_Checker, AA_move-and-rename
    • they check and submit job. They do not use resources and so there is no point to submit them
    • they will be rename shortly SE_Checker.ksh, TimeSeries_Checker.ksh, move-and-rename.ksh
  • cosmetics
File:
1 edited

Legend:

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

    r380 r387  
    313313    echo 
    314314 
     315    typeset i 
     316 
    315317    if ( [ ! X${config_Post_RebuildFrequency} = X${NULL_STR} ] || [ ! X${config_Post_RebuildFrequency} = XNONE ] ) ; then 
    316318        AsynchronousRebuild=true 
     
    330332        IGCM_post_CheckModuloFrequency config_Post_SeasonalFrequency   config_UserChoices_PeriodLength 
    331333    fi 
     334 
     335    #modulo (TimeSeriesFrequency and all Chunck2D) must be zero 
     336    NbJob=${#CHUNCK2D_SIZE[@]} 
     337    i=0 
     338    until [ $i -ge $NbJob ]; do 
     339        IGCM_post_CheckModuloFrequency config_Post_TimeSeriesFrequency ${CHUNCK2D_SIZE[${i}]} 
     340        (( i=i+1 )) 
     341    done 
     342 
     343    #modulo (TimeSeriesFrequency and all Chunck3D) must be zero 
     344    NbJob=${#CHUNCK3D_SIZE[@]} 
     345    i=0 
     346    until [ $i -ge $NbJob ]; do 
     347        IGCM_post_CheckModuloFrequency config_Post_TimeSeriesFrequency ${CHUNCK3D_SIZE[${i}]} 
     348        (( i=i+1 )) 
     349    done 
    332350 
    333351    IGCM_debug_PopStack "IGCM_config_Check" 
Note: See TracChangeset for help on using the changeset viewer.