Changeset 4357


Ignore:
Timestamp:
03/25/19 16:52:34 (5 years ago)
Author:
jgipsl
Message:

Set compression_level=2 from config.card as done in IPSLCM6.

Location:
CONFIG/UNIFORM/v7/ICOLMDZOR_v7
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • CONFIG/UNIFORM/v7/ICOLMDZOR_v7/EXPERIMENTS/ICOLMDZ/CREATE_amip/config.card

    r4348 r4357  
    3030# Source following file with module settings 
    3131EnvFile=`pwd`/../ARCH/arch-X64_IRENE.env 
     32#============================ 
     33#-- Compression level for netcdf output files 
     34CompressionLevel=2 
     35 
    3236#======================================================================== 
    3337#D-- ListOfComponents - 
  • CONFIG/UNIFORM/v7/ICOLMDZOR_v7/EXPERIMENTS/ICOLMDZ/clim_noleap/config.card

    r4336 r4357  
    3030#D-- 1Y, 1M, 5D, 1D 
    3131PeriodLength=2D 
     32#============================ 
     33#-- Compression level for netcdf output files 
     34CompressionLevel=2 
    3235 
    3336#======================================================================== 
  • CONFIG/UNIFORM/v7/ICOLMDZOR_v7/EXPERIMENTS/ICOLMDZOR/clim_noleap/config.card

    r4336 r4357  
    3030#D-- 1Y, 1M, 5D, 1D 
    3131PeriodLength=2D 
     32#============================ 
     33#-- Compression level for netcdf output files 
     34CompressionLevel=2 
    3235 
    3336#======================================================================== 
  • CONFIG/UNIFORM/v7/ICOLMDZOR_v7/EXPERIMENTS/ICOLMDZOR/highresmip/config.card

    r4336 r4357  
    3030#D-- 1Y, 1M, 5D, 1D 
    3131PeriodLength=2D 
     32#============================ 
     33#-- Compression level for netcdf output files 
     34CompressionLevel=2 
    3235 
    3336#======================================================================== 
  • CONFIG/UNIFORM/v7/ICOLMDZOR_v7/GENERAL/DRIVER/dynamico.driver

    r4341 r4357  
    9999    fi 
    100100 
     101 
     102    # Compression level (if CompressionLevel is not empty) 
     103    if [ ! "X${config_UserChoices_CompressionLevel}" = "X" ] ; then 
     104        echo "NetCDF output files compression level is " ${config_UserChoices_CompressionLevel} 
     105        listfile=$(ls file_def*dynamico.xml) 
     106        for file in ${listfile} ; do 
     107            sed -i -e "s/\(compression_level=\"\)[^\"]*\(\"\)/\1${config_UserChoices_CompressionLevel}\2/" ${file} 
     108        done 
     109    fi 
     110 
    101111    IGCM_debug_PopStack "ICO_Update" 
    102112} 
  • CONFIG/UNIFORM/v7/ICOLMDZOR_v7/GENERAL/DRIVER/lmdz.driver

    r4336 r4357  
    543543    fi 
    544544             
     545 
     546    # Compression level (if CompressionLevel is not empty) 
     547    if [ ! "X${config_UserChoices_CompressionLevel}" = "X" ] ; then 
     548        echo "NetCDF output files compression level is " ${config_UserChoices_CompressionLevel} 
     549        listfile=$(ls file_def*lmdz.xml) 
     550        for file in ${listfile} ; do 
     551            sed -i -e "s/\(compression_level=\"\)[^\"]*\(\"\)/\1${config_UserChoices_CompressionLevel}\2/" ${file} 
     552        done 
     553    fi 
     554 
    545555    IGCM_debug_PopStack "ATM_Update" 
    546556} 
  • CONFIG/UNIFORM/v7/ICOLMDZOR_v7/GENERAL/DRIVER/orchidee.driver

    r4312 r4357  
    172172 
    173173 
     174    # Compression level (if CompressionLevel is not empty) 
     175    if [ ! "X${config_UserChoices_CompressionLevel}" = "X" ] ; then 
     176        echo "NetCDF output files compression level is " ${config_UserChoices_CompressionLevel} 
     177        listfile=$(ls file_def*orchidee.xml) 
     178        for file in ${listfile} ; do 
     179            sed -i -e "s/\(compression_level=\"\)[^\"]*\(\"\)/\1${config_UserChoices_CompressionLevel}\2/" ${file} 
     180        done 
     181    fi 
     182 
    174183    IGCM_debug_PopStack "SRF_Update" 
    175184} 
Note: See TracChangeset for help on using the changeset viewer.