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

Last change on this file since 3616 was 3616, checked in by jgipsl, 6 years ago

Added experience amip_nudge and synchronize drivers.

File size: 24.7 KB
RevLine 
[396]1#!/bin/ksh
2#-----------------------------------------------------------------
3function ATM_Initialize
4{
5    IGCM_debug_PushStack "ATM_Initialize"
6
[671]7    RESOL_ATM=$( echo $RESOL | awk "-Fx" '{print $2}' | awk "-F-" '{print $1}')
[396]8
[2321]9    [ -f ${SUBMIT_DIR}/../.resol ] && eval $(grep RESOL_ATM_3D ${SUBMIT_DIR}/../.resol) || RESOL_ATM_3D=96x95x39
[396]10
[659]11    RESOL_ATM_Z=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $3}' )
[1802]12    RESOL_ATM_X=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $1}' )
13    RESOL_ATM_Y=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $2}' )
14    RESOL_ATM_XY="${RESOL_ATM_X}x${RESOL_ATM_Y}"
[649]15
[1541]16    ##- LMDZ physics version
17    ##  Read LMDZ_Physics option in lmdz.card, if not present take default value AP (old physics)
18    if [ ! X${lmdz_UserChoices_LMDZ_Physics} = X ] ; then
19        LMDZ_Physics=${lmdz_UserChoices_LMDZ_Physics}
20    else
21        LMDZ_Physics=AP
22    fi
23    echo LMDZ physics version : ${LMDZ_Physics}
24
[1643]25    ##- Create_etat0_limit version
[1782]26    ##  Define variable CREATE only if it is set in lmdz.card section UserChoices.
27    ##  This variable is only used in lmdz.card to choose input files.
28    if [ ! X${lmdz_UserChoices_CREATE} = X ] ; then
29        IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices CREATE
30        CREATE=${lmdz_UserChoices_CREATE}
31        echo create_etat0_limit version : ${CREATE}
32    fi
[1643]33
[1782]34
[1550]35    ## - LMDZ choice of config.def file
36    ##   ConfType must be set in lmdz.card
37    ConfType=${lmdz_UserChoices_ConfType}
[1541]38
[1550]39    ##- LMDZ output level, to be set in lmdz.card
40    if [ X${lmdz_UserChoices_OutLevel} = X ] ; then
41        # OutLevel is not set. Take default value low.
42        OutLevel=low
43    else
44        OutLevel=${lmdz_UserChoices_OutLevel}
45    fi
46
[1539]47    ##-- Output frequency purpose ....
[396]48    ##--  Initialisation  ....
[2605]49    ok_mensuel=.FALSE.
50    ok_journe=.FALSE.
51    ok_hf=.FALSE.
52    ok_hf3h=.FALSE.
53    ok_hf3hm=.FALSE.
54    ok_stn=.FALSE.
[396]55
[3505]56
[396]57    case ${config_UserChoices_PeriodLength} in
[2605]58        1Y|1y|1M|1m) ok_mensuel=.TRUE. ;;
59        5D|5d|1D|1d) ok_journe=.TRUE. ;;
[396]60    esac
61
62    for frequency in ${config_ATM_WriteFrequency} ; do
63        case ${frequency} in
[2605]64            1M|1m) ok_mensuel=.TRUE. ;;
[396]65        esac
66        case ${frequency} in
[2605]67            5D|5d|1D|1d) ok_journe=.TRUE. ;;
[1539]68        esac
69        case ${frequency} in
[2605]70            HF|hf) ok_hf=.TRUE. ;;
[396]71        esac
[1539]72        case ${frequency} in
[2605]73            HF3h|hf3h) ok_hf3h=.TRUE. ;;
[1539]74        esac
75        case ${frequency} in
[2605]76            HF3hm|hf3hm) ok_hf3hm=.TRUE. ;;
[1539]77        esac
78        case ${frequency} in
[2605]79            STN|stn) ok_stn=.TRUE. ;;
[1539]80        esac
[396]81    done
82
[3505]83
84##  Read LMDZ_COSP_OK in lmdz.card
[2600]85    if [ X${lmdz_UserChoices_LMDZ_COSP_OK} = Xy ] ; then
86        ##  LMDZ_COSP_OK=y, now read all other COSP variables
87        ##  Read LMDZ_COSP_monthly in lmdz.card
88        if [ X${lmdz_UserChoices_LMDZ_COSP_monthly} = Xy ] ; then
[2605]89            LMDZ_COSP_monthly=.TRUE.
[2600]90        else
[2605]91            LMDZ_COSP_monthly=.FALSE.
[2600]92        fi
93        ##  Read LMDZ_COSP_daily in lmdz.card
94        if [ X${lmdz_UserChoices_LMDZ_COSP_daily} = Xy ] ; then
[2605]95            LMDZ_COSP_daily=.TRUE.
[2600]96        else
[2605]97            LMDZ_COSP_daily=.FALSE.
[2600]98        fi
99        ##  Read LMDZ_COSP_hf in lmdz.card
100        if [ X${lmdz_UserChoices_LMDZ_COSP_hf} = Xy ] ; then
[2605]101            LMDZ_COSP_hf=.TRUE.
[2600]102        else
[2605]103            LMDZ_COSP_hf=.FALSE.
[2600]104        fi
[1783]105    else
[2600]106        # LMDZ_COSP_OK=n : All cosp output are deactivated
[2605]107        LMDZ_COSP_monthly=.FALSE.
108        LMDZ_COSP_daily=.FALSE.
109        LMDZ_COSP_hf=.FALSE.
[2600]110    fi 
[1000]111
[1783]112    ##  Read LMDZ_NMC_monthly in lmdz.card
[2600]113    if [ X${lmdz_UserChoices_LMDZ_NMC_monthly} = Xy ] ; then
[2605]114        LMDZ_NMC_monthly=.TRUE.
[1783]115    else
[2605]116        LMDZ_NMC_monthly=.FALSE.
[1783]117    fi
[2600]118   
[1783]119    ## Read LMDZ_NMC_daily in lmdz.card
[2600]120    if [ X${lmdz_UserChoices_LMDZ_NMC_daily} = Xy ] ; then
[2605]121        LMDZ_NMC_daily=.TRUE.
[1783]122    else
[2605]123        LMDZ_NMC_daily=.FALSE.
[1783]124    fi
125   
126    ## Read LMDZ_NMC_hf in lmdz.card
[2600]127    if [ X${lmdz_UserChoices_LMDZ_NMC_hf} = Xy ] ; then
[2605]128        LMDZ_NMC_hf=.TRUE.
[1783]129    else
[2605]130        LMDZ_NMC_hf=.FALSE.
[1783]131    fi
[2600]132   
[1783]133
[396]134    IGCM_debug_PopStack "ATM_Initialize"
135}
136
137#-----------------------------------------------------------------
138function ATM_Update
139{
140    IGCM_debug_PushStack "ATM_Update"
141
[1535]142    ##-- GHG forcing :
[2321]143    ##   If forcing file exist in run directory, read values for the current year
144    ##   and set in config.def. If not use the default value set in config.def
[2333]145
146    # Read value for solaire from file SOLARANDVOLCANOES.txt. If file not existing, take DEFAULT value from file.
[3127]147    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)"
148    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]149    if [ -f SOLARANDVOLCANOES.txt ] ; then
[2333]150        value=`grep Annee_${year} SOLARANDVOLCANOES.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 SOLARANDVOLCANOES.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 solaire $value
[2321]160
[2333]161
162    # Read value for co2_ppm from file CO2.txt. If file not existing, take DEFAULT value from file.
[3568]163    # Calculate co2_ppm_per as co2_ppm*4.
[1535]164    if [ -f CO2.txt ] ; then
[2333]165        value=`grep Annee_${year} CO2.txt | awk -F= '{print $2}'`
166        if [ X"${value}" = X ] ; then
[2321]167            # The grep returned empty variable, stop execution
168            IGCM_debug_Exit "The file CO2.txt do not contain the current year."
169            IGCM_debug_Verif_Exit
170        fi
[3568]171        value4=`grep Annee_${year} CO2.txt | awk -F= '{print $2 * 4}'`
[1690]172    else
[2333]173        value=DEFAULT
[3568]174        value4=DEFAULT
[1535]175    fi
[2333]176    IGCM_comp_modifyDefFile nonblocker config.def co2_ppm $value
[3568]177    IGCM_comp_modifyDefFile nonblocker config.def co2_ppm_per $value4
[1690]178
[2333]179
180    # Read value for CH4_ppb from file CH4.txt. If file not existing, take DEFAULT value from file.
[1535]181    if [ -f CH4.txt ] ; then
[2333]182        value=`grep Annee_${year} CH4.txt | awk -F= '{print $2}'`
183        if [ X"${value}" = X ] ; then
[2321]184            # The grep returned empty variable, stop execution
185            IGCM_debug_Exit "The file CH4.txt do not contain the current year."
186            IGCM_debug_Verif_Exit
187        fi
[2333]188    else
189        value=DEFAULT
[1535]190    fi
[2333]191    IGCM_comp_modifyDefFile nonblocker config.def CH4_ppb $value
[2321]192
[2333]193
194    # Read value for N2O_ppb from file N2O.txt. If file not existing, take DEFAULT value from file.
[1535]195    if [ -f N2O.txt ] ; then
[2333]196        value=`grep Annee_${year} N2O.txt | awk -F= '{print $2}'`
197        if [ X"${value}" = X ] ; then
[2321]198            # The grep returned empty variable, stop execution
199            IGCM_debug_Exit "The file N2O.txt do not contain the current year."
200            IGCM_debug_Verif_Exit
201        fi
[1690]202    else
[2333]203        value=DEFAULT
[1535]204    fi
[2333]205    IGCM_comp_modifyDefFile nonblocker config.def N2O_ppb $value
[2321]206
[2333]207    # Read value for CFC11_ppt from file CFC11.txt. If file not existing, take DEFAULT value from file.
[1535]208    if [ -f CFC11.txt ] ; then
[2333]209        value=`grep Annee_${year} CFC11.txt | awk -F= '{print $2}'`
210        if [ X"${value}" = X ] ; then
[2321]211            # The grep returned empty variable, stop execution
212            IGCM_debug_Exit "The file CFC11.txt do not contain the current year."
213            IGCM_debug_Verif_Exit
214        fi
[1690]215    else
[2333]216        value=DEFAULT
[1535]217    fi
[2333]218    IGCM_comp_modifyDefFile nonblocker config.def CFC11_ppt $value
[2321]219
[2333]220
221    # Read value for CFC12_ppt from file CFC12.txt. If file not existing, take DEFAULT value from file.
[1535]222    if [ -f CFC12.txt ] ; then
[2333]223        value=`grep Annee_${year} CFC12.txt | awk -F= '{print $2}'`
224        if [ X"${value}" = X ] ; then
[2321]225            # The grep returned empty variable, stop execution
226            IGCM_debug_Exit "The file CFC12.txt do not contain the current year."
227            IGCM_debug_Verif_Exit
228        fi
[1690]229    else
[2333]230        value=DEFAULT
[1535]231    fi
[2333]232    IGCM_comp_modifyDefFile nonblocker config.def CFC12_ppt $value
[1535]233
[1780]234
[2336]235    ## Coupling Time Step : Take value of FreqCoupling set in oasis.card or if it is not set, take default value 86400
236    LMDZ_t_coupl=${oasis_UserChoices_FreqCoupling:-86400}
[2332]237    IGCM_debug_Print 3 "LMDZ_t_coupl "   ${LMDZ_t_coupl}
[2333]238    IGCM_comp_modifyDefFile nonblocker config.def t_coupl   ${LMDZ_t_coupl} 
[2332]239
[1780]240    ##-- Add special treatement for CARBON CYCLE
[1546]241    if [ X"${lmdz_UserChoices_CARBON_CYCLE}" = X"control" ] || [ X"${lmdz_UserChoices_CARBON_CYCLE}" = X"historical" ] ; then
[1780]242        ATM_Carbon_Update
243    fi
[1537]244
245
[1538]246    ##-- Set LMDZ_COSP_daily1979=y in section UserChoices in lmdz.card to activate
247    ##   COSP daily output for years 1979 and later (mandatory for historical CMIP5 run).
248    if ([ X"${lmdz_UserChoices_LMDZ_COSP_daily1979}" = X"y" ] &&  [ ${year} -ge 1979 ]) ; then
[2605]249        LMDZ_COSP_daily=.TRUE.
[1538]250    fi
[1537]251
[2600]252    ## Modifiy
[2605]253    IGCM_comp_modifyXmlFile nonblocker file_def_histmth_lmdz.xml histmth enabled ${ok_mensuel}
254   
255    IGCM_comp_modifyXmlFile nonblocker file_def_histday_lmdz.xml histday enabled ${ok_journe}
256   
[2600]257    if [ X${OutLevel} = Xlow ] || [ X${OutLevel} = Xmedium ] ; then
258        IGCM_comp_modifyXmlFile nonblocker file_def_histday_lmdz.xml histday output_level 2
259    else
260        IGCM_comp_modifyXmlFile nonblocker file_def_histday_lmdz.xml histday output_level 5
261    fi
262   
[2605]263    IGCM_comp_modifyXmlFile nonblocker file_def_histhf_lmdz.xml histhf enabled ${ok_hf}
264   
[2600]265    if [ X${OutLevel} = Xlow ] ; then
266        IGCM_comp_modifyXmlFile nonblocker file_def_histhf_lmdz.xml histhf output_level 5
267    elif [ X${OutLevel} = Xmedium ] ; then
268        IGCM_comp_modifyXmlFile nonblocker file_def_histhf_lmdz.xml histhf output_level 6
269    elif [ X${OutLevel} = Xhigh ] ; then
270        IGCM_comp_modifyXmlFile nonblocker file_def_histhf_lmdz.xml histhf output_level 7
[2582]271    fi
[2600]272       
[2755]273    IGCM_comp_modifyXmlFile nonblocker file_def_histhf3h_lmdz.xml histhf3h enabled ${ok_hf3h}
274    IGCM_comp_modifyXmlFile nonblocker file_def_histhf3hm_lmdz.xml histhf3hm enabled ${ok_hf3hm}
[2605]275
276    IGCM_comp_modifyXmlFile nonblocker file_def_histstn_lmdz.xml histstn enabled ${ok_stn}
[2600]277
[2605]278    IGCM_comp_modifyXmlFile nonblocker file_def_histmthNMC_lmdz.xml histmthNMC enabled ${LMDZ_NMC_monthly}
279    IGCM_comp_modifyXmlFile nonblocker file_def_histdayNMC_lmdz.xml histdayNMC enabled ${LMDZ_NMC_daily}
280    IGCM_comp_modifyXmlFile nonblocker file_def_histhfNMC_lmdz.xml histhfNMC enabled ${LMDZ_NMC_hf}
[2600]281   
[2605]282    IGCM_comp_modifyXmlFile nonblocker file_def_histmthCOSP_lmdz.xml histmthCOSP enabled ${LMDZ_COSP_monthly}
283    IGCM_comp_modifyXmlFile nonblocker file_def_histdayCOSP_lmdz.xml histdayCOSP enabled ${LMDZ_COSP_daily}
284    IGCM_comp_modifyXmlFile nonblocker file_def_histhfCOSP_lmdz.xml histhfCOSP enabled ${LMDZ_COSP_hf}
[2332]285
[3104]286    # Activate the histstrataer output file only for configuration with interactive stratospheric aersols
287    # done by setting the key word LMDZ_strataero=y in lmdz.card
288    if [ X${lmdz_UserChoices_LMDZ_strataero} = Xy ] ; then
289        IGCM_comp_modifyXmlFile nonblocker file_def_histstrataer_lmdz.xml histstrataer enabled .TRUE.
290    else
291        IGCM_comp_modifyXmlFile nonblocker file_def_histstrataer_lmdz.xml histstrataer enabled .FALSE.
292    fi
[396]293
[3104]294
[911]295    ## run.def parameters
[2598]296
297
298    ##-- Remise ou non a zero de la date initiale de LMDZ pour le fichier run.def
299    if [ ${CumulPeriod} -eq 1 ] ; then
300        IGCM_comp_modifyDefFile blocker run.def raz_date  1
301    else
302        IGCM_comp_modifyDefFile blocker run.def raz_date  0
303    fi
304
305    ##-- Calendar type for LMDZ and create_etat0_limit
306    case ${config_UserChoices_CalendarType} in
307        leap|gregorian)
308            IGCM_comp_modifyDefFile blocker run.def calend  gregorian ;;
309        noleap)
310            IGCM_comp_modifyDefFile blocker run.def calend  earth_365d ;;
311        360d)
312            IGCM_comp_modifyDefFile blocker run.def calend  earth_360d ;;
313        *)
314            IGCM_comp_modifyDefFile blocker run.def calend  earth_360d ;;
315    esac
316
[2582]317    IGCM_comp_modifyDefFile blocker run.def dayref    ${InitDay}
318    IGCM_comp_modifyDefFile blocker run.def nday      ${PeriodLengthInDays}
[396]319
[1804]320    # Set anneeref different for gcm and ce0l
321    # Test if executable create_etat0_limit is present and lmdz.x is not present
322    if [ -f create_etat0_limit* ] || [ -f ce0l* ] && [ ! -f lmdz.x ] ; then
323        # for case ce0l : always take current year
[2333]324        IGCM_comp_modifyDefFile blocker run.def anneeref ${year}
[2480]325
326        # Temporary, set use_filtre_fft=n because we now use dyn3d for ce0l version where fft is not implemented.
327        # In more recent versions of LMDZ, this will not be needed.
328        IGCM_comp_modifyDefFile force   run.def use_filtre_fft n
[1804]329    else
330        # for case gcm : take first year of simulation
[2333]331        IGCM_comp_modifyDefFile blocker run.def anneeref ${InitYear}
[1804]332    fi
[1643]333
[1650]334    ## Determine from the variable ListOfComponents in config.card coupling to external models
335    ## and set corresponding parameters in run.def
336    echo ListOfComponents now running : ${config_ListOfComponents[*]}
337
338    if [ X${config_ListOfComponents_SRF} = Xorchidee ] ; then
339        echo "Activate ORCHIDEE, set VEGET=y in run.def"
[2333]340        IGCM_comp_modifyDefFile blocker run.def VEGET y
[1650]341    else
342        echo "No ORCHIDEE, set VEGET=n in run.def"
[2333]343        IGCM_comp_modifyDefFile blocker run.def VEGET n
[1650]344    fi
345
346    if [ X${config_ListOfComponents_CPL} = Xoasis ] ; then
347        echo "Activate coupling to ocean, set type_ocean=couple in run.def"
[2333]348        IGCM_comp_modifyDefFile blocker run.def type_ocean couple
[1650]349    else
350        echo "LMDZ is running in forced mode without ocean model, set type_ocean=force in run.def"
[2333]351        IGCM_comp_modifyDefFile blocker run.def type_ocean force
[1650]352    fi
353
354    if [ X${config_ListOfComponents_CHM} = Xinca ] ; then
355        echo "Activate coupling to INCA, set type_trac=inca in run.def"
[2333]356        IGCM_comp_modifyDefFile blocker run.def type_trac inca
[1650]357    elif [ X${config_ListOfComponents_CHM} = Xreprobus ] ; then
358        echo "Activate coupling to REPROBUS, set type_trac=repr in run.def"
[2333]359        IGCM_comp_modifyDefFile blocker run.def type_trac repr
360        IGCM_comp_modifyDefFile blocker run.def config_inca none
[1650]361    else
362        echo "No coupling to chemistry model, set type_trac=lmdz in run.def"
[2333]363        IGCM_comp_modifyDefFile blocker run.def type_trac lmdz
364        IGCM_comp_modifyDefFile blocker run.def config_inca none
[1650]365    fi
366
367
[2015]368    # config.def : Activate direct radiative effect if ok_ade=y
369    if [ ! X${lmdz_UserChoices_ok_ade} = X ]; then
[2333]370        IGCM_comp_modifyDefFile nonblocker config.def ok_ade ${lmdz_UserChoices_ok_ade}
[2015]371    else
[2333]372        IGCM_comp_modifyDefFile nonblocker config.def ok_ade n
[2015]373    fi 
374
375    # config.def : Activate indirect radiative effect if ok_aie=y
376    if [ ! X${lmdz_UserChoices_ok_aie} = X ]; then
[2333]377        IGCM_comp_modifyDefFile nonblocker config.def ok_aie ${lmdz_UserChoices_ok_aie}
[2015]378    else
[2333]379        IGCM_comp_modifyDefFile nonblocker config.def ok_aie n
[2015]380    fi 
[1816]381
[2015]382    # config.def : Activate online aerosol coupled model if aerosol_couple=y
383    if [ ! X${lmdz_UserChoices_aerosol_couple} = X ]; then
[2333]384        IGCM_comp_modifyDefFile nonblocker config.def aerosol_couple ${lmdz_UserChoices_aerosol_couple}
[1686]385    else
[2333]386        IGCM_comp_modifyDefFile nonblocker config.def aerosol_couple n
[2015]387    fi 
[1686]388
[2015]389    # config.def : Activate reading of ozone in climatology if read_climoz=2
390    if [ ! X${lmdz_UserChoices_read_climoz} = X ]; then
[2333]391        IGCM_comp_modifyDefFile nonblocker config.def read_climoz ${lmdz_UserChoices_read_climoz}
[2015]392    else
[2333]393        IGCM_comp_modifyDefFile nonblocker config.def read_climoz 0     
[2015]394    fi 
395
396    # config.def : Choose aerosol use in radiative effect
397    #  type of coupled aerosol =1 (default) =2 => bc  only =3 => pom only =4 => seasalt only
398    # =5 => dust only =6 => all aerosol   
399    if [ ! X${lmdz_UserChoices_flag_aerosol} = X ]; then
[2333]400        IGCM_comp_modifyDefFile nonblocker config.def flag_aerosol ${lmdz_UserChoices_flag_aerosol}
[2015]401    else
[2333]402        IGCM_comp_modifyDefFile nonblocker config.def flag_aerosol 0
[2015]403    fi 
404
405    # config.def : Activate calcul of Cloud droplet number concentration if ok_cdnc=y
406    if [ ! X${lmdz_UserChoices_ok_cdnc} = X ]; then
[2333]407        IGCM_comp_modifyDefFile nonblocker config.def ok_cdnc ${lmdz_UserChoices_ok_cdnc}
[2015]408    else
[2333]409        IGCM_comp_modifyDefFile nonblocker config.def ok_cdnc n
[2015]410    fi 
411
[2893]412    # config.def : Activate COSP
413    if [ ! X${lmdz_UserChoices_LMDZ_COSP_OK} = X ]; then
414        IGCM_comp_modifyDefFile nonblocker config.def ok_cosp ${lmdz_UserChoices_LMDZ_COSP_OK}
415    else
416        IGCM_comp_modifyDefFile nonblocker config.def ok_cosp n
417    fi 
418
[2911]419    # config.def : Modify parameter pmagic if it is set in lmdz.card
420    if [ ! X${lmdz_UserChoices_pmagic} = X ]; then
421        IGCM_comp_modifyDefFile nonblocker config.def pmagic ${lmdz_UserChoices_pmagic}
422    else
423        # Take default value set in config.def
424        IGCM_comp_modifyDefFile nonblocker config.def pmagic DEFAULT
425    fi 
[2893]426
[1690]427    # guide.def : Activate nudging if ok_guide=y set in lmdz.card
[1643]428    if [ ! X${lmdz_UserChoices_ok_guide} = X ] ; then
[2333]429        IGCM_comp_modifyDefFile nonblocker guide.def ok_guide  ${lmdz_UserChoices_ok_guide}
[1690]430    else
[2333]431        IGCM_comp_modifyDefFile nonblocker guide.def ok_guide n
[1643]432    fi
433
[902]434    ## Read ByPass_hgardfou_teta option in lmdz.card --> divide teta* by 2 if [ $ByPass_hgardfou_teta = 1 ]
[1172]435    ByPass_hgardfou_teta=${lmdz_UserChoices_ByPass_hgardfou_teta}
[1688]436    if [ X"${ByPass_hgardfou_teta}" = X"y" ] ; then
[396]437        awk '{ if ($0 ~ /^teta.*=/) {split($0,a,"=") ; print a[1]"="a[2]/2"."} else print $0}' gcm.def > gcm.def.tmp
438        IGCM_sys_Mv gcm.def.tmp gcm.def
439        echo
440        IGCM_debug_Print 1 "ByPass_hgardfou_teta : ^teta*/2 in gcm.def"
441        echo
442        cat gcm.def
443        ByPass_hgardfou_teta=n
[902]444        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices ByPass_hgardfou_teta "${ByPass_hgardfou_teta}"
[396]445    fi
446
[902]447    ## Read ByPass_hgardfou_mats option in lmdz.card --> purmats=y 2 if [ $ByPass_hgardfou_mats = 1 ]
[1172]448    ByPass_hgardfou_mats=${lmdz_UserChoices_ByPass_hgardfou_mats}
[1688]449    if [ X"${ByPass_hgardfou_mats}" = X"y" ] ; then
[396]450        sed -e "s/^purmats=.*/purmats=y/" gcm.def > gcm.def.tmp
451        IGCM_sys_Mv gcm.def.tmp gcm.def
452        echo
453        IGCM_debug_Print 1 "ByPass_hgardfou_mats : purmats=y in gcm.def"
454        echo
455        cat gcm.def
456        ByPass_hgardfou_mats=n
[902]457        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices ByPass_hgardfou_mats "${ByPass_hgardfou_mats}"
[396]458    fi
459
[2904]460    # Add include of LMDZ context in iodef.xml
461    # In iodef.xml add on next line after "COMPONENT CONTEXT"
462    #  <context id="LMDZ" src="./context_lmdz.xml"/>
463    echo '<context id="LMDZ" src="./context_lmdz.xml"/>' > add.tmp
[3505]464    if [ X"$( echo ${config_UserChoices_ExpType} | grep CMIP6 )" != "X" ] ; then
465        echo '<context id="LMDZ" src="./ping_lmdz.xml"/>' >> add.tmp
466        echo '<context id="LMDZ" src="./dr2xml_lmdz.xml"/>' >> add.tmp
467    fi
[2904]468    cp iodef.xml iodef.xml.tmp
469    sed -e "/COMPONENT CONTEXT/r add.tmp" iodef.xml.tmp > iodef.xml
470    rm iodef.xml.tmp add.tmp
[2476]471
[2904]472    #Long Name as global attribute (if LongName is not empty)
473    if [ ! "X${config_UserChoices_LongName}" = "X" ] ; then
474        listfile=$(ls file_def*lmdz.xml)
475        echo "<variable id=\"LongName\" type=\"string\">${config_UserChoices_LongName}</variable>" > add.tmp
476        for file in ${listfile}
477        do
478            cp ${file} ${file}.tmp
479            sed -e "/<file id/r add.tmp" \
480                ${file}.tmp > ${file}
481            rm ${file}.tmp
482        done
483        rm add.tmp
[2332]484    fi
[2904]485           
[396]486    IGCM_debug_PopStack "ATM_Update"
487}
488
489#-----------------------------------
490function ATM_Finalize
491{
492    IGCM_debug_PushStack "ATM_Finalize"
493
[1537]494    # Add special treatement for CARBON CYCLE
[1546]495    if [ X"${lmdz_UserChoices_CARBON_CYCLE}" = X"control" ] || [ X"${lmdz_UserChoices_CARBON_CYCLE}" = X"historical" ] ; then
[1780]496        ATM_Carbon_Finalize
497    fi
[1537]498
[1780]499    echo FINALIZE ATM !
[1537]500
[1780]501    IGCM_debug_PopStack "ATM_Finalize"
502}
[1537]503
504
505
[1780]506function ATM_Carbon_Update
507{
508    # This fuction will be called only if CARBON_CYCLE is set to control or historical in lmdz.card
[1537]509
[1780]510    IGCM_debug_PushStack "ATM_Carbon_Update"
511
512    typeset InitPeriodCo2 InitDateBeginCo2 InitDateEndCo2
513    typeset CO2SBG CO2MBG CO2LU CO2_ppm CO2_ppm_prec fCO2_ff
514    typeset PathCO2log
515    typeset PreviousLinelog LastPeriodDateBegin LastPeriodDateEnd LastDatesPeriod LastPREFIX
516   
517    if ( ${FirstInitialize} && [ X"${config_ATM_Restart}" = X"n" ] ) ; then
518        ##--Initialization of fluxes to an undefined value at the first run
519        UndefinedValueCo2=-9999
520        InitPeriodCo2=0
521        InitDateBeginCo2=${UndefinedValueCo2}
522        InitYearCo2=$(( ${year} - 1 )) 
523        InitDateEndCo2=${InitYearCo2}1231
524        fCO2_ff=${UndefinedValueCo2} 
525        CO2SBG=${UndefinedValueCo2}
526        CO2LU=${UndefinedValueCo2}
527        CO2MBG=${UndefinedValueCo2}
528        CO2_ppm_prec=${UndefinedValueCo2}
529        # Get the initial value of atmosp. pco2
530        CO2_ppm=${lmdz_UserChoices_co2_init}
531       
532        IGCM_sys_Cp ${SUBMIT_DIR}/co2.log.init ${SUBMIT_DIR}/co2.log
533        IGCM_sys_Chmod u+w ${SUBMIT_DIR}/co2.log
534       
[1537]535        # Save CO2 values in ExeCpuLog variable contents 5 fields
[1780]536        echo "${InitPeriodCo2} ${InitDateBeginCo2} ${InitDateEndCo2} ${CO2_ppm} ${CO2_ppm_prec} ${fCO2_ff} ${CO2MBG} ${CO2SBG} ${CO2LU}" |   \
[1537]537            gawk '{printf("  %11d | %15s | %15s | %22.15g | %20.15g | %11.8g | %11.8g | %12.8g | %12.8g \n", \
[1780]538                              $1,$2,$3,$4,$5,$6,$7,$8,$9)}' >> ${SUBMIT_DIR}/co2.log
539       
540        # Get the path where the log file co2.log is
541        PathCO2log=${SUBMIT_DIR} 
542        # Get Previous line in co2.log
543        PreviousLinelog=$( tail -1 ${PathCO2log}/co2.log )
544       
545    else
546       
547        # NEW parameter in config.card (even for Overule all restarts, you must modify the line after this comment ):
548        # !! NEW for Carbone cycle !! Path where to find old co2.log file for restart CO2.
549        #SubmitRestartPath=
550        if ( ${FirstInitialize} && [ X"${config_ATM_Restart}" = X"y" ] ) ; then
551            IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/config.card ATM SubmitRestartPath
552            PathCO2log=${config_ATM_SubmitRestartPath}
553            Date_r=$( IGCM_date_ConvertFormatToGregorian ${config_ATM_RestartDate} )
554            PreviousLinelog=$( grep ${Date_r} ${PathCO2log}/co2.log )
555           
556            IGCM_sys_Cp ${SUBMIT_DIR}/co2.log.init ${SUBMIT_DIR}/co2.log
557            IGCM_sys_Chmod u+w ${SUBMIT_DIR}/co2.log
558           
559            # Save Last Line of control in new co2.log file
560            InitPeriodCo2=0   
561            InitDateBeginCo2=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $2}' )
562            InitDateEndCo2=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $3}' )
563            fCO2_ff=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $6}' )
564            CO2SBG=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $8}' )
565            CO2LU=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $9}' )
566            CO2MBG=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $7}' )
567            CO2_ppm_prec=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $5}' )
568            CO2_ppm=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $4}' )
569           
570            echo "${InitPeriodCo2} ${InitDateBeginCo2} ${InitDateEndCo2} ${CO2_ppm} ${CO2_ppm_prec} ${fCO2_ff} ${CO2MBG} ${CO2SBG} ${CO2LU}" |   \
571                gawk '{printf("  %11d | %15s | %15s | %22.15g | %20.15g | %11.8g | %11.8g | %12.8g | %12.8g \n", \
572                              $1,$2,$3,$4,$5,$6,$7,$8,$9)}' >> ${SUBMIT_DIR}/co2.log
573        else
574           # Get restart line in co2.log
575            PathCO2log=${SUBMIT_DIR}
576            PreviousLinelog=$( tail -1 ${PathCO2log}/co2.log )
577           # Get the value of atmosp. pco2 in co2.log
578            CO2_ppm=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $4}' )
579        fi
580       
[1537]581    fi
[1780]582   
583    if [ ${lmdz_UserChoices_CARBON_CYCLE} = historical ] ; then
[2841]584        # Modify co2_ppm in config.def only for historical run
585        # If not historical run, keep co2_ppm value set earlier by IGCM_comp_modifyDefFile
586        IGCM_comp_modifyDefFile force config.def co2_ppm     ${CO2_ppm}
[1780]587    fi
588    IGCM_debug_PopStack "ATM_Carbon_Update"
589}
[1537]590
[396]591
[1780]592function ATM_Carbon_Finalize
593{
594    # This fuction will be called only if CARBON_CYCLE is set to control or historical in lmdz.card
595
596    IGCM_debug_PushStack "ATM_Carbon_Finalize"
597
598    typeset CO2SBG_3V CO2SBG CO2MBG CO2SRF CO2LU CO2_ppm CO2_ppm_prec fCO2_ff
599   
600        # Fossil fuel emission
601    if [ ${lmdz_UserChoices_CARBON_CYCLE} = control ] ; then
602            # For Control, no fossil fuel emission :
603        fCO2_ff=0
604        echo "Fossil Fuel for control run  :" ${fCO2_ff}
605    else
606            # For historical, get the fossile fuel file :
607        fCO2_ff=$( gawk "{if (match(\$0,\"${year}\ *${month}\")) {print \$3}}" ${SUBMIT_DIR}/PARAM/CMIP5_gridcar_CO2_emissions_fossil_fuel_Andres_1751-2007_monthly_SC.txt )
608        echo "Fossil Fuel for historical run  :" ${fCO2_ff}
609    fi
610   
611        # Get the value of ocean carbon flux
612    CO2MBG=$( ${SUBMIT_DIR}/COMP/lmdz_analyse_pisces_out.awk ocean.output )
613    CO2MBG=$( echo ${CO2MBG} | sed -e "s/ *//" )
614    echo "Ocean carbon flux  :" ${CO2MBG}
615   
616        # Get the value of land fluxes
617    set +A CO2SBG_3V -- $( ${SUBMIT_DIR}/COMP/lmdz_analyse_stomate_out.awk out_orchidee_0000 )
618    CO2SRF=$( echo ${CO2SBG_3V[0]} | sed -e "s/ *//" )
619    CO2LU=$( echo ${CO2SBG_3V[1]} | sed -e "s/ *//" )
620    CO2SBG=$( echo ${CO2SBG_3V[2]} | sed -e "s/ *//" )
621    echo "Land carbon flux (NEP)         :" ${CO2SRF}
622    echo "LU flux          (FLUC)        :" ${CO2LU}
623    echo "Total Land carbon flux (NBP)   :" ${CO2SBG}
624   
625        # Previous CO2
626    CO2_ppm_prec=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $4}' )
627    echo "Previous CO2  :" ${CO2_ppm_prec}
628   
629        # Formula
630    CO2_ppm=$( echo "${CO2_ppm_prec} + (${fCO2_ff} + ${CO2MBG} + ${CO2SBG}) / 2.12" | bc -l )
631    echo "New CO2  :" ${CO2_ppm}
632   
633        # Save CO2 values in ExeCpuLog variable contents 5 fields
634    echo "${CumulPeriod} ${PeriodDateBegin} ${PeriodDateEnd} ${CO2_ppm} ${CO2_ppm_prec} ${fCO2_ff} ${CO2MBG} ${CO2SBG} ${CO2LU}" |   \
635        gawk '{printf("  %11d | %15s | %15s | %22.15g | %20.15g | %11.8g | %11.8g | %12.8g | %12.8g \n", \
636                           $1,$2,$3,$4,$5,$6,$7,$8,$9)}' >> ${SUBMIT_DIR}/co2.log
637   
638    IGCM_debug_PopStack "ATM_Carbon_Finalize"
[396]639}
Note: See TracBrowser for help on using the repository browser.