source: CONFIG/IPSLCM/IPSLCM5/branches/IPSLCM5_v2/EXP00/COMP/lmdz.driver @ 843

Last change on this file since 843 was 815, checked in by mafoipsl, 15 years ago

Add the possibility for LMDZ to use a Band file coming from a previous run.

File size: 9.0 KB
Line 
1#!/bin/ksh
2#-----------------------------------------------------------------
3function ATM_Initialize
4{
5    IGCM_debug_PushStack "ATM_Initialize"
6
7    RESOL_ATM=$( echo $RESOL | awk "-Fx" '{print $2}' | awk "-F-" '{print $1}')
8
9    [ -f ${SUBMIT_DIR}/../.resol ] && eval $(grep RESOL_ATM_3D ${SUBMIT_DIR}/../.resol) || RESOL_ATM_3D=96x95x19
10
11    RESOL_ATM_Z=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $3}' )
12
13    ##-- Calendar type for LMDZ
14    case ${config_UserChoices_CalendarType} in
15        leap|gregorian)
16            CalendarTypeForLmdz=earth_366d;;
17        noleap)
18            CalendarTypeForLmdz=earth_365d;;
19        360d)
20            CalendarTypeForLmdz=earth_360d;;
21        *)
22            CalendarTypeForLmdz=earth_360d
23    esac
24
25    ##--Frequency purpose ....
26    ##--  Initialisation  ....
27    OK_instan=n
28    OK_journe=n
29    OK_mensuel=n
30    ok_hf=n
31
32    case ${config_UserChoices_PeriodLength} in
33        1Y|1y|1M|1m) OK_mensuel=y ;;
34        5D|5d|1D|1d) OK_journe=y ;;
35    esac
36
37    for frequency in ${config_ATM_WriteFrequency} ; do
38        case ${frequency} in
39            5D|5d|1D|1d) OK_journe=y ;;
40        esac
41        case ${frequency} in
42            HF|hf) ok_hf=y ;;
43        esac
44    done
45
46    ##--Variables used by LMDZ in physiq.def --
47    PAT_INST=$(        grep -v ^# ${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}  | grep 'OK_instan='   )
48    PAT_JOUR=$(        grep -v ^# ${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}  | grep 'OK_journe='   )
49    PAT_MOIS=$(        grep -v ^# ${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}  | grep 'OK_mensuel='  )
50    PAT_HFRE=$(        grep -v ^# ${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}  | grep 'ok_hf='       )
51    PAT_ecrit_mth=$(   grep -v ^# ${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}  | grep 'ecrit_mth='   )
52    PAT_ecrit_ISCCP=$( grep -v ^# ${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}  | grep 'ecrit_ISCCP=' )
53    ##--Variables used by LMDZ in gcm.def --
54    PAT_iphysiq=$(   grep -v ^# ${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D} | grep iphysiq  )
55    PAT_iperiod=$(   grep -v ^# ${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D} | grep iperiod  )
56    PAT_day_step=$(  grep -v ^# ${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D} | grep day_step )
57
58    ## Read LMDZ_NbPeriod_adjust option in ${compname}.card
59    IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/${compname}.card UserChoices LMDZ_NbPeriod_adjust
60    eval LMDZ_NbPeriod_adjust=\${${compname}_UserChoices_LMDZ_NbPeriod_adjust} > /dev/null 2>&1
61
62    if [ ${LMDZ_NbPeriod_adjust} -eq 0 ] ; then
63        IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/${compname}.card UserChoices LMDZ_Bands_file_name
64        eval LMDZ_Bands_file_name=\${${compname}_UserChoices_LMDZ_Bands_file_name} > /dev/null 2>&1
65    fi
66
67    ##-- This could be define in lmdz.card, inside section [UserChoices]
68    ##-- Otherwise we get the value in *.def
69    iperiod=$( echo ${PAT_iperiod} | awk -F= '{print $2}' )
70    iphysiq=$( echo ${PAT_iphysiq} | awk -F= '{print $2}' )
71    # day_step : number of steps per day (multiple of iperiod)
72    #(( day_step = 48 * iphysiq ))
73    day_step=$( echo ${PAT_day_step} | awk -F= '{print $2}' )
74
75    IGCM_debug_PopStack "ATM_Initialize"
76}
77
78#-----------------------------------------------------------------
79function ATM_Update
80{
81    IGCM_debug_PushStack "ATM_Update"
82
83    case ${config_UserChoices_PeriodLength} in
84        *Y|*y) 
85               LMDZ_ecrit_mth=30.
86               LMDZ_ecrit_ISCCP=30.
87               LMDZ_periodav=30.
88               if [ "${config_UserChoices_CalendarType}" != "360d" ] ; then
89                  echo Change calendartype in config.card. PeriodLength=1Y allowed only for CalendarType=360d
90                  exit
91               fi
92               ;;
93        *)
94               LMDZ_ecrit_mth=${PeriodLengthInDays}.
95               LMDZ_ecrit_ISCCP=${PeriodLengthInDays}.
96               LMDZ_periodav=${PeriodLengthInDays}.
97               ;;
98    esac
99
100    ##-- Remise ou non a zero de la date initiale de LMDZ pour le fichier run.def
101    if [ ${CumulPeriod} -eq 1 ] ; then
102        RAZ_DATE=1
103    else
104        RAZ_DATE=0
105    fi
106
107    ## algo : For CumulPeriod=1 ;
108    ##        IF NbPeriod_Adjust = 0, Get Bands file directly from server, store it with _0 suffix
109    ##        ELSE LMDZ_adjust=y ; save Bands file on file server ;
110    ##        For CumulPeriod=2 to LMDZ_NbPeriod_adjust ; Get Bands file from server (CumulPeriod-1) ; LMDZ_adjust=y ; save Bands file on file server ;
111    ##        For CumulPeriod > LMDZ_NbPeriod_adjust ; LMDZ_adjust=n ; Get Bands file from server (CumulPeriod=LMDZ_NbPeriod_adjust 0 to force it) ; Use Bands ;
112
113    if [ ${CumulPeriod} -eq 1 ] ; then
114        if [ ${LMDZ_NbPeriod_adjust} -eq 0 ] ; then
115            IGCM_sys_Get ${LMDZ_Bands_file_name} Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat
116            IGCM_sys_Put_Out Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat ${R_OUT_ATM_D}/${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_0
117            IGCM_debug_Print 1 "Bands file forced to ${LMDZ_Bands_file_name} and stored in ${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_0"
118        fi
119    fi
120
121    LMDZ_adjust=n
122    [ ${CumulPeriod} -le ${LMDZ_NbPeriod_adjust} ] && LMDZ_adjust=y
123
124    RefPeriod=${LMDZ_NbPeriod_adjust} #0 to use a Bands file from Restart
125    [ ${CumulPeriod} -le ${LMDZ_NbPeriod_adjust} ] && (( RefPeriod = ${CumulPeriod} - 1 )) 
126
127    [ ${CumulPeriod} -gt 1 ] && IGCM_sys_Get ${R_OUT_ATM_D}/${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_${RefPeriod} Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat
128
129    ## Mise en forme du fichier physiq.def
130    sed -e "s/${PAT_INST}/OK_instan=${OK_instan}/"                 \
131        -e "s/${PAT_JOUR}/OK_journe=${OK_journe}/"                 \
132        -e "s/${PAT_MOIS}/OK_mensuel=${OK_mensuel}/"               \
133        -e "s/${PAT_HFRE}/ok_hf=${ok_hf}/"                         \
134        -e "s/${PAT_ecrit_mth}/ecrit_mth=${LMDZ_ecrit_mth}/"       \
135        -e "s/${PAT_ecrit_ISCCP}/ecrit_ISCCP=${LMDZ_ecrit_ISCCP}/" \
136        physiq.def > physiq.def.tmp
137    IGCM_sys_Mv physiq.def.tmp physiq.def
138
139    ## Mise en forme du fichier gcm.def
140    sed -e "s/${PAT_day_step}/day_step=${day_step}/"    \
141        -e "s/${PAT_iperiod}/iperiod=${iperiod}/"       \
142        -e "s/${PAT_iphysiq}/iphysiq=${iphysiq}/"       \
143        gcm.def > gcm.def.tmp
144    IGCM_sys_Mv gcm.def.tmp gcm.def
145
146    ## Mise en forme du fichier run.def
147    sed -e "s/_dayref_/${InitDay}/"                    \
148        -e "s/_anneeref_/${InitYear}/"                 \
149        -e "s/_calend_/${CalendarTypeForLmdz}/"        \
150        -e "s/_nday_/${PeriodLengthInDays}/"           \
151        -e "s/_raz_date_/${RAZ_DATE}/"                 \
152        -e "s/_periodav_/${LMDZ_periodav}/"            \
153        -e "s/_adjust_/${LMDZ_adjust}/"                \
154        run.def > run.def.tmp
155    IGCM_sys_Mv run.def.tmp run.def
156
157    ## Read ByPass_hgardfou_teta option in ${compname}.card --> divide teta* by 2 if [ $ByPass_hgardfou_teta = 1 ]
158    IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/${compname}.card UserChoices ByPass_hgardfou_teta
159    eval ByPass_hgardfou_teta=\${${compname}_UserChoices_ByPass_hgardfou_teta} > /dev/null 2>&1
160    if [ ${ByPass_hgardfou_teta} = y ] ; then
161        awk '{ if ($0 ~ /^teta.*=/) {split($0,a,"=") ; print a[1]"="a[2]/2"."} else print $0}' gcm.def > gcm.def.tmp
162        IGCM_sys_Mv gcm.def.tmp gcm.def
163        echo
164        IGCM_debug_Print 1 "ByPass_hgardfou_teta : ^teta*/2 in gcm.def"
165        echo
166        cat gcm.def
167        ByPass_hgardfou_teta=n
168        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/${compname}.card UserChoices ByPass_hgardfou_teta "${ByPass_hgardfou_teta}"
169    fi
170
171    ## Read ByPass_hgardfou_mats option in ${compname}.card --> purmats=y 2 if [ $ByPass_hgardfou_mats = 1 ]
172    IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/${compname}.card UserChoices ByPass_hgardfou_mats
173    eval ByPass_hgardfou_mats=\${${compname}_UserChoices_ByPass_hgardfou_mats} > /dev/null 2>&1
174    if [ ${ByPass_hgardfou_mats} = y ] ; then
175        sed -e "s/^purmats=.*/purmats=y/" gcm.def > gcm.def.tmp
176        IGCM_sys_Mv gcm.def.tmp gcm.def
177        echo
178        IGCM_debug_Print 1 "ByPass_hgardfou_mats : purmats=y in gcm.def"
179        echo
180        cat gcm.def
181        ByPass_hgardfou_mats=n
182        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/${compname}.card UserChoices ByPass_hgardfou_mats "${ByPass_hgardfou_mats}"
183    fi
184
185    if ( ${FirstInitialize} ) ; then
186
187        if ( [ "${config_Restarts_OverRule}" = "n" ] && [ "${config_ATM_Restart}" = "n" ] ); then
188            if [ ${DRYRUN} -le 2 ] ; then
189                IGCM_sys_Cp ${R_EXE}/create_etat0_limit.e ${RUN_DIR}/.
190                if [ ${DRYRUN} -le 1 ] ; then
191                    ./create_etat0_limit.e
192                fi
193            else
194                echo "EXECUTION of ./create_etat0_limit.e simulated"
195                echo "EXECUTION of ./create_etat0_limit.e simulated for DRYRUN = " $DRYRUN >> stack
196            fi
197        fi
198
199    fi
200
201    IGCM_debug_PopStack "ATM_Update"
202}
203
204#-----------------------------------
205function ATM_Finalize
206{
207    IGCM_debug_PushStack "ATM_Finalize"
208
209    [ ${CumulPeriod} -le ${LMDZ_NbPeriod_adjust} ] && IGCM_sys_Put_Out Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat ${R_OUT_ATM_D}/${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_${CumulPeriod}
210
211    echo FINALIZE ATM !
212
213    IGCM_debug_PopStack "ATM_Finalize"
214}
Note: See TracBrowser for help on using the repository browser.