#!/bin/bash -l # # ./nccf_atm_monthly.sh path_to_config_file >& EXPID-startdate.log & # # # This script will extract variabls from EC-Earth monthly atmospheric output # which is available in MMA files, save each variable in one file and also # combine members together. It will modify the header informaton of the # generated files according to CMIP5 standard and the variable names will be # modified according PCMDI standard variable names. # # Written by Hui Du # # Institut Català de Ciències del Clima / Climate Forecasting Unit (IC3/CFU) # Created: February 22, 2010 # Adapted: Pierre-Antoine Bretonnière - IC3 , January 2013 #module load NCO #module load CDO set -exv msg='Your experiment crashed! Your workdir \($WORKDIR\) will be kept for one week from now and then deleted' trap " echo $msg ; rm -rf $WORKDIR | at now + 7 days ; exit" SIGINT SIGHUP SIGTERM SIGSEGV SIGKILL EXIT ################################# #### User Defined Funtions #### ################################# # check if args are ok function check_args(){ NB_ARGS=$# if [ $# -ne 1 ] ; then echo echo "USAGE: config_file " echo "For example: ./nccf_atm_monthly.new.sh /home/Earth/$user/es_git/atmospheric_diagnostics/config_file " echo exit 1 fi } function get_leadtime(){ #gets lead_time and checks if all members have the same number of months NMONTH=9999999 for DIR in $MEM_LST do cd ${DATADIR}/${EXPID}/${SDATE}/${DIR}/outputs # hard coded NFILE="$( find . -maxdepth 1 -name "MMA*" |wc -l)" for TMPFILE in $( find . -maxdepth 1 -name "MMA*" | sed -e 's/\.\///g' ) do NMONTHS_LOC=$(tar tvf $TMPFILE | grep GG | wc -l) [ $NMONTH -ne $NMONTHS_LOC ] && [ $NMONTH -ne 9999999 ] && echo "all members or start dates don't have the same number of months, be careful" [ $NMONTH -ge $NMONTHS_LOC ] && NMONTH=$NMONTHS_LOC done export NLT=$((NFILE*NMONTH)) cd ${WORKDIR} done } function header(){ SD=$1 rtime 19500101 ${SD} ncks -h -d ensemble,0,$((ENSEMBLE-1)),1 ${HEAD_DIR}/template.nc toto.nc # select sub member cp toto.nc toto1.nc TIME_BND1=0 TIME_BND2=$(get_hours $SD) LEADTIME=$(((TIME_BND1+TIME_BND2)/2)) ncap2 -O -h -s "leadtime(0)=${LEADTIME};time_bnd(,0)=${TIME_BND1};time_bnd(,1)=${TIME_BND2}" toto.nc toto.nc for ((i=1;i<=$((NLT-1));i++)); do FORDATE=$(leadtime2date $SD $i) INTERVAL=$(get_hours $FORDATE) TIME_BND1=$TIME_BND2 TIME_BND2=$((TIME_BND1+INTERVAL)) LEADTIME=$(((TIME_BND1+TIME_BND2)/2)) echo $fordate $interval $time_bnd1 $time_bnd2 ncap2 -O -h -s "reftime(0)=${REFTIME_VALUE};leadtime(0)=${LEADTIME};time_bnd(,0)=${TIME_BND1};time_bnd(,1)=${TIME_BND2}" toto1.nc toto1.nc ncrcat -O -h toto.nc toto1.nc toto.nc done mv toto.nc header.nc; rm toto1.nc ncap2 -O -h -s "reftime(0)=reftime(1)" header.nc header.nc } # function to get reftime time function rtime(){ DATE1=$1 DATE2=$2 # FACTOR=day # h for hour, d for days # echo "NFRP:",$NFRP # FACTOR=day # h for hour, d for days YEAR1=$(echo $DATE1|cut -c1-4) MONTH1=$(echo $DATE1|cut -c5-6) DAY1=$(echo $DATE1|cut -c7-8) YEAR2=$(echo $DATE2|cut -c1-4) MONTH2=$(echo $DATE2|cut -c5-6) DAY2=$(echo $DATE2|cut -c7-8) SEC1=$(date --utc --date "${YEAR1}-${MONTH1}-${DAY1}" +%s) SEC2=$(date --utc --date "${YEAR2}-${MONTH2}-${DAY2}" +%s) # case $FACTOR in # hour) # FACTOR=3600 # 60*60 # ;; # day) # FACTOR=86400 # 60*60*24 # ;; # esac REFTIME_VALUE=$(((SEC2-SEC1)/FACTOR)) } function leadtime2date(){ # function leadtime2date, based on starting date and lead time to calculate date(year & month) of the corresponding leadtime INIDATE=$1 OFFSET=$2 YY=$(echo $INIDATE|cut -c1-4) MM=$(echo $INIDATE|cut -c5-6) MM=$(echo $MM | sed 's/^0*//;s/^$/0/' ) YY1=$((YY+offset/12)) NMONTH=$((offset%12)) MM1=$((MM+NMONTH)) if [ $MM1 -gt 12 ]; then YY1=$((YY1+1)) MM1=$((MM1-12)) fi if [ $MM1 -lt 10 ]; then MM1="0$MM1" fi } # get the total number of HOURS for a specific MONTH function get_hours(){ YYMM=$1 YEAR=$(echo $YYMM|cut -c1-4) MONTH=$(echo $YYMM|cut -c5-6) NDAYS=$(cal $MONTH $YEAR |egrep "^[ 0-9][0-9]| [ 0-9][0-9]$" |wc -w) HOURS=$((NDAYS*24)) echo $HOURS } function extract(){ #typeset var jt #typeset var YEAR0 #typeset var YEARF #typeset var MON0 #typeset var MONF for MEM in ${MEM_LST[@]}; do # untar and unzip MMA SH files and GG files if [ -z $( echo ${LEAD_LIST[@]} ) ];then PATH_TO_SEARCH=${DATADIR}/${EXPID}/${SDATE}/$MEM FILE_LIST=$(find $PATH_TO_SEARCH -type f -iname "MMA*" 2> /dev/null) else export YEAR0=${LEAD_LIST[0]} export MON0=${LEAD_LIST[1]} export YEARF=${LEAD_LIST[2]} export MONF=${LEAD_LIST[3]} export CHUNK_SIZE=${LEAD_LIST[4]} export YYYY0=$(echo $SDATE | cut -b -4) export MM0=$(echo $SDATE | cut -b 5-6) export LTIME0=1 export LTIMEF=$(( ( ($YEARF - $YEAR0) * 12 + 10#$MONF - 10#$MON0+1 )/$CHUNK_SIZE )) jt=$LTIME0 while [ $jt -le $((LTIMEF)) ] do YEAR1=$(( $YEAR0 +(10#$MON0+($jt-1)*$CHUNK_SIZE-1)/ 12 )) MON1=$(( ( 10#$MON0 + ( $jt - 1 ) * ($CHUNK_SIZE) ) % 12)) MON1=$(echo $(printf "%02d" $(( 10#$MON1))) ) YEAR2=$(( $YEAR1 + ( 10#$MON1 + $CHUNK_SIZE-1 ) / 12 )) MON2=$(( ( 10#$MON1 + $CHUNK_SIZE-1 ) % 12 )) MON2=$(echo $(printf "%02d" $(( 10#$MON2))) ) if [ $MON1 -eq 0 ];then MON1=12 YEAR1=$(expr $YEAR1 - 1 ) fi if [ $MON2 -eq 0 ];then MON2=12 YEAR2=$(expr $YEAR2 - 1 ) fi jt=$(($jt+1)) FILE="$( find ${DATADIR}/${EXPID}/${SDATE}/*/outputs/ -maxdepth 1 -name "MMA_${EXPID}_${SDATE}_${MEM}_${YEAR1}"$(printf "%02d" $((10#$MON1)))"01-${YEAR2}"$(printf "%02d" $((10#$MON2)))"*.tar" )" if [[ -z ${FILE} ]]; then echo "Expected file ${DATADIR}/${EXPID}/${SDATE}/${MEM}/outputs/MMA_${EXPID}_${SDATE}_${MEM}_${YEAR1}${MON1}01-${YEAR2}${MON2}*.tar not found, check your Namelist parameters" exit fi FILE_LIST="$FILE_LIST ${FILE}" done fi echo ${FILE_LIST} for f in ${FILE_LIST};do SH_FILES=$(tar tf ${f}|grep SH) for FILE in ${SH_FILES};do tar xvf ${f} ${FILE} ;gunzip -q ${FILE}; mv ${FILE%???} ${FILE%???}.$MEM done GG_FILES=$(tar tf ${f}|grep GG) for FILE in ${GG_FILES};do tar xvf ${f} ${FILE} ;gunzip -q ${FILE}; mv ${FILE%???} ${FILE%???}.$MEM done done echo "jt ltimef " $jt $((LTIMEF)) if [ $jt -le $((LTIMEF)) ]; then echo le else echo gt fi echo "sortie de extract" $MEM -- ${MEM_LST[@]} done echo "sortie de extract" } function read_vars(){ #if no list of variables is provided in the namelist, looks for all variables in the files OUTPUT_FILE=$1 GRID_TYPE=$2 VAR_LST_DIM=$(ncdump -h $OUTPUT_FILE | grep float | sed -e s/float//g | sed -e s/\,\ /@/g | sed -e s/\;//g ) #get the names of the variables in output files for VAR_DIM in $VAR_LST_DIM do NB_DIMS=$(echo $VAR_DIM | sed -e s/[^@]/\ /g | wc -w) #count the number of dimensions of each variable VAR=$(echo $VAR_DIM | sed -e 's/(.*)//g' ) case $GRID_TYPE in GG) [ $NB_DIMS -eq 2 ] && VAR_LST_2D_GG=$(echo ${VAR_LST_2D_GG} $VAR) || VAR_LST_3D_GG=$(echo ${VAR_LST_3D_GG} $VAR) #create a separate list of variables for 2d and 3d ;; SH) [ $NB_DIMS -eq 2 ] && VAR_LST_2D_SH=$(echo ${VAR_LST_2D_SH} $VAR) || VAR_LST_3D_SH=$(echo ${VAR_LST_3D_SH} $VAR) #create a separate list of variables for 2d and 3d ;; esac done } # for surface variables (manipulate GG files) function surface(){ export YEAR0=${LEAD_LIST[0]} export MON0=${LEAD_LIST[1]} export YEARF=${LEAD_LIST[2]} export MONF=${LEAD_LIST[3]} MONF=$(echo $(printf "%02d" $(( 10#$MONF))) ) #copy and format the mask cp ${MASK_PATH} mask.nc lstdims=`ncdump -h mask.nc | awk /dimensions:/,/variables:/ | grep -v dimensions: | grep -v variables: | awk '{print $1}'` if [[ ${lstdims/longitude} == ${lstdims} ]] && [[ ${lstdims/latitude} == ${lstdims} ]] ; then ncrename -h -v lon,longitude -v lat,latitude mask.nc ncrename -h -d lon,longitude -d lat,latitude mask.nc fi echo ${MEM_LST[@]} for MEM in ${MEM_LST[@]}; do # FILES=$(ls MMA*GG*.nc.$MEM) FILES="$( find . -maxdepth 1 -name "MMA*GG*.nc.$MEM" | sed -e 's/\.\///g' | sort -u )" nb_months_asked=$(( ( ($YEARF - $YEAR0) * 12 + 10#$MONF - 10#$MON0+1 ) )) if [[ $NLT -ne $nb_months_asked ]];then echo "Warning, the number of months in MMA (",$nb_files,") is different from the number of months you required according to the LEADLIST",$(( ( ($YEARF - $YEAR0) * 12 + $MONF - $MON0+1 )))," check your configfile!" exit fi #### process each variable #### for VAR in ${VAR_LST_2D[@]}; do # untar once and extract all the variables new_name $VAR case $VAR in "PRECIP") # for precip, have to add CP and LSP to get total precip varnew=prlr for f in ${FILES}; do SUFFIX=$MEM.${f%????} cdo chname,LSP,$varnew -divc,${FACTOR} -add -selname,LSP $f -selname,CP $f ${varnew}.${SUFFIX} done # prlr_files=$(ls ${varnew}*) prlr_files="$(find . -maxdepth 1 -name "${varnew}*${MEM}*" | sed -e 's/\.\///g' | sort -u )" cdo -O mergetime ${prlr_files} tmp_${varnew}_$SDATE.$MEM.nc # combine all the time steps in one file ;; "SSRU") varnew=rsus for f in ${FILES}; do SUFFIX=$MEM.${f%????} cdo chname,SSR,$varnew -divc,${FACTOR} -sub -selname,SSR $f -selname,SSRD $f ${varnew}.${SUFFIX} done # rsus_files=$(ls ${varnew}*) rsus_files="$(find . -maxdepth 1 -name "${varnew}*${MEM}*" | sed -e 's/\.\///g' | sort -u )" cdo -O mergetime ${rsus_files} tmp_${varnew}_$SDATE.$MEM.nc # combine all the time steps in one file ;; "STRU") varnew=rlus for f in ${FILES}; do SUFFIX=$MEM.${f%????} cdo chvar,STRD,rlus -divc,${FACTOR} -sub -selname,STRD $f -selname,STR $f ${varnew}.${SUFFIX} done # rsus_files=$(ls ${varnew}*) rsus_files="$( find . -maxdepth 1 -name "${varnew}*${MEM}*" | sed -e 's/\.\///g' | sort -u )" cdo -O mergetime ${rsus_files} tmp_${varnew}_$SDATE.$MEM.nc # combine all the time steps in one file ;; "SWVL") # for soil moisture, have to average SWVL1 SWVL3 SWVL2 SWVL4 varnew=mrso for f in ${FILES}; do SUFFIX=$MEM.${f%????} #define the layer thickness fact1=$(echo "scale=8;7/255."|bc) fact2=$(echo "scale=8;21/255."|bc) fact3=$(echo "scale=8;72/255."|bc) fact4=$(echo "scale=8;155/255."|bc) # average soil moisture cdo vertmean -chname,SWVL1,mrso \ -add -add -divc,$fact1 \ -selname,SWVL1 $f\ -divc,$fact2 \ -selname,SWVL2 $f \ -add -divc,$fact3 \ -selname,SWVL3 $f \ -divc,$fact4 \ -selname,SWVL4 $f \ ${varnew}_aux.${SUFFIX} ncwa -h -O -a depth ${varnew}_aux.${SUFFIX} -o ${varnew}.${SUFFIX} rm -f ${varnew}_aux.${SUFFIX} done mrso_files="$(find . -maxdepth 1 -name "${varnew}*${MEM}*" | sed -e 's/\.\///g' | sort -u )" cdo -O mergetime ${mrso_files} tmp_${varnew}_$SDATE.$MEM.nc # combine all the time steps in one file ;; *) new_name $VAR for f in ${FILES};do echo $f -- cdo selname,${VAR} ${f} ${VAR}.$MEM.${f%????} done TMP_FILES="$( find . -maxdepth 1 -name "${VAR}*.nc" | sed -e 's/\.\///g' | sort -u )" TMP_OUT=tmp_${varnew}_$SDATE.$MEM.nc # combine all the time steps in one file cdo -O mergetime ${TMP_FILES} ${TMP_OUT} [[ ${VAR} != ${varnew} ]] && ncrename -h -v ${VAR},${varnew} ${TMP_OUT} case ${varnew} in "rss"|"rls"|"rsscs"|"rsds"|"rlds"|"hflsd"|"hfssd"|"rlt"|"rst"|"rltcs"|"rstcs") cdo divc,${FACTOR} ${TMP_OUT} toto.nc; rm -rf ${TMP_OUT}; mv toto.nc ${TMP_OUT} ncatted -O -h -a units,${varnew},m,c,"W m-2" ${TMP_OUT} ;; esac #mask the continent for tos if [[ $varnew == tos ]] then cdo div ${TMP_OUT} -ltc,0.5 mask.nc ${TMP_OUT}_aux #replace the fill value ncatted -O -a _FillValue,$varnew,d,, ${TMP_OUT}_aux ncatted -O -a missing_value,$varnew,d,, ${TMP_OUT}_aux cdo setrtoc,-9e34,-2000,1.e+12 ${TMP_OUT}_aux ${TMP_OUT} rm -rf ${TMP_OUT}_aux fi rm -rf ${TMP_FILES} ;; esac done # loop for VAR done # loop for members echo "after loop on members in surface" # finish selecting the variables # combine members and change the attributes for VAR in ${VAR_LST_2D[@]}; do new_name $VAR pathout=${SAVEDIR}/${EXPID}/monthly_mean/${varnew}_${NFRP}hourly mkdir -m ug+w -m o-w -p $pathout LSMBSH="${LISTMEMB[0]}-${LISTMEMB[${#LISTMEMB[@]}-1]}" # PREVIOUS_FILE="$(ls -tr ${SAVEDIR}/${EXPID}/monthly_mean/${varnew}_${NFRP}hourly/${varnew}_${SDATE}_*.nc | tail -1)" (if left like this, we have the "no such file" pb. but if we chose the "find" option, we can sort the files and get hte last one edited => have to make a find to be sure there are some previous_files and then, if so, get the actual previous_file with the ls command. #savedir PREVIOUS_FILE="$( find ${pathout} -maxdepth 1 -name "${varnew}_${SDATE}_*.nc" )" echo okkkk if [ ! -z $( ls $PREVIOUS_FILE ) ] ; then PREVIOUS_FILE="$(ls -tr ${pathout}/${varnew}_${SDATE}_*.nc | tail -1)" cd ${pathout} FILE_NAME_PREVIOUS="$( find . -maxdepth 1 -name "${varnew}_${SDATE}_*.nc" | tail -1 | sed -e 's/\.\///g' )" cd - IDX_1ST=$(echo ${varnew}_${SDATE}_fc | wc -m ) FIRST_MEMBER_PREVIOUS=$(echo $FILE_NAME_PREVIOUS | cut -b$IDX_1ST ) IDX_LST=$( expr $IDX_1ST + 2 ) LAST_MEMBER_PREVIOUS=$(echo $FILE_NAME_PREVIOUS | cut -b$IDX_LST ) #security check: if [ $LAST_MEMBER_PREVIOUS -le $(expr ${LISTMEMB[0]} - 1 ) ] ; then cp $PREVIOUS_FILE tmp_$FILE_NAME_PREVIOUS if [ $LAST_MEMBER_PREVIOUS -eq $(expr ${LISTMEMB[0]} - 1 ) ] ; then LSMBSH=${FIRST_MEMBER_PREVIOUS}-${LISTMEMB[${#LISTMEMB[@]}-1]} else echo "Actual list of members does not follow directly the ones already post-processed! Check you did not forget any members at the beginning of your list" MISSING_FIRST=$(expr ${LAST_MEMBER_PREVIOUS} + 1 ) MISSING_LAST=$(expr ${LISTMEMB[0]} - 1 ) LSMBSH=${FIRST_MEMBER_PREVIOUS}_${LISTMEMB[${#LISTMEMB[@]}-1]}-${MISSING_FIRST}_${MISSING_LAST} fi else echo "Some members are going to be treated twice! If you are not adding new lead_times, revise the consistency between your member list and the previously processed files" fi echo ok2 fi echo ok3 pwd ls YRSO=${YEAR0}$(printf "%02d" $(( 10#$MON0)))_${YEARF}$(printf "%02d" $(( 10#$MONF))) gather_memb tmp_${varnew}_$SDATE ${varnew}_${SDATE}_fc${LSMBSH}_${YRSO}.nc $varnew $VAR output=${varnew}_${SDATE}_fc${LSMBSH}_${YRSO}.nc ##### Change the header informations ##### # # Get the CFU standard attributes to be written in the variable # variables="$(cat ${HEAD_DIR}/table_of_variable | cut -f$idx -d'|' | sed -e 's/ /@/g')" #to be changed into more interactive with xml table cfustandard_name="$(echo $variables | cut -f2 -d' ' | sed -e 's/@/ /g')" # variable standard name cfulong_name="$(echo $variables | cut -f3 -d' ' | sed -e 's/@/ /g')" # variable long name cfucell_methods="$(echo $variables | cut -f4 -d' ' | sed -e 's/@/ /g')" # variable cell methods cfuunit="$(echo $variables | cut -f5 -d' ' | sed -e 's/@/ /g')" # variable unit cfuunit_long="$(echo $variables | cut -f6 -d' ' | sed -e 's/@/ /g')" # variable unit long name cfulevel_number="$(echo $variables | cut -f7 -d' ' | sed -e 's/@/ /g')" # variable level cfulevel_type="$(echo $variables | cut -f8 -d' ' | sed -e 's/@/ /g')" # variable level type cfulevel_units="$(echo $variables | cut -f9 -d' ' | sed -e 's/@/ /g')" # variable level unit # # Adding the variable level # # ncap2 -h -O -s level_${varnew}="$cfulevel_number" ${output} ${output} # # Removing unnecessary attributes # #if [[ $idx -ne 40 ]]; then for att in units valid_range actual_range code table GRID_TYPE ; do ncatted -O -h -a ${att},${varnew},d,c, ${output} done # # Adding and modifying the {varnew}iable attributes # ncatted -O -h -a _FillValue,${varnew},a,f,1.e+12 ${output} ncatted -O -h -a standard_name,${varnew},o,c,"$cfustandard_name" ${output} # {varnew}iable standard name ncatted -O -h -a long_name,${varnew},o,c,"$cfulong_name" ${output} # {varnew}iable long name ncatted -O -h -a cell_methods,${varnew},o,c,"$cfucell_methods" ${output} # {varnew}iable cell methods ncatted -O -h -a unit_long,${varnew},o,c,"$cfuunit_long" ${output} # {varnew}iable long unit name ncatted -O -h -a units,${varnew},o,c,"$cfuunit" ${output} # {varnew}iable units #fi # ncatted -O -h -a data_type,level_${varnew},o,c,"$cfulevel_type" ${output} # {varnew}iable level type # ncatted -O -h -a units,level_${varnew},o,c,"$cfulevel_units" ${output} # {varnew}iable level units # ncatted -O -h -a coordinates,${varnew},o,c,"longitude latitude reftime leadtime time_bnd experiment_id source realization institution level_${varnew}" ${output} # variable coordinates ncatted -O -h -a coordinates,${varnew},o,c,"longitude latitude reftime leadtime time_bnd experiment_id source realization institution " ${output} # variable coordinates # # If the NetCDF file had a horizontal axis name different from longitude # ncrename -h -d lon,longitude -v lon,longitude ${output} [[ ! -z $( ncdump -h ${output} | grep record ) ]] && ncrename -h -d record,ensemble ${output} # [[ ! -z $( ncdump -h ${output} | grep ensemble ) ]] && ncrename -h -d record,ensemble ${output} # # If the NetCDF file had a vertical axis name different from latitude # ncrename -h -d lat,latitude -v lat,latitude ${output} # # Adding variable axis # ncatted -O -h -a axis,longitude,o,c,"X" ${output} # variable longitude axis ncatted -O -h -a axis,latitude,o,c,"Y" ${output} # variable latitude axis #[[ $idx -ne 40 ]] && # ncatted -O -h -a axis,level_${varnew},o,c,"Z" ${output} # variable level axis # modify level information # reshape the dimension and make time unlimited # [[ ! -z $( ncdump -h ${output} | grep record ) ]] && ncpdq -O -h -a time,ensemble ${output} ${output} [[ ! -z $( ncdump -h ${output} | grep ensemble ) ]] && ncpdq -O -h -a time,ensemble ${output} ${output} cp ${output} hhh.nc ncks -h -A header.nc ${output} #if [[ $idx -ne 40 ]]; then nt=$(cdo ntime ${output}) # ncatted -O -h -a standard_name,level_${varnew},c,c,"height" ${output} # standard name # ncatted -O -h -a long_name,level_${varnew},c,c,"reference height" ${output} # long name # ncatted -O -h -a data_type,level_${varnew},c,c,"float" ${output} # data type # ncatted -O -h -a units,level_${varnew},c,c,"m" ${output} # units # ncatted -O -h -a axis,level_${varnew},c,c,"Z" ${output} # axis # ncatted -O -h -a positive,level_${varnew},c,c,"up" ${output} # ncap2 -O -h -s "level_${varnew}=float(${cfulevel_number})" $output $output #fi # delete history ncatted -h -a history,global,d,, $output # change institution name ncatted -h -a institution,global,m,c,"IC3" $output # create a script to change the EXPID, insitutution, ensember, source and realiazation i=0 # index echo "before modify ncvalue" $output ; ncdump -h $output for MEM in ${LISTMEMB[@]}; do cat>modify_ncvalue<modify_ncvalue<modify_ncvalue<> /scratch/Earth/${USER}/pp/VAR_LST_2D.txt VAR_LST_3D=$(echo ${VAR_LST_3D_GG} ${VAR_LST_3D_SH}) rm -f /scratch/Earth/${USER}/pp/VAR_LST_3D.txt else VAR_LST_3D_SH_DEFAULT='T U V W Z' VAR_LST_3D_GG_DEFAULT='Q CC CIWC CLWC' VAR_LST_2D_GG_DEFAULT='T2M D2M SSTK MSL PRECIP SSR STR TTR TSR TSRC TTRC SLHF SSHF U10M V10M SSRD CP SF E SSRU SSRC STRU STRD TCC' #if list of variables read from config_file, separation between GG and SH variables for var in ${VAR_LST_3D[@]} do for var_sh in ${VAR_LST_3D_SH_DEFAULT[@]} do [ $var == $var_sh ] && VAR_LST_3D_SH=$(echo $VAR_LST_3D_SH $var) done for var_gg in ${VAR_LST_3D_GG_DEFAULT[@]} do [ $var == $var_gg ] && VAR_LST_3D_GG=$(echo $VAR_LST_3D_GG $var) done done for var in ${VAR_LST_2D[@]} do for var_gg in ${VAR_LST_2D_GG_DEFAULT[@]} do [ $var == $var_gg ] && VAR_LST_2D_GG=$(echo $VAR_LST_2D_GG $var) done done fi echo $YEARF - $YEAR0 - $MONF - 10#$MONF - $MON0 echo "before surface" surface echo "after surface" combine_3d regrid2x2 upper if [[ ${#VAR_LST_MXMN[@]} > 0 ]]; then maxmin #else # echo "" #empty line to avoid trap issue fi cd ~/; rm -rf $WORKDIR # clean up date trap - EXIT #### End of the Main Part of Script ####