source: CONFIG/UNIFORM/v6/LMDZOR_v6.4/GENERAL/DRIVER/lmdz.driver @ 6338

Last change on this file since 6338 was 6338, checked in by acosce, 16 months ago

Bug fix on daily strataer output level (Nicolas Lebas)

File size: 27.7 KB
RevLine 
[396]1#!/bin/ksh
2#-----------------------------------------------------------------
3function ATM_Initialize
4{
5    IGCM_debug_PushStack "ATM_Initialize"
6
[4936]7    # Read the resolution from the variables ResolAtm set in config.card UserChoices section or from .resol file
8    if [ X$ResolAtm != X ] ; then
9        # ResolAtm is set in config.card
10        RESOL_ATM_3D=${ResolAtm}
11    elif [ -f ${SUBMIT_DIR}/../.resol ] ; then
12        # ResolAtm was not set in config.card, try to read .resol file
13        eval $(grep RESOL_ATM_3D ${SUBMIT_DIR}/../.resol) || RESOL_ATM_3D=96x95x39
14    else
15        IGCM_debug_Exit "ResolAtm is not set in config.card and the .resol file does not exist."
16        IGCM_debug_Verif_Exit
17    fi
18   
19    IGCM_debug_Print 1 "The atomsopheric resolution is ${RESOL_ATM_3D} " 
[396]20
[659]21    RESOL_ATM_Z=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $3}' )
[1802]22    RESOL_ATM_X=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $1}' )
23    RESOL_ATM_Y=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $2}' )
24    RESOL_ATM_XY="${RESOL_ATM_X}x${RESOL_ATM_Y}"
[4936]25    RESOL_ATM=LMD${RESOL_ATM_X}${RESOL_ATM_Y}
[649]26
[1541]27    ##- LMDZ physics version
28    ##  Read LMDZ_Physics option in lmdz.card, if not present take default value AP (old physics)
29    if [ ! X${lmdz_UserChoices_LMDZ_Physics} = X ] ; then
30        LMDZ_Physics=${lmdz_UserChoices_LMDZ_Physics}
31    else
32        LMDZ_Physics=AP
33    fi
34    echo LMDZ physics version : ${LMDZ_Physics}
35
[1643]36    ##- Create_etat0_limit version
[1782]37    ##  Define variable CREATE only if it is set in lmdz.card section UserChoices.
38    ##  This variable is only used in lmdz.card to choose input files.
39    if [ ! X${lmdz_UserChoices_CREATE} = X ] ; then
40        IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices CREATE
41        CREATE=${lmdz_UserChoices_CREATE}
42        echo create_etat0_limit version : ${CREATE}
43    fi
[1643]44
[1782]45
[1550]46    ## - LMDZ choice of config.def file
47    ##   ConfType must be set in lmdz.card
48    ConfType=${lmdz_UserChoices_ConfType}
[1541]49
[396]50    IGCM_debug_PopStack "ATM_Initialize"
51}
52
53#-----------------------------------------------------------------
54function ATM_Update
55{
56    IGCM_debug_PushStack "ATM_Update"
57
[1535]58    ##-- GHG forcing :
[2321]59    ##   If forcing file exist in run directory, read values for the current year
60    ##   and set in config.def. If not use the default value set in config.def
[2333]61
62    # Read value for solaire from file SOLARANDVOLCANOES.txt. If file not existing, take DEFAULT value from file.
[3127]63    IGCM_debug_Print 1 "Note that the solaire parameter is here below changed but it is only used by LMDZ for old physics(AP and NPv3.2)"
64    IGCM_debug_Print 1 "For newer physics with iflag_rrtm=1 and ok_suntime_rrtm=y, the solar constant is instead taken from solarforcing.nc file"
[1535]65    if [ -f SOLARANDVOLCANOES.txt ] ; then
[2333]66        value=`grep Annee_${year} SOLARANDVOLCANOES.txt | awk -F= '{print $2}'`
67        if [ X"${value}" = X ] ; then
[2321]68            # The grep returned empty variable, stop execution
69            IGCM_debug_Exit "The file SOLARANDVOLCANOES.txt do not contain the current year."
70            IGCM_debug_Verif_Exit
71        fi
[1690]72    else
[2333]73        value=DEFAULT
[1535]74    fi
[2333]75    IGCM_comp_modifyDefFile nonblocker config.def solaire $value
[2321]76
[3771]77    # Read value for eccentricity from file Eccentricity.txt. If file not existing, take DEFAULT value from file.
78    if [ -f Eccentricity.txt ] ; then
79        value=`grep Annee_${year} Eccentricity.txt | awk -F= '{print $2}'`
80        if [ X"${value}" = X ] ; then
81            # The grep returned empty variable, stop execution
82            IGCM_debug_Exit "The file Eccentricity.txt do not contain the current year."
83            IGCM_debug_Verif_Exit
84        fi
85    else
86        value=DEFAULT
87    fi
88    IGCM_comp_modifyDefFile nonblocker config.def R_ecc $value
[2333]89
[3771]90    # Read value for obliquity from file Obliquity.txt. If file not existing, take DEFAULT value from file.
91    if [ -f Obliquity.txt ] ; then
92        value=`grep Annee_${year} Obliquity.txt | awk -F= '{print $2}'`
93        if [ X"${value}" = X ] ; then
94            # The grep returned empty variable, stop execution
95            IGCM_debug_Exit "The file Obliquity.txt do not contain the current year."
96            IGCM_debug_Verif_Exit
97        fi
98    else
99        value=DEFAULT
100    fi
101    IGCM_comp_modifyDefFile nonblocker config.def R_incl $value
102
103    # Read value for perihelie from file Perihelie.txt. If file not existing, take DEFAULT value from file.
104    if [ -f Perihelie.txt ] ; then
105        value=`grep Annee_${year} Perihelie.txt | awk -F= '{print $2}'`
106        if [ X"${value}" = X ] ; then
107            # The grep returned empty variable, stop execution
108            IGCM_debug_Exit "The file Perihelie.txt do not contain the current year."
109            IGCM_debug_Verif_Exit
110        fi
111    else
112        value=DEFAULT
113    fi
114    IGCM_comp_modifyDefFile nonblocker config.def R_peri $value
115
[2333]116    # Read value for co2_ppm from file CO2.txt. If file not existing, take DEFAULT value from file.
[3568]117    # Calculate co2_ppm_per as co2_ppm*4.
[1535]118    if [ -f CO2.txt ] ; then
[2333]119        value=`grep Annee_${year} CO2.txt | awk -F= '{print $2}'`
120        if [ X"${value}" = X ] ; then
[2321]121            # The grep returned empty variable, stop execution
122            IGCM_debug_Exit "The file CO2.txt do not contain the current year."
123            IGCM_debug_Verif_Exit
124        fi
[3568]125        value4=`grep Annee_${year} CO2.txt | awk -F= '{print $2 * 4}'`
[1690]126    else
[2333]127        value=DEFAULT
[3568]128        value4=DEFAULT
[1535]129    fi
[2333]130    IGCM_comp_modifyDefFile nonblocker config.def co2_ppm $value
[3568]131    IGCM_comp_modifyDefFile nonblocker config.def co2_ppm_per $value4
[1690]132
[2333]133
134    # Read value for CH4_ppb from file CH4.txt. If file not existing, take DEFAULT value from file.
[1535]135    if [ -f CH4.txt ] ; then
[2333]136        value=`grep Annee_${year} CH4.txt | awk -F= '{print $2}'`
137        if [ X"${value}" = X ] ; then
[2321]138            # The grep returned empty variable, stop execution
139            IGCM_debug_Exit "The file CH4.txt do not contain the current year."
140            IGCM_debug_Verif_Exit
141        fi
[2333]142    else
143        value=DEFAULT
[1535]144    fi
[2333]145    IGCM_comp_modifyDefFile nonblocker config.def CH4_ppb $value
[2321]146
[2333]147
148    # Read value for N2O_ppb from file N2O.txt. If file not existing, take DEFAULT value from file.
[1535]149    if [ -f N2O.txt ] ; then
[2333]150        value=`grep Annee_${year} N2O.txt | awk -F= '{print $2}'`
151        if [ X"${value}" = X ] ; then
[2321]152            # The grep returned empty variable, stop execution
153            IGCM_debug_Exit "The file N2O.txt do not contain the current year."
154            IGCM_debug_Verif_Exit
155        fi
[1690]156    else
[2333]157        value=DEFAULT
[1535]158    fi
[2333]159    IGCM_comp_modifyDefFile nonblocker config.def N2O_ppb $value
[2321]160
[2333]161    # Read value for CFC11_ppt from file CFC11.txt. If file not existing, take DEFAULT value from file.
[1535]162    if [ -f CFC11.txt ] ; then
[2333]163        value=`grep Annee_${year} CFC11.txt | awk -F= '{print $2}'`
164        if [ X"${value}" = X ] ; then
[2321]165            # The grep returned empty variable, stop execution
166            IGCM_debug_Exit "The file CFC11.txt do not contain the current year."
167            IGCM_debug_Verif_Exit
168        fi
[1690]169    else
[2333]170        value=DEFAULT
[1535]171    fi
[2333]172    IGCM_comp_modifyDefFile nonblocker config.def CFC11_ppt $value
[2321]173
[2333]174
175    # Read value for CFC12_ppt from file CFC12.txt. If file not existing, take DEFAULT value from file.
[1535]176    if [ -f CFC12.txt ] ; then
[2333]177        value=`grep Annee_${year} CFC12.txt | awk -F= '{print $2}'`
178        if [ X"${value}" = X ] ; then
[2321]179            # The grep returned empty variable, stop execution
180            IGCM_debug_Exit "The file CFC12.txt do not contain the current year."
181            IGCM_debug_Verif_Exit
182        fi
[1690]183    else
[2333]184        value=DEFAULT
[1535]185    fi
[2333]186    IGCM_comp_modifyDefFile nonblocker config.def CFC12_ppt $value
[1535]187
[1780]188
[2336]189    ## Coupling Time Step : Take value of FreqCoupling set in oasis.card or if it is not set, take default value 86400
190    LMDZ_t_coupl=${oasis_UserChoices_FreqCoupling:-86400}
[2332]191    IGCM_debug_Print 3 "LMDZ_t_coupl "   ${LMDZ_t_coupl}
[2333]192    IGCM_comp_modifyDefFile nonblocker config.def t_coupl   ${LMDZ_t_coupl} 
[2332]193
[4936]194
195
196    ## Activate diagnostic output files and set output_level for each file
197
198    # histmth
199    if [ X${lmdz_UserChoices_output_level_histmth} = X ] || [ X${lmdz_UserChoices_output_level_histmth} = XNONE ] ; then
200        IGCM_comp_modifyXmlFile nonblocker file_def_histmth_lmdz.xml histmth enabled FALSE
201        IGCM_comp_modifyXmlFile nonblocker file_def_histmth_lmdz.xml histmth output_level 0
202    else
203        IGCM_comp_modifyXmlFile nonblocker file_def_histmth_lmdz.xml histmth enabled TRUE
204        IGCM_comp_modifyXmlFile nonblocker file_def_histmth_lmdz.xml histmth output_level ${lmdz_UserChoices_output_level_histmth} 
[1780]205    fi
[1537]206
[4936]207    # histday
208    if [ X${lmdz_UserChoices_output_level_histday} = X ] || [ X${lmdz_UserChoices_output_level_histday} = XNONE ] ; then
209        IGCM_comp_modifyXmlFile nonblocker file_def_histday_lmdz.xml histday enabled FALSE
210        IGCM_comp_modifyXmlFile nonblocker file_def_histday_lmdz.xml histday output_level 0
211    else
212        IGCM_comp_modifyXmlFile nonblocker file_def_histday_lmdz.xml histday enabled TRUE
213        IGCM_comp_modifyXmlFile nonblocker file_def_histday_lmdz.xml histday output_level ${lmdz_UserChoices_output_level_histday} 
214    fi
[1537]215
[4936]216    # histhf
217    if [ X${lmdz_UserChoices_output_level_histhf} = X ] || [ X${lmdz_UserChoices_output_level_histhf} = XNONE ] ; then
218        IGCM_comp_modifyXmlFile nonblocker file_def_histhf_lmdz.xml histhf enabled FALSE
219        IGCM_comp_modifyXmlFile nonblocker file_def_histhf_lmdz.xml histhf output_level 0
220    else
221        IGCM_comp_modifyXmlFile nonblocker file_def_histhf_lmdz.xml histhf enabled TRUE
222        IGCM_comp_modifyXmlFile nonblocker file_def_histhf_lmdz.xml histhf output_level ${lmdz_UserChoices_output_level_histhf} 
[1538]223    fi
[1537]224
[4936]225    # histmthNMC
226    if [ X${lmdz_UserChoices_output_level_histmthNMC} = X ] || [ X${lmdz_UserChoices_output_level_histmthNMC} = XNONE ] ; then
227        IGCM_comp_modifyXmlFile nonblocker file_def_histmthNMC_lmdz.xml histmthNMC enabled FALSE
228        IGCM_comp_modifyXmlFile nonblocker file_def_histmthNMC_lmdz.xml histmthNMC output_level 0
[2600]229    else
[4936]230        IGCM_comp_modifyXmlFile nonblocker file_def_histmthNMC_lmdz.xml histmthNMC enabled TRUE
231        IGCM_comp_modifyXmlFile nonblocker file_def_histmthNMC_lmdz.xml histmthNMC output_level ${lmdz_UserChoices_output_level_histmthNMC} 
[2600]232    fi
[4936]233
234    # histdayNMC
235    if [ X${lmdz_UserChoices_output_level_histdayNMC} = X ] || [ X${lmdz_UserChoices_output_level_histdayNMC} = XNONE ] ; then
236        IGCM_comp_modifyXmlFile nonblocker file_def_histdayNMC_lmdz.xml histdayNMC enabled FALSE
237        IGCM_comp_modifyXmlFile nonblocker file_def_histdayNMC_lmdz.xml histdayNMC output_level 0
238    else
239        IGCM_comp_modifyXmlFile nonblocker file_def_histdayNMC_lmdz.xml histdayNMC enabled TRUE
240        IGCM_comp_modifyXmlFile nonblocker file_def_histdayNMC_lmdz.xml histdayNMC output_level ${lmdz_UserChoices_output_level_histdayNMC} 
[2582]241    fi
[2605]242
[4936]243    # histhfNMC
244    if [ X${lmdz_UserChoices_output_level_histhfNMC} = X ] || [ X${lmdz_UserChoices_output_level_histhfNMC} = XNONE ] ; then
245        IGCM_comp_modifyXmlFile nonblocker file_def_histhfNMC_lmdz.xml histhfNMC enabled FALSE
246        IGCM_comp_modifyXmlFile nonblocker file_def_histhfNMC_lmdz.xml histhfNMC output_level 0
247    else
248        IGCM_comp_modifyXmlFile nonblocker file_def_histhfNMC_lmdz.xml histhfNMC enabled TRUE
249        IGCM_comp_modifyXmlFile nonblocker file_def_histhfNMC_lmdz.xml histhfNMC output_level ${lmdz_UserChoices_output_level_histhfNMC} 
250    fi
[2600]251
[4936]252    # histstrataer
253    if [ X${lmdz_UserChoices_output_level_histstrataer} = X ] || [ X${lmdz_UserChoices_output_level_histstrataer} = XNONE ] ; then
254        IGCM_comp_modifyXmlFile nonblocker file_def_histstrataer_lmdz.xml histstrataer enabled FALSE
255        IGCM_comp_modifyXmlFile nonblocker file_def_histstrataer_lmdz.xml histstrataer output_level 0
256    else
257        IGCM_comp_modifyXmlFile nonblocker file_def_histstrataer_lmdz.xml histstrataer enabled TRUE
258        IGCM_comp_modifyXmlFile nonblocker file_def_histstrataer_lmdz.xml histstrataer output_level ${lmdz_UserChoices_output_level_histstrataer} 
259    fi
[2332]260
[4936]261    # histdaystrataer
262    if [ X${lmdz_UserChoices_output_level_histdaystrataer} = X ] || [ X${lmdz_UserChoices_output_level_histdaystrataer} = XNONE ] ; then
263        IGCM_comp_modifyXmlFile nonblocker file_def_histdaystrataer_lmdz.xml histdaystrataer enabled FALSE
264        IGCM_comp_modifyXmlFile nonblocker file_def_histdaystrataer_lmdz.xml histdaystrataer output_level 0
[3104]265    else
[4936]266        IGCM_comp_modifyXmlFile nonblocker file_def_histdaystrataer_lmdz.xml histdaystrataer enabled TRUE
[6338]267        IGCM_comp_modifyXmlFile nonblocker file_def_histdaystrataer_lmdz.xml histdaystrataer output_level ${lmdz_UserChoices_output_level_histdaystrataer}
[3104]268    fi
[396]269
[4936]270    # histstn
271    if [ X${lmdz_UserChoices_output_level_histstn} = X ] || [ X${lmdz_UserChoices_output_level_histstn} = XNONE ] ; then
272        IGCM_comp_modifyXmlFile nonblocker file_def_histstn_lmdz.xml histstn enabled FALSE
273        IGCM_comp_modifyXmlFile nonblocker file_def_histstn_lmdz.xml histstn output_level 0
274    else
275        IGCM_comp_modifyXmlFile nonblocker file_def_histstn_lmdz.xml histstn enabled TRUE
276        IGCM_comp_modifyXmlFile nonblocker file_def_histstn_lmdz.xml histstn output_level ${lmdz_UserChoices_output_level_histstn} 
277    fi
[3104]278
[4936]279
280    # histmthCOSP
281    if [ X${lmdz_UserChoices_output_level_histmthCOSP} = X ] || [ X${lmdz_UserChoices_output_level_histmthCOSP} = XNONE ] ; then
282        IGCM_comp_modifyXmlFile nonblocker file_def_histmthCOSP_lmdz.xml histmthCOSP enabled FALSE
283        IGCM_comp_modifyXmlFile nonblocker file_def_histmthCOSP_lmdz.xml histmthCOSP output_level 0
284    else
285        IGCM_comp_modifyXmlFile nonblocker file_def_histmthCOSP_lmdz.xml histmthCOSP enabled TRUE
286        IGCM_comp_modifyXmlFile nonblocker file_def_histmthCOSP_lmdz.xml histmthCOSP output_level ${lmdz_UserChoices_output_level_histmthCOSP} 
287    fi
288
289
290    # histdayCOSP
291    if [ X${lmdz_UserChoices_output_level_histdayCOSP} = X ] || [ X${lmdz_UserChoices_output_level_histdayCOSP} = XNONE ] ; then
292        IGCM_comp_modifyXmlFile nonblocker file_def_histdayCOSP_lmdz.xml histdayCOSP enabled FALSE
293        IGCM_comp_modifyXmlFile nonblocker file_def_histdayCOSP_lmdz.xml histdayCOSP output_level 0
294    else
295        IGCM_comp_modifyXmlFile nonblocker file_def_histdayCOSP_lmdz.xml histdayCOSP enabled TRUE
296        IGCM_comp_modifyXmlFile nonblocker file_def_histdayCOSP_lmdz.xml histdayCOSP output_level ${lmdz_UserChoices_output_level_histdayCOSP} 
297    fi
298
299
300    # histhfCOSP
301    if [ X${lmdz_UserChoices_output_level_histhfCOSP} = X ] || [ X${lmdz_UserChoices_output_level_histhfCOSP} = XNONE ] ; then
302        IGCM_comp_modifyXmlFile nonblocker file_def_histhfCOSP_lmdz.xml histhfCOSP enabled FALSE
303        IGCM_comp_modifyXmlFile nonblocker file_def_histhfCOSP_lmdz.xml histhfCOSP output_level 0
304    else
305        IGCM_comp_modifyXmlFile nonblocker file_def_histhfCOSP_lmdz.xml histhfCOSP enabled TRUE
306        IGCM_comp_modifyXmlFile nonblocker file_def_histhfCOSP_lmdz.xml histhfCOSP output_level ${lmdz_UserChoices_output_level_histhfCOSP} 
307    fi
308
309
[911]310    ## run.def parameters
[2598]311
312
313    ##-- Remise ou non a zero de la date initiale de LMDZ pour le fichier run.def
314    if [ ${CumulPeriod} -eq 1 ] ; then
315        IGCM_comp_modifyDefFile blocker run.def raz_date  1
316    else
317        IGCM_comp_modifyDefFile blocker run.def raz_date  0
318    fi
319
320    ##-- Calendar type for LMDZ and create_etat0_limit
321    case ${config_UserChoices_CalendarType} in
322        leap|gregorian)
323            IGCM_comp_modifyDefFile blocker run.def calend  gregorian ;;
324        noleap)
325            IGCM_comp_modifyDefFile blocker run.def calend  earth_365d ;;
326        360d)
327            IGCM_comp_modifyDefFile blocker run.def calend  earth_360d ;;
328        *)
329            IGCM_comp_modifyDefFile blocker run.def calend  earth_360d ;;
330    esac
331
[2582]332    IGCM_comp_modifyDefFile blocker run.def dayref    ${InitDay}
333    IGCM_comp_modifyDefFile blocker run.def nday      ${PeriodLengthInDays}
[396]334
[1804]335    # Set anneeref different for gcm and ce0l
336    # Test if executable create_etat0_limit is present and lmdz.x is not present
337    if [ -f create_etat0_limit* ] || [ -f ce0l* ] && [ ! -f lmdz.x ] ; then
338        # for case ce0l : always take current year
[2333]339        IGCM_comp_modifyDefFile blocker run.def anneeref ${year}
[2480]340
341        # Temporary, set use_filtre_fft=n because we now use dyn3d for ce0l version where fft is not implemented.
342        # In more recent versions of LMDZ, this will not be needed.
343        IGCM_comp_modifyDefFile force   run.def use_filtre_fft n
[1804]344    else
345        # for case gcm : take first year of simulation
[2333]346        IGCM_comp_modifyDefFile blocker run.def anneeref ${InitYear}
[1804]347    fi
[1643]348
[1650]349    ## Determine from the variable ListOfComponents in config.card coupling to external models
350    ## and set corresponding parameters in run.def
351    echo ListOfComponents now running : ${config_ListOfComponents[*]}
352
353    if [ X${config_ListOfComponents_SRF} = Xorchidee ] ; then
354        echo "Activate ORCHIDEE, set VEGET=y in run.def"
[2333]355        IGCM_comp_modifyDefFile blocker run.def VEGET y
[1650]356    else
357        echo "No ORCHIDEE, set VEGET=n in run.def"
[2333]358        IGCM_comp_modifyDefFile blocker run.def VEGET n
[1650]359    fi
360
361    if [ X${config_ListOfComponents_CPL} = Xoasis ] ; then
362        echo "Activate coupling to ocean, set type_ocean=couple in run.def"
[2333]363        IGCM_comp_modifyDefFile blocker run.def type_ocean couple
[1650]364    else
365        echo "LMDZ is running in forced mode without ocean model, set type_ocean=force in run.def"
[3935]366        IGCM_comp_modifyDefFile nonblocker run.def type_ocean force
[1650]367    fi
368
[6076]369    if [ X${config_UserChoices_ConfigType} = XESMCO2AER ] ; then
370    echo "ESM config, with INCA and CO2i, set type_trac=inco in run.def"
371    IGCM_comp_modifyDefFile blocker run.def type_trac inco
372    IGCM_comp_modifyDefFile blocker run.def iflag_phytrac 1
373    elif [ X${config_ListOfComponents_CHM} = Xinca ] ; then
[4936]374        echo "Activate coupling to INCA, set type_trac=inca in run.def"
375        IGCM_comp_modifyDefFile blocker run.def type_trac inca
376        IGCM_comp_modifyDefFile blocker run.def iflag_phytrac 1 
[1650]377    elif [ X${config_ListOfComponents_CHM} = Xreprobus ] ; then
[4936]378        echo "Activate coupling to REPROBUS, set type_trac=repr in run.def"
379        IGCM_comp_modifyDefFile blocker run.def type_trac repr
[2333]380        IGCM_comp_modifyDefFile blocker run.def config_inca none
[4936]381        IGCM_comp_modifyDefFile blocker run.def iflag_phytrac 1 
382    elif [ X${config_UserChoices_ConfigType} = XESMCO2 ] ; then
383        echo "ESM config, set type_trac=co2i in run.def"
384        IGCM_comp_modifyDefFile blocker run.def type_trac co2i
385        IGCM_comp_modifyDefFile blocker run.def config_inca none
[6076]386    IGCM_comp_modifyDefFile blocker run.def iflag_phytrac 1
[4724]387    elif [ X${lmdz_UserChoices_LMDZ_strataero} = Xy ] ; then
388        echo "No coupling to chemistry model but it is a LMDZ STRATAER configuration, set type_trac=coag in run.def"
389        IGCM_comp_modifyDefFile blocker run.def type_trac coag
390        IGCM_comp_modifyDefFile blocker run.def config_inca none
[4936]391        IGCM_comp_modifyDefFile blocker run.def iflag_phytrac 1 
[1650]392    else
[4936]393        echo "No coupling to chemistry model, set type_trac=lmdz in run.def"
394        IGCM_comp_modifyDefFile blocker run.def type_trac lmdz
[2333]395        IGCM_comp_modifyDefFile blocker run.def config_inca none
[4936]396        IGCM_comp_modifyDefFile blocker run.def iflag_phytrac 0
[1650]397    fi
398
[4936]399    # run.def : Activate the new calving
400    if [ ! X${lmdz_UserChoices_cpl_old_calving} = X ]; then
401        IGCM_comp_modifyDefFile nonblocker run.def cpl_old_calving ${lmdz_UserChoices_cpl_old_calving}
[4020]402    else
[4936]403        IGCM_comp_modifyDefFile nonblocker run.def cpl_old_calving y
[4020]404    fi 
405
406    # physiq.def : Activate the call to phytrac
407    if [ ! X${lmdz_UserChoices_ok_bug_cv_trac} = X ]; then
408        IGCM_comp_modifyDefFile nonblocker physiq.def ok_bug_cv_trac  ${lmdz_UserChoices_ok_bug_cv_trac}
409    else
410        IGCM_comp_modifyDefFile nonblocker physiq.def ok_bug_cv_trac  n
411    fi 
412
[4936]413    # config.def : Activate aerosol strato
414    if [ ! X${lmdz_UserChoices_flag_aerosol_strat} = X ]; then
415        IGCM_comp_modifyDefFile nonblocker config.def flag_aerosol_strat ${lmdz_UserChoices_flag_aerosol_strat}
416    else
417        IGCM_comp_modifyDefFile nonblocker config.def flag_aerosol_strat DEFAULT
418    fi 
419
[2015]420    # config.def : Activate direct radiative effect if ok_ade=y
421    if [ ! X${lmdz_UserChoices_ok_ade} = X ]; then
[2333]422        IGCM_comp_modifyDefFile nonblocker config.def ok_ade ${lmdz_UserChoices_ok_ade}
[2015]423    else
[2333]424        IGCM_comp_modifyDefFile nonblocker config.def ok_ade n
[2015]425    fi 
426
427    # config.def : Activate indirect radiative effect if ok_aie=y
428    if [ ! X${lmdz_UserChoices_ok_aie} = X ]; then
[2333]429        IGCM_comp_modifyDefFile nonblocker config.def ok_aie ${lmdz_UserChoices_ok_aie}
[2015]430    else
[2333]431        IGCM_comp_modifyDefFile nonblocker config.def ok_aie n
[2015]432    fi 
[1816]433
[2015]434    # config.def : Activate online aerosol coupled model if aerosol_couple=y
435    if [ ! X${lmdz_UserChoices_aerosol_couple} = X ]; then
[2333]436        IGCM_comp_modifyDefFile nonblocker config.def aerosol_couple ${lmdz_UserChoices_aerosol_couple}
[1686]437    else
[2333]438        IGCM_comp_modifyDefFile nonblocker config.def aerosol_couple n
[2015]439    fi 
[1686]440
[4020]441    # config.def : Activate online Ozone chemistry coupled model if chemistry_couple=y
442    if [ ! X${lmdz_UserChoices_chemistry_couple} = X ]; then
443        IGCM_comp_modifyDefFile nonblocker config.def chemistry_couple ${lmdz_UserChoices_chemistry_couple}
444    else
445        IGCM_comp_modifyDefFile nonblocker config.def chemistry_couple n
446    fi 
447
[2015]448    # config.def : Activate reading of ozone in climatology if read_climoz=2
449    if [ ! X${lmdz_UserChoices_read_climoz} = X ]; then
[2333]450        IGCM_comp_modifyDefFile nonblocker config.def read_climoz ${lmdz_UserChoices_read_climoz}
[2015]451    else
[2333]452        IGCM_comp_modifyDefFile nonblocker config.def read_climoz 0     
[2015]453    fi 
454
455    # config.def : Choose aerosol use in radiative effect
456    #  type of coupled aerosol =1 (default) =2 => bc  only =3 => pom only =4 => seasalt only
457    # =5 => dust only =6 => all aerosol   
458    if [ ! X${lmdz_UserChoices_flag_aerosol} = X ]; then
[2333]459        IGCM_comp_modifyDefFile nonblocker config.def flag_aerosol ${lmdz_UserChoices_flag_aerosol}
[2015]460    else
[2333]461        IGCM_comp_modifyDefFile nonblocker config.def flag_aerosol 0
[2015]462    fi 
463
464    # config.def : Activate calcul of Cloud droplet number concentration if ok_cdnc=y
465    if [ ! X${lmdz_UserChoices_ok_cdnc} = X ]; then
[2333]466        IGCM_comp_modifyDefFile nonblocker config.def ok_cdnc ${lmdz_UserChoices_ok_cdnc}
[2015]467    else
[2333]468        IGCM_comp_modifyDefFile nonblocker config.def ok_cdnc n
[2015]469    fi 
470
[2893]471    # config.def : Activate COSP
472    if [ ! X${lmdz_UserChoices_LMDZ_COSP_OK} = X ]; then
473        IGCM_comp_modifyDefFile nonblocker config.def ok_cosp ${lmdz_UserChoices_LMDZ_COSP_OK}
474    else
475        IGCM_comp_modifyDefFile nonblocker config.def ok_cosp n
476    fi 
477
[2911]478    # config.def : Modify parameter pmagic if it is set in lmdz.card
479    if [ ! X${lmdz_UserChoices_pmagic} = X ]; then
480        IGCM_comp_modifyDefFile nonblocker config.def pmagic ${lmdz_UserChoices_pmagic}
481    else
482        # Take default value set in config.def
483        IGCM_comp_modifyDefFile nonblocker config.def pmagic DEFAULT
484    fi
[2893]485
[6076]486    if ( [ X${config_UserChoices_ConfigType} = XESMCO2 ] || [ X${config_UserChoices_ConfigType} = XESMCO2AER ] ) ; then
[4936]487        # Set carbon cycle parameters according to parmeters in lmdz.card
488        IGCM_comp_modifyDefFile blocker config.def level_coupling_esm 2
489        IGCM_comp_modifyDefFile blocker config.def carbon_cycle_cpl ${lmdz_UserChoices_carbon_cycle_cpl} 
490        IGCM_comp_modifyDefFile blocker config.def carbon_cycle_tr ${lmdz_UserChoices_carbon_cycle_tr}
491        IGCM_comp_modifyDefFile blocker config.def carbon_cycle_rad ${lmdz_UserChoices_carbon_cycle_rad}
[6268]492        IGCM_comp_modifyDefFile nonblocker config.def co2_ppm0 ${lmdz_UserChoices_co2_ppm0} 
[4724]493    else
[4936]494        # Take default value set in config.def
495        IGCM_comp_modifyDefFile nonblocker config.def level_coupling_esm DEFAULT
496        IGCM_comp_modifyDefFile nonblocker config.def carbon_cycle_cpl DEFAULT
497        IGCM_comp_modifyDefFile nonblocker config.def carbon_cycle_tr DEFAULT
498        IGCM_comp_modifyDefFile nonblocker config.def carbon_cycle_rad DEFAULT
[6268]499        IGCM_comp_modifyDefFile nonblocker config.def co2_ppm0 DEFAULT
[4724]500    fi
501
[6268]502    if ( [ X${config_UserChoices_ConfigType} = XESMCO2 ] ) ; then
503        # Set carbon cycle parameters according to parmeters in lmdz.card
504        IGCM_comp_modifyDefFile nonblocker config.def read_fco2_ocean_cor ${lmdz_UserChoices_read_fco2_ocean_cor}
505        IGCM_comp_modifyDefFile nonblocker config.def var_fco2_ocean_cor ${lmdz_UserChoices_var_fco2_ocean_cor}
506        IGCM_comp_modifyDefFile nonblocker config.def read_fco2_land_cor ${lmdz_UserChoices_read_fco2_land_cor}
507        IGCM_comp_modifyDefFile nonblocker config.def var_fco2_land_cor ${lmdz_UserChoices_var_fco2_land_cor}
508    else
509        IGCM_comp_modifyDefFile nonblocker config.def read_fco2_ocean_cor DEFAULT
510        IGCM_comp_modifyDefFile nonblocker config.def var_fco2_ocean_cor DEFAULT
511        IGCM_comp_modifyDefFile nonblocker config.def read_fco2_land_cor DEFAULT
512        IGCM_comp_modifyDefFile nonblocker config.def var_fco2_land_cor DEFAULT
513    fi
514
[4936]515    # config.def : Modify parameter ok_volcan if ok_volcan=y or LMDZ_strataero=y in lmdz.card
516    # Note: ok_volcan is a flag allowing a double-call with/without natural forcing (instead of with/without anthro forcing).
517    if [ ! X${lmdz_UserChoices_ok_volcan} = X ] || [ X${lmdz_UserChoices_LMDZ_strataero} = Xy ] ; then
518        IGCM_comp_modifyDefFile nonblocker config.def ok_volcan ${lmdz_UserChoices_ok_volcan}
[4724]519    else
[4936]520        # Take default value set in config.def
521        IGCM_comp_modifyDefFile nonblocker config.def ok_volcan DEFAULT
[4724]522    fi
523
[3868]524    # physiq.def : Modify parameter tau_gl if it is set in lmdz.card
525    if [ ! X${lmdz_UserChoices_tau_gl} = X ]; then
526        IGCM_comp_modifyDefFile nonblocker physiq.def tau_gl ${lmdz_UserChoices_tau_gl}
527    else
528        # Take default value set in physiq.def
[4038]529        IGCM_comp_modifyDefFile nonblocker physiq.def tau_gl DEFAULT
[3868]530    fi
531   
532
[1690]533    # guide.def : Activate nudging if ok_guide=y set in lmdz.card
[1643]534    if [ ! X${lmdz_UserChoices_ok_guide} = X ] ; then
[2333]535        IGCM_comp_modifyDefFile nonblocker guide.def ok_guide  ${lmdz_UserChoices_ok_guide}
[1690]536    else
[2333]537        IGCM_comp_modifyDefFile nonblocker guide.def ok_guide n
[1643]538    fi
539
[3868]540
[902]541    ## Read ByPass_hgardfou_teta option in lmdz.card --> divide teta* by 2 if [ $ByPass_hgardfou_teta = 1 ]
[1172]542    ByPass_hgardfou_teta=${lmdz_UserChoices_ByPass_hgardfou_teta}
[1688]543    if [ X"${ByPass_hgardfou_teta}" = X"y" ] ; then
[396]544        awk '{ if ($0 ~ /^teta.*=/) {split($0,a,"=") ; print a[1]"="a[2]/2"."} else print $0}' gcm.def > gcm.def.tmp
545        IGCM_sys_Mv gcm.def.tmp gcm.def
546        echo
547        IGCM_debug_Print 1 "ByPass_hgardfou_teta : ^teta*/2 in gcm.def"
548        echo
549        cat gcm.def
550        ByPass_hgardfou_teta=n
[6013]551    export lmdz_UserChoices_ByPass_hgardfou_teta=n
[902]552        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices ByPass_hgardfou_teta "${ByPass_hgardfou_teta}"
[396]553    fi
554
[902]555    ## Read ByPass_hgardfou_mats option in lmdz.card --> purmats=y 2 if [ $ByPass_hgardfou_mats = 1 ]
[1172]556    ByPass_hgardfou_mats=${lmdz_UserChoices_ByPass_hgardfou_mats}
[1688]557    if [ X"${ByPass_hgardfou_mats}" = X"y" ] ; then
[396]558        sed -e "s/^purmats=.*/purmats=y/" gcm.def > gcm.def.tmp
559        IGCM_sys_Mv gcm.def.tmp gcm.def
560        echo
561        IGCM_debug_Print 1 "ByPass_hgardfou_mats : purmats=y in gcm.def"
562        echo
563        cat gcm.def
564        ByPass_hgardfou_mats=n
[6013]565        export lmdz_UserChoices_ByPass_hgardfou_mats=n
[902]566        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices ByPass_hgardfou_mats "${ByPass_hgardfou_mats}"
[396]567    fi
568
[2904]569    # Add include of LMDZ context in iodef.xml
[4108]570    # In iodef.xml add on the next line after "COMPONENT CONTEXT"
[2904]571    echo '<context id="LMDZ" src="./context_lmdz.xml"/>' > add.tmp
[4108]572    # Add inclusion of file context_input_lmdz.xml if this file exists
573    if [ -f context_input_lmdz.xml ] ; then
574        echo '<context id="LMDZ" src="./context_input_lmdz.xml"/>' >> add.tmp
575    fi
576    # Include xml files for output configuration if running with workflow CMIP6
[6076]577    if ( [ X"$( echo ${config_UserChoices_ExpType} | grep CMIP6 )" != "X" ] || [ X${config_Post_dr2xmlIPSL} = XTRUE ] ) ; then
[3505]578        echo '<context id="LMDZ" src="./ping_lmdz.xml"/>' >> add.tmp
[6076]579    echo '<context id="LMDZ" src="./dr2xml_lmdz.xml"/>' >> add.tmp
[3505]580    fi
[2904]581    cp iodef.xml iodef.xml.tmp
582    sed -e "/COMPONENT CONTEXT/r add.tmp" iodef.xml.tmp > iodef.xml
583    rm iodef.xml.tmp add.tmp
[2476]584
[2904]585    #Long Name as global attribute (if LongName is not empty)
586    if [ ! "X${config_UserChoices_LongName}" = "X" ] ; then
587        listfile=$(ls file_def*lmdz.xml)
588        echo "<variable id=\"LongName\" type=\"string\">${config_UserChoices_LongName}</variable>" > add.tmp
589        for file in ${listfile}
590        do
591            cp ${file} ${file}.tmp
592            sed -e "/<file id/r add.tmp" \
593                ${file}.tmp > ${file}
594            rm ${file}.tmp
595        done
596        rm add.tmp
[2332]597    fi
[4353]598
[4936]599    # Compression level (if CompressionLevel is not empty)
[4353]600    if [ ! "X${config_UserChoices_CompressionLevel}" = "X" ] ; then
601    echo "NetCDF output files compression level is " ${config_UserChoices_CompressionLevel}
602    listfile=$(ls file_def*lmdz.xml)
[4936]603    for file in ${listfile} ; do
[4353]604        sed -i -e "s/\(compression_level=\"\)[^\"]*\(\"\)/\1${config_UserChoices_CompressionLevel}\2/" ${file}
605    done
606    fi
607
[2904]608           
[396]609    IGCM_debug_PopStack "ATM_Update"
610}
611
612#-----------------------------------
613function ATM_Finalize
614{
615    IGCM_debug_PushStack "ATM_Finalize"
616
[4936]617    IGCM_debug_Print 1 "FINALIZE ATM !"
[1537]618
[1780]619    IGCM_debug_PopStack "ATM_Finalize"
620}
[1537]621
Note: See TracBrowser for help on using the repository browser.