#- $Id: lmdz.driver 119 2007-07-31 13:56:33Z acosce $ #!/bin/ksh #----------------------------------------------------------------- function ATM_Initialize { IGCM_debug_PushStack "ATM_Initialize" RESOL_ATM=$( echo $RESOL | awk "-Fx" '{print $2}' ) case ${RESOL_ATM} in LMD7245) BandsResol=72x45x19 ;; LMD9671) BandsResol=96x71x19 ;; LMD9672) BandsResol=96x72x19 ;; LMD14496) BandsResol=144x96x19 ;; LMD144142) BandsResol=144x142x19 ;; esac ##- Default number of processor for lmdz NUM_PROC_ATM=1 if [ X"${BATCH_NUM_PROC_TOT}" != X ] ; then NUM_PROC_ATM=${BATCH_NUM_PROC_TOT} fi ##--Frequency purpose .... ##-- Initialisation .... OK_instan=n ##-- OK_journe=n OK_mensuel=n case ${config_UserChoices_PeriodLength} in 1Y|1y|1M|1m) OK_mensuel=y ;; 5D|5d|1D|1d) OK_journe=n ;; esac for frequency in ${config_ATM_WriteFrequency} ; do case ${frequency} in 5D|5d|1D|1d) OK_journe=n ;; esac done ##--Variables used by LMDZ -- PAT_INST=$( grep 'OK_instan' ${SUBMIT_DIR}/PARAM/physiq.def ) PAT_JOUR=$( grep 'OK_journe' ${SUBMIT_DIR}/PARAM/physiq.def ) PAT_MOIS=$( grep 'OK_mensuel' ${SUBMIT_DIR}/PARAM/physiq.def ) PAT_iphysiq=$( grep 'iphysiq' ${SUBMIT_DIR}/PARAM/gcm.def ) PAT_iperiod=$( grep 'iperiod' ${SUBMIT_DIR}/PARAM/gcm.def | tail -1) PAT_day_step=$( grep 'day_step' ${SUBMIT_DIR}/PARAM/gcm.def ) PAT_ecritphy=$( grep 'ecritphy' ${SUBMIT_DIR}/PARAM/gcm.def ) ##-- This could be define in lmdz.card, inside section [UserChoices] ##-- Otherwise we get the value in *.def iperiod=$(grep iperiod ${SUBMIT_DIR}/PARAM/gcm.def | awk -F= '{print $2}' | tail -1) iphysiq=$(grep iphysiq ${SUBMIT_DIR}/PARAM/gcm.def | awk -F= '{print $2}') # day_step : number of steps per day (multiple of iperiod) (( day_step = 48 * iphysiq )) IGCM_debug_PopStack "ATM_Initialize" } #----------------------------------------------------------------- function ATM_Update { IGCM_debug_PushStack "ATM_Update" ecritphy=${PeriodLengthInDays} ##-- Remise ou non a zero de la date initiale de LMDZ pour le fichier run.def if [ ${CumulPeriod} -eq 1 ] ; then RAZ_DATE=1 else RAZ_DATE=0 fi ## Mise en forme du fichier physiq.def sed -e "s/OK_instan=.*/OK_instan=${OK_instan}/" \ -e "s/OK_journe=.*/OK_journe=${OK_journe}/" \ -e "s/OK_mensuel=.*/OK_mensuel=${OK_mensuel}/" \ physiq.def > physiq.def.tmp IGCM_sys_Mv physiq.def.tmp physiq.def ## Mise en forme du fichier gcm.def sed -e "s/${PAT_ecritphy}/ecritphy=${ecritphy}/" \ -e "s/${PAT_day_step}/day_step=${day_step}/" \ -e "s/${PAT_iperiod}/iperiod=${iperiod}/" \ -e "s/${PAT_iphysiq}/iphysiq=${iphysiq}/" \ gcm.def > gcm.def.tmp IGCM_sys_Mv gcm.def.tmp gcm.def greg_dat=$( IGCM_date_ConvertFormatToGregorian $PeriodDateBegin ) jul_dat=$( IGCM_date_ConvertGregorianDateToJulian $greg_dat ) nbjour=$( expr \( $jul_dat \% 1000 \) ) yractu=$( expr $greg_dat / 10000 ) echo "dayref = " $nbjour "year actu = " $yractu ## Mise en forme du fichier run.def sed -e "s/_dayref_/${nbjour}/" \ -e "s/_anneeref_/${yractu}/" \ -e "s/_nday_/${PeriodLengthInDays}/" \ -e "s/_raz_date_/${RAZ_DATE}/" \ run.def > run.def.tmp IGCM_sys_Mv run.def.tmp run.def IGCM_debug_PopStack "ATM_Update" } #----------------------------------- function ATM_Finalize { IGCM_debug_PushStack "ATM_Finalize" echo FINALIZE ATM ! IGCM_debug_PopStack "ATM_Finalize" }