source: CONFIG/UNIFORM/v5/IPSLCM5_v5/GENERAL/DRIVER/lmdz.driver @ 2294

Last change on this file since 2294 was 2294, checked in by jgipsl, 10 years ago

Corrected time steps for NPv3.2 physics.

File size: 27.4 KB
Line 
1#!/bin/ksh
2#-----------------------------------------------------------------
3function LMDZ_sed
4{
5# Usage : LMDZ_sed filedef var_name myvalue
6#         In file filedef modify the line containing var_name=xxx into var_name=myvalue
7    IGCM_debug_PushStack "LMDZ_sed"
8   
9    # Test if the fichier exist
10    if [ ! -f ${1} ] ; then
11        echo "WARNING : ${1} file does not exist. Following will not be done : LMDZ_sed : ${1} ${2} ${3}"
12        IGCM_debug_PopStack "LMDZ_sed"
13        return
14    fi
15
16    sed -e "s/^${2}\ *=.*/${2}= ${3}/" ${1} > ${1}.tmp
17    RET=$?
18    echo "LMDZ_sed : ${1} ${2} ${3}"
19    \mv ${1}.tmp ${1}
20
21    IGCM_debug_PopStack "LMDZ_sed"
22    return $RET
23}
24function LMDZ_sed_default
25{
26# Usage : LMDZ_sed_default filedef var_name
27#         In file filedef modify the line  "var_name=xxx DEFAULT= myvalue"
28#         into "var_name=myvalue"
29    IGCM_debug_PushStack "LMDZ_sed_default"
30
31    DefValue=$( grep ${2} ${1}  | awk -F"DEFAULT.=*" '{print $2}')
32
33    LMDZ_sed  ${1} ${2} $DefValue
34    IGCM_debug_PopStack "LMDZ_sed_default"
35    return $RET
36}
37
38
39function ATM_Initialize
40{
41    IGCM_debug_PushStack "ATM_Initialize"
42
43    RESOL_ATM=$( echo $RESOL | awk "-Fx" '{print $2}' | awk "-F-" '{print $1}')
44
45    [ -f ${SUBMIT_DIR}/../.resol ] && eval $(grep RESOL_ATM_3D ${SUBMIT_DIR}/../.resol) || RESOL_ATM_3D=96x95x19
46
47    RESOL_ATM_Z=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $3}' )
48    RESOL_ATM_X=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $1}' )
49    RESOL_ATM_Y=$( echo ${RESOL_ATM_3D} | awk "-Fx" '{print $2}' )
50    RESOL_ATM_XY="${RESOL_ATM_X}x${RESOL_ATM_Y}"
51
52    ##-- Calendar type for LMDZ and create_etat0_limit
53    case ${config_UserChoices_CalendarType} in
54        leap|gregorian)
55            CalendarTypeForLmdz=earth_366d
56            CalendarTypeForCreate=gregorian;;
57        noleap)
58            CalendarTypeForLmdz=earth_365d
59            CalendarTypeForCreate=${CalendarTypeForLmdz};;
60        360d)
61            CalendarTypeForLmdz=earth_360d
62            CalendarTypeForCreate=${CalendarTypeForLmdz};;
63        *)
64            CalendarTypeForLmdz=earth_360d
65            CalendarTypeForCreate=${CalendarTypeForLmdz}
66    esac
67
68    ##- LMDZ physics version
69    ##  Read LMDZ_Physics option in lmdz.card, if not present take default value AP (old physics)
70    if [ ! X${lmdz_UserChoices_LMDZ_Physics} = X ] ; then
71        LMDZ_Physics=${lmdz_UserChoices_LMDZ_Physics}
72    else
73        LMDZ_Physics=AP
74    fi
75    echo LMDZ physics version : ${LMDZ_Physics}
76
77    ##- Create_etat0_limit version
78    ##  Define variable CREATE only if it is set in lmdz.card section UserChoices.
79    ##  This variable is only used in lmdz.card to choose input files.
80    if [ ! X${lmdz_UserChoices_CREATE} = X ] ; then
81        IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices CREATE
82        CREATE=${lmdz_UserChoices_CREATE}
83        echo create_etat0_limit version : ${CREATE}
84    fi
85
86
87    ## - LMDZ choice of config.def file
88    ##   ConfType must be set in lmdz.card
89    ConfType=${lmdz_UserChoices_ConfType}
90
91    ##- LMDZ output level, to be set in lmdz.card
92    if [ X${lmdz_UserChoices_OutLevel} = X ] ; then
93        # OutLevel is not set. Take default value low.
94        OutLevel=low
95    else
96        OutLevel=${lmdz_UserChoices_OutLevel}
97    fi
98
99    ##-- Output frequency purpose ....
100    ##--  Initialisation  ....
101    ok_mensuel=n
102    ok_journe=n
103    ok_hf=n
104    ok_hf3h=n
105    ok_hf3hm=n
106    ok_stn=n
107
108    case ${config_UserChoices_PeriodLength} in
109        1Y|1y|1M|1m) ok_mensuel=y ;;
110        5D|5d|1D|1d) ok_journe=y ;;
111    esac
112
113    for frequency in ${config_ATM_WriteFrequency} ; do
114        case ${frequency} in
115            1M|1m) ok_mensuel=y ;;
116        esac
117        case ${frequency} in
118            5D|5d|1D|1d) ok_journe=y ;;
119        esac
120        case ${frequency} in
121            HF|hf) ok_hf=y ;;
122        esac
123        case ${frequency} in
124            HF3h|hf3h) ok_hf3h=y ;;
125        esac
126        case ${frequency} in
127            HF3hm|hf3hm) ok_hf3hm=y ;;
128        esac
129        case ${frequency} in
130            STN|stn) ok_stn=y ;;
131        esac
132    done
133
134    ## Read LMDZ_NbPeriod_adjust option in lmdz.card
135    if [ X"${lmdz_UserChoices_LMDZ_NbPeriod_adjust}" = X"" ] ; then
136        # The variable is not in lmdz.card, set default value
137        LMDZ_NbPeriod_adjust=0
138    else       
139        LMDZ_NbPeriod_adjust=${lmdz_UserChoices_LMDZ_NbPeriod_adjust}
140    fi
141
142    if [ ${LMDZ_NbPeriod_adjust} -eq 0 ] ; then
143        LMDZ_Bands_file_name=${lmdz_UserChoices_LMDZ_Bands_file_name}
144    fi
145
146
147    ##  Read LMDZ_COSP_OK in lmdz.card
148    if [ ! X${lmdz_UserChoices_LMDZ_COSP_OK} = X ] ; then
149        LMDZ_COSP_OK=${lmdz_UserChoices_LMDZ_COSP_OK}
150    else
151        LMDZ_COSP_OK=n
152    fi
153    ##  Read LMDZ_COSP_monthly in lmdz.card
154    if [ ! X${lmdz_UserChoices_LMDZ_COSP_monthly} = X ] ; then
155        LMDZ_COSP_monthly=${lmdz_UserChoices_LMDZ_COSP_monthly}
156    else
157        LMDZ_COSP_monthly=n
158    fi
159    ##  Read LMDZ_COSP_daily in lmdz.card
160    if [ ! X${lmdz_UserChoices_LMDZ_COSP_daily} = X ] ; then
161        LMDZ_COSP_daily=${lmdz_UserChoices_LMDZ_COSP_daily}
162    else
163        LMDZ_COSP_daily=n
164    fi
165    ##  Read LMDZ_COSP_hf in lmdz.card
166    if [ ! X${lmdz_UserChoices_LMDZ_COSP_hf} = X ] ; then
167        LMDZ_COSP_hf=${lmdz_UserChoices_LMDZ_COSP_hf}
168    else
169        LMDZ_COSP_hf=n
170    fi
171
172    ##  Read LMDZ_NMC_monthly in lmdz.card
173    if [ ! X${lmdz_UserChoices_LMDZ_NMC_monthly} = X ] ; then
174        LMDZ_NMC_monthly=${lmdz_UserChoices_LMDZ_NMC_monthly}
175    else
176        LMDZ_NMC_monthly=n
177    fi
178
179    ## Read LMDZ_NMC_daily in lmdz.card
180    if [ ! X${lmdz_UserChoices_LMDZ_NMC_daily} = X ] ; then
181        LMDZ_NMC_daily=${lmdz_UserChoices_LMDZ_NMC_daily}
182    else
183        LMDZ_NMC_daily=n
184    fi
185   
186    ## Read LMDZ_NMC_hf in lmdz.card
187    if [ ! X${lmdz_UserChoices_LMDZ_NMC_hf} = X ] ; then
188        LMDZ_NMC_hf=${lmdz_UserChoices_LMDZ_NMC_hf}
189    else
190        LMDZ_NMC_hf=n
191    fi
192
193
194    IGCM_debug_PopStack "ATM_Initialize"
195}
196
197#-----------------------------------------------------------------
198function ATM_Update
199{
200    IGCM_debug_PushStack "ATM_Update"
201
202
203    case ${config_UserChoices_PeriodLength} in
204        *Y|*y) 
205               LMDZ_ecrit_ISCCP=30.
206               LMDZ_periodav=30.
207               if [ "${config_UserChoices_CalendarType}" != "360d" ] ; then
208                  echo Do not consider following warning if your running create_etat0_limit :
209                  echo WARNING !!! For lmdz : calendartype in config.card. PeriodLength=1Y allowed only for CalendarType=360d
210               fi
211               ;;
212        *)
213               LMDZ_ecrit_ISCCP=${PeriodLengthInDays}.
214               LMDZ_periodav=${PeriodLengthInDays}.
215               ;;
216    esac
217 
218    ##-- Remise ou non a zero de la date initiale de LMDZ pour le fichier run.def
219    if [ ${CumulPeriod} -eq 1 ] ; then
220        RAZ_DATE=1
221    else
222        RAZ_DATE=0
223    fi
224
225    ## Algorithme for special treatment for Bands_xxx file
226    ## For CumulPeriod=1 ;
227    ##        IF NbPeriod_Adjust = 0 ; set LMDZ_adjust=n
228    ##                                IF LMDZ_Bands_file_name was given in lmdz.card THEN Get Bands file directly from server. Store it later with _0 suffix.
229    ##                                IF no LMDZ_Bands_file_name was given, start without Bands file. Store it later with _0 suffix.
230    ##        ELSE set LMDZ_adjust=y ; start without Bands file ; Store it later in PARAM/ directory in submit directory with suffix _1 ;
231    ##
232    ## For CumulPeriod=2 to LMDZ_NbPeriod_adjust ;
233    ##       Get Bands file from PARAM/ in submit directory (CumulPeriod-1) ; set LMDZ_adjust=y ; Store Bands file in PARAM/ ;
234    ##
235    ## For CumulPeriod > LMDZ_NbPeriod_adjust ; LMDZ_adjust=n ; Get Bands file from PARAM/ ; Do not store ;
236
237    if [ ${CumulPeriod} -eq 1 ] ; then
238        if [ ${LMDZ_NbPeriod_adjust} -eq 0 ] ; then
239            if [ ! X${LMDZ_Bands_file_name} = X ] ; then
240                IGCM_sys_Get ${LMDZ_Bands_file_name} Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat
241                IGCM_sys_Chmod u+w Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat
242                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"
243            fi
244        fi
245    fi
246
247    LMDZ_adjust=n
248    [ ${CumulPeriod} -le ${LMDZ_NbPeriod_adjust} ] && LMDZ_adjust=y
249
250    RefPeriod=${LMDZ_NbPeriod_adjust} #0 to use a Bands file from Restart
251    [ ${CumulPeriod} -le ${LMDZ_NbPeriod_adjust} ] && (( RefPeriod = ${CumulPeriod} - 1 )) 
252
253    # Get Bands file from PARAM directory if file exist
254    if ( [ ${CumulPeriod} -gt 1 ] && [ -f ${SUBMIT_DIR}/PARAM/${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_${RefPeriod} ] ) ; then
255        IGCM_sys_Cp ${SUBMIT_DIR}/PARAM/${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_${RefPeriod} Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat
256        IGCM_sys_Chmod u+w Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat
257    fi
258
259    ##-- GHG forcing :
260    ##   If forcing file exist in run directory, read values for the current year and modify config.def
261    if [ -f SOLARANDVOLCANOES.txt ] ; then
262        IPCC_SOLAR=`grep Annee_${year} SOLARANDVOLCANOES.txt | awk -F= '{print $2}'`
263        LMDZ_sed config.def solaire     ${IPCC_SOLAR}
264    else
265        LMDZ_sed_default config.def solaire
266    fi
267    if [ -f CO2.txt ] ; then
268        IPCC_CO2=`grep Annee_${year} CO2.txt | awk -F= '{print $2}'`
269        LMDZ_sed config.def co2_ppm     ${IPCC_CO2}
270    else
271        LMDZ_sed_default config.def co2_ppm
272    fi
273
274
275    if [ -f CH4.txt ] ; then
276        IPCC_CH4=`grep Annee_${year} CH4.txt | awk -F= '{print $2}'`
277        LMDZ_sed config.def CH4_ppb     ${IPCC_CH4}
278    else
279        LMDZ_sed_default config.def CH4_ppb
280    fi
281    if [ -f N2O.txt ] ; then
282        IPCC_N2O=`grep Annee_${year} N2O.txt | awk -F= '{print $2}'`
283        LMDZ_sed config.def N2O_ppb     ${IPCC_N2O}
284    else
285        LMDZ_sed_default config.def N2O_ppb
286    fi
287    if [ -f CFC11.txt ] ; then
288        IPCC_CFC11=`grep Annee_${year} CFC11.txt | awk -F= '{print $2}'`
289        LMDZ_sed config.def CFC11_ppt   ${IPCC_CFC11}
290    else
291        LMDZ_sed_default config.def CFC11_ppt
292    fi
293    if [ -f CFC12.txt ] ; then
294        IPCC_CFC12=`grep Annee_${year} CFC12.txt | awk -F= '{print $2}'`
295        LMDZ_sed config.def CFC12_ppt   ${IPCC_CFC12}
296    else
297        LMDZ_sed_default config.def CFC12_ppt
298    fi
299
300
301    ##-- Add special treatement for CARBON CYCLE
302    if [ X"${lmdz_UserChoices_CARBON_CYCLE}" = X"control" ] || [ X"${lmdz_UserChoices_CARBON_CYCLE}" = X"historical" ] ; then
303        ATM_Carbon_Update
304    fi
305
306
307    ##-- Set LMDZ_COSP_daily1979=y in section UserChoices in lmdz.card to activate
308    ##   COSP daily output for years 1979 and later (mandatory for historical CMIP5 run).
309    if ([ X"${lmdz_UserChoices_LMDZ_COSP_daily1979}" = X"y" ] &&  [ ${year} -ge 1979 ]) ; then
310        LMDZ_COSP_daily=y
311    fi
312
313
314    ## output.def parameters
315    #  columns in phys_output_filekeys refer to the filenames given in phys_out_filenames in output.def : 
316    #                                            histmth       histday        histhf    histfh3h   histhf3hm   histstn
317    LMDZ_sed output.def phys_out_filekeys       "${ok_mensuel} ${ok_journe}   ${ok_hf}  ${ok_hf3h} ${ok_hf3hm} ${ok_stn}"
318    LMDZ_sed output.def ecrit_ISCCP ${LMDZ_ecrit_ISCCP}
319    LMDZ_sed output.def ok_cosp     ${LMDZ_COSP_OK}
320    LMDZ_sed output.def ok_mensuelCOSP  ${LMDZ_COSP_monthly}
321    LMDZ_sed output.def ok_journeCOSP   ${LMDZ_COSP_daily}
322    LMDZ_sed output.def ok_hfCOSP   ${LMDZ_COSP_hf}
323    LMDZ_sed output.def ok_histNMC  "${LMDZ_NMC_monthly} ${LMDZ_NMC_daily} ${LMDZ_NMC_hf}"
324
325    ## gcm.def parameters :
326    # Modification for timestep in physics due to differnt type of physics
327    # To know the time step in minutes the physics part of LMDZ use: 1440/day_step*ipysiq/nsplit_phys
328    if [ X${LMDZ_Physics} = X"NPv3.1" ] && [ ${RESOL_ATM_3D} = 96x95x39 ] ; then
329        # Time step in physics: 7.5min
330        LMDZ_sed gcm.def iphysiq     5
331    elif [ X${LMDZ_Physics} = X"NPv3.1" ] && [ ${RESOL_ATM_3D} = 144x142x39 ] ; then
332        # Time step in physics: 10min
333        LMDZ_sed gcm.def iphysiq     5
334    elif [ X${LMDZ_Physics} = X"NPv3.2" ] && [ ${RESOL_ATM_3D} = 96x95x39 ] ; then
335        # Time step in physics: 15min
336        LMDZ_sed gcm.def iphysiq     5
337    elif [ X${LMDZ_Physics} = X"NPv3.2" ] && [ ${RESOL_ATM_3D} = 144x142x39 ] ; then
338        # Time step in physics: 10min
339        LMDZ_sed gcm.def iphysiq     5
340    elif [ X${LMDZ_Physics} = X"NPv3.2" ] && [ ${RESOL_ATM_3D} = 128x118x39 ] ; then
341        # Time step in physics: 7.5min
342        LMDZ_sed gcm.def iphysiq     15
343    elif [ X${LMDZ_Physics} = X"AP" ] ; then
344        # Time step in physics: 30min
345        # Use default value for old physics
346        LMDZ_sed_default gcm.def iphysiq
347    else
348        # Warning this combination has not been prepared
349        echo ""
350        echo "WARNING!! LMDZ_Physics=${LMDZ_Physics} has not been tested with resolution ${RESOL_ATM_3D}."
351        echo " => The default timestep for iphysiq will be used. "
352        echo " => You can change the default time step in gcm.def_${RESOL_ATM_3D} but be carefull to keep the syntax: iphysiq=_AUTO_ : DEFAULT = new_value"
353        echo " => Calculate new time step in minutes in the physics of LMDZ as : 1440/day_step*ipysiq/nsplit_phys"
354        LMDZ_sed_default gcm.def iphysiq
355        echo ""
356    fi
357   
358
359
360    ## run.def parameters
361    LMDZ_sed run.def dayref   ${InitDay}
362    LMDZ_sed run.def nday     ${PeriodLengthInDays}
363    LMDZ_sed run.def raz_date ${RAZ_DATE}
364    LMDZ_sed run.def periodav ${LMDZ_periodav}
365    LMDZ_sed run.def adjust   ${LMDZ_adjust}
366
367    # Set anneeref different for gcm and ce0l
368    # Variable calend is different for a run with create_etat0_limit and the gcm
369    # Test if executable create_etat0_limit is present and lmdz.x is not present
370    if [ -f create_etat0_limit* ] || [ -f ce0l* ] && [ ! -f lmdz.x ] ; then
371        # for case ce0l : always take current year
372        LMDZ_sed run.def anneeref ${year}
373        LMDZ_sed run.def calend   ${CalendarTypeForCreate}
374    else
375        # for case gcm : take first year of simulation
376        LMDZ_sed run.def anneeref ${InitYear}
377        LMDZ_sed run.def calend   ${CalendarTypeForLmdz}
378    fi
379
380    # Activate creation of file grilles_gcm.nc only at first period
381    if [ ${CumulPeriod} -eq 1 ] ; then
382        LMDZ_sed run.def grilles_gcm_netcdf y
383    else
384        LMDZ_sed run.def grilles_gcm_netcdf n
385    fi
386
387    ## Determine from the variable ListOfComponents in config.card coupling to external models
388    ## and set corresponding parameters in run.def
389    echo ListOfComponents now running : ${config_ListOfComponents[*]}
390
391    if [ X${config_ListOfComponents_SRF} = Xorchidee ] ; then
392        echo "Activate ORCHIDEE: set VEGET=y and add INCLUDEDEF=orchidee.def in run.def"
393        LMDZ_sed run.def VEGET y
394        # Add "INCLUDEDEF=orchidee.def" before the 5th line in run.def
395        sed -i '5iINCLUDEDEF=orchidee.def' run.def
396    else
397        echo "No ORCHIDEE, set VEGET=n in run.def"
398        LMDZ_sed run.def VEGET n
399    fi
400
401    if [ X${config_ListOfComponents_CPL} = Xoasis ] ; then
402        echo "Activate coupling to ocean, set type_ocean=couple in run.def"
403        LMDZ_sed run.def type_ocean couple
404    else
405        echo "LMDZ is running in forced mode without ocean model, set type_ocean=force in run.def"
406        LMDZ_sed run.def type_ocean force
407    fi
408
409    if [ X${config_ListOfComponents_CHM} = Xinca ] ; then
410        echo "Activate coupling to INCA: set type_trac=inca and add INCLUDEDEF=inca.def in run.def"
411        LMDZ_sed run.def type_trac inca
412        # Add "INCLUDEDEF=inca.def" before the 5th line in run.def
413        sed -i '5iINCLUDEDEF=inca.def' run.def
414    elif [ X${config_ListOfComponents_CHM} = Xreprobus ] ; then
415        echo "Activate coupling to REPROBUS: set type_trac=repr and add INCLUDEDEF=reprobus.def in run.def"
416        LMDZ_sed run.def type_trac repr
417        LMDZ_sed run.def config_inca none
418        # Add "INCLUDEDEF=reprobus.def" before the 5th line in run.def
419        sed -i '5iINCLUDEDEF=reprobus.def' run.def
420    else
421        echo "No coupling to chemistry model, set type_trac=lmdz in run.def"
422        LMDZ_sed run.def type_trac lmdz
423        LMDZ_sed run.def config_inca none
424    fi
425
426
427    # config.def : Activate direct radiative effect if ok_ade=y
428    if [ ! X${lmdz_UserChoices_ok_ade} = X ]; then
429        LMDZ_sed config.def ok_ade ${lmdz_UserChoices_ok_ade}
430    else
431        LMDZ_sed config.def ok_ade n
432    fi 
433
434    # config.def : Activate indirect radiative effect if ok_aie=y
435    if [ ! X${lmdz_UserChoices_ok_aie} = X ]; then
436        LMDZ_sed config.def ok_aie ${lmdz_UserChoices_ok_aie}
437    else
438        LMDZ_sed config.def ok_aie n
439    fi 
440
441    # config.def : Activate online aerosol coupled model if aerosol_couple=y
442    if [ ! X${lmdz_UserChoices_aerosol_couple} = X ]; then
443        LMDZ_sed config.def aerosol_couple ${lmdz_UserChoices_aerosol_couple}
444    else
445        LMDZ_sed config.def aerosol_couple n
446    fi 
447
448    # config.def : Activate reading of ozone in climatology if read_climoz=2
449    if [ ! X${lmdz_UserChoices_read_climoz} = X ]; then
450        LMDZ_sed config.def read_climoz ${lmdz_UserChoices_read_climoz}
451    else
452        LMDZ_sed config.def read_climoz 0       
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
459        LMDZ_sed config.def flag_aerosol ${lmdz_UserChoices_flag_aerosol}
460    else
461        LMDZ_sed config.def flag_aerosol 0
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
466        LMDZ_sed config.def ok_cdnc ${lmdz_UserChoices_ok_cdnc}
467    else
468        LMDZ_sed config.def ok_cdnc n   
469    fi 
470
471    # guide.def : Activate nudging if ok_guide=y set in lmdz.card
472    if [ X${lmdz_UserChoices_ok_guide} = Xy ] ; then
473        # Set ok_guide=y in guide.def
474        LMDZ_sed guide.def ok_guide  ${lmdz_UserChoices_ok_guide}
475        # Add "INCLUDEDEF=guide.def" before the 5th line in run.def
476        sed -i '5iINCLUDEDEF=guide.def' run.def
477    else
478        LMDZ_sed guide.def ok_guide n
479    fi
480
481    ## Read ByPass_hgardfou_teta option in lmdz.card --> divide teta* by 2 if [ $ByPass_hgardfou_teta = 1 ]
482    ByPass_hgardfou_teta=${lmdz_UserChoices_ByPass_hgardfou_teta}
483    if [ X"${ByPass_hgardfou_teta}" = X"y" ] ; then
484        awk '{ if ($0 ~ /^teta.*=/) {split($0,a,"=") ; print a[1]"="a[2]/2"."} else print $0}' gcm.def > gcm.def.tmp
485        IGCM_sys_Mv gcm.def.tmp gcm.def
486        echo
487        IGCM_debug_Print 1 "ByPass_hgardfou_teta : ^teta*/2 in gcm.def"
488        echo
489        cat gcm.def
490        ByPass_hgardfou_teta=n
491        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices ByPass_hgardfou_teta "${ByPass_hgardfou_teta}"
492    fi
493
494    ## Read ByPass_hgardfou_mats option in lmdz.card --> purmats=y 2 if [ $ByPass_hgardfou_mats = 1 ]
495    ByPass_hgardfou_mats=${lmdz_UserChoices_ByPass_hgardfou_mats}
496    if [ X"${ByPass_hgardfou_mats}" = X"y" ] ; then
497        sed -e "s/^purmats=.*/purmats=y/" gcm.def > gcm.def.tmp
498        IGCM_sys_Mv gcm.def.tmp gcm.def
499        echo
500        IGCM_debug_Print 1 "ByPass_hgardfou_mats : purmats=y in gcm.def"
501        echo
502        cat gcm.def
503        ByPass_hgardfou_mats=n
504        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices ByPass_hgardfou_mats "${ByPass_hgardfou_mats}"
505    fi
506
507    if ( ${FirstInitialize} ) ; then
508        if [ -f start.nc ] && [ -f startphy.nc ] ; then
509            # The restart files already exist. They have been copied from a previous run or from a CREATE job
510            echo "Restart files for LMDZ have been copied from a previous run"
511        elif [ -f create_etat0_limit* ] || [ -f ce0l* ] && [ ! -f lmdz.x ] ; then
512            # Do nothing because it is the program for creating restart files that is running and not LMDZ
513            echo "create_etat0_limit.e will create initial start files"
514        else
515            # Restart files have to be created
516            echo "Run create_etat0_limit.e to create restart files start.nc and startphy.nc for LMDZ"
517            if [ ${DRYRUN} -le 2 ] ; then
518                ##-- suppression of ozone file construction --
519                cp config.def config.def.save
520                LMDZ_sed config.def read_climoz 0
521                IGCM_sys_Cp ${R_EXE}/create_etat0_limit.e ${RUN_DIR}/.
522                if [ ${DRYRUN} -le 1 ] ; then
523                    ${HOST_MPIRUN_COMMAND} -np 1 ./create_etat0_limit.e
524                    IGCM_sys_Put_Out start.nc    ${R_OUT_ATM_R}/${config_UserChoices_JobName}_${PeriodDateBegin}_start.nc
525                    IGCM_sys_Put_Out startphy.nc ${R_OUT_ATM_R}/${config_UserChoices_JobName}_${PeriodDateBegin}_startphy.nc
526                fi
527                IGCM_sys_Mv config.def.save config.def
528            else
529                echo "EXECUTION of ${HOST_MPIRUN_COMMAND} -np 1 ./create_etat0_limit.e simulated"
530                echo "EXECUTION of ${HOST_MPIRUN_COMMAND} -np 1 ./create_etat0_limit.e simulated for DRYRUN = " $DRYRUN >> stack
531            fi
532        fi
533    fi
534
535    IGCM_debug_PopStack "ATM_Update"
536}
537
538#-----------------------------------
539function ATM_Finalize
540{
541    IGCM_debug_PushStack "ATM_Finalize"
542
543    # If the file exist, copy Bands_ file to PARAM/ in submit directory. This file will be used for the simulation.
544    # Copy also the same file into ATM/Restart at ARCHIVE directory for backup.
545    if [ -f Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat ] ; then
546      if [ ${CumulPeriod} -le ${LMDZ_NbPeriod_adjust} ] ; then
547        IGCM_sys_Cp Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat ${SUBMIT_DIR}/PARAM/${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_${CumulPeriod}
548        IGCM_sys_Put_Out Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat ${R_OUT_ATM_R}/${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_${CumulPeriod}
549      elif [ ${CumulPeriod} -eq 1 ] && [ ${LMDZ_NbPeriod_adjust} -eq 0 ] ; then
550        # Special case : first period and no adjust => Save bands file with suffix _0
551        IGCM_sys_Cp Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat ${SUBMIT_DIR}/PARAM/${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_0
552        IGCM_sys_Put_Out Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat ${R_OUT_ATM_R}/${config_UserChoices_JobName}_Bands_${RESOL_ATM_3D}_${NUM_PROC_ATM}prc.dat_0
553      fi
554    fi
555
556    # Add special treatement for CARBON CYCLE
557    if [ X"${lmdz_UserChoices_CARBON_CYCLE}" = X"control" ] || [ X"${lmdz_UserChoices_CARBON_CYCLE}" = X"historical" ] ; then
558        ATM_Carbon_Finalize
559    fi
560
561    echo FINALIZE ATM !
562
563    IGCM_debug_PopStack "ATM_Finalize"
564}
565
566
567
568function ATM_Carbon_Update
569{
570    # This fuction will be called only if CARBON_CYCLE is set to control or historical in lmdz.card
571
572    IGCM_debug_PushStack "ATM_Carbon_Update"
573
574    typeset InitPeriodCo2 InitDateBeginCo2 InitDateEndCo2
575    typeset CO2SBG CO2MBG CO2LU CO2_ppm CO2_ppm_prec fCO2_ff
576    typeset PathCO2log
577    typeset PreviousLinelog LastPeriodDateBegin LastPeriodDateEnd LastDatesPeriod LastPREFIX
578   
579    if ( ${FirstInitialize} && [ X"${config_ATM_Restart}" = X"n" ] ) ; then
580        ##--Initialization of fluxes to an undefined value at the first run
581        UndefinedValueCo2=-9999
582        InitPeriodCo2=0
583        InitDateBeginCo2=${UndefinedValueCo2}
584        InitYearCo2=$(( ${year} - 1 )) 
585        InitDateEndCo2=${InitYearCo2}1231
586        fCO2_ff=${UndefinedValueCo2} 
587        CO2SBG=${UndefinedValueCo2}
588        CO2LU=${UndefinedValueCo2}
589        CO2MBG=${UndefinedValueCo2}
590        CO2_ppm_prec=${UndefinedValueCo2}
591        # Get the initial value of atmosp. pco2
592        CO2_ppm=${lmdz_UserChoices_co2_init}
593       
594        IGCM_sys_Cp ${SUBMIT_DIR}/co2.log.init ${SUBMIT_DIR}/co2.log
595        IGCM_sys_Chmod u+w ${SUBMIT_DIR}/co2.log
596       
597        # Save CO2 values in ExeCpuLog variable contents 5 fields
598        echo "${InitPeriodCo2} ${InitDateBeginCo2} ${InitDateEndCo2} ${CO2_ppm} ${CO2_ppm_prec} ${fCO2_ff} ${CO2MBG} ${CO2SBG} ${CO2LU}" |   \
599            gawk '{printf("  %11d | %15s | %15s | %22.15g | %20.15g | %11.8g | %11.8g | %12.8g | %12.8g \n", \
600                              $1,$2,$3,$4,$5,$6,$7,$8,$9)}' >> ${SUBMIT_DIR}/co2.log
601       
602        # Get the path where the log file co2.log is
603        PathCO2log=${SUBMIT_DIR} 
604        # Get Previous line in co2.log
605        PreviousLinelog=$( tail -1 ${PathCO2log}/co2.log )
606       
607    else
608       
609        # NEW parameter in config.card (even for Overule all restarts, you must modify the line after this comment ):
610        # !! NEW for Carbone cycle !! Path where to find old co2.log file for restart CO2.
611        #SubmitRestartPath=
612        if ( ${FirstInitialize} && [ X"${config_ATM_Restart}" = X"y" ] ) ; then
613            IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/config.card ATM SubmitRestartPath
614            PathCO2log=${config_ATM_SubmitRestartPath}
615            Date_r=$( IGCM_date_ConvertFormatToGregorian ${config_ATM_RestartDate} )
616            PreviousLinelog=$( grep ${Date_r} ${PathCO2log}/co2.log )
617           
618            IGCM_sys_Cp ${SUBMIT_DIR}/co2.log.init ${SUBMIT_DIR}/co2.log
619            IGCM_sys_Chmod u+w ${SUBMIT_DIR}/co2.log
620           
621            # Save Last Line of control in new co2.log file
622            InitPeriodCo2=0   
623            InitDateBeginCo2=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $2}' )
624            InitDateEndCo2=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $3}' )
625            fCO2_ff=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $6}' )
626            CO2SBG=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $8}' )
627            CO2LU=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $9}' )
628            CO2MBG=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $7}' )
629            CO2_ppm_prec=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $5}' )
630            CO2_ppm=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $4}' )
631           
632            echo "${InitPeriodCo2} ${InitDateBeginCo2} ${InitDateEndCo2} ${CO2_ppm} ${CO2_ppm_prec} ${fCO2_ff} ${CO2MBG} ${CO2SBG} ${CO2LU}" |   \
633                gawk '{printf("  %11d | %15s | %15s | %22.15g | %20.15g | %11.8g | %11.8g | %12.8g | %12.8g \n", \
634                              $1,$2,$3,$4,$5,$6,$7,$8,$9)}' >> ${SUBMIT_DIR}/co2.log
635        else
636           # Get restart line in co2.log
637            PathCO2log=${SUBMIT_DIR}
638            PreviousLinelog=$( tail -1 ${PathCO2log}/co2.log )
639           # Get the value of atmosp. pco2 in co2.log
640            CO2_ppm=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $4}' )
641        fi
642       
643    fi
644   
645    if [ ${lmdz_UserChoices_CARBON_CYCLE} = historical ] ; then
646            # Modify co2_ppm in config.def only for historical run
647            # If not historical run, keep co2_ppm value set earlier by LMDZ_sed
648        LMDZ_sed config.def co2_ppm     ${CO2_ppm}
649    fi
650    IGCM_debug_PopStack "ATM_Carbon_Update"
651}
652
653
654function ATM_Carbon_Finalize
655{
656    # This fuction will be called only if CARBON_CYCLE is set to control or historical in lmdz.card
657
658    IGCM_debug_PushStack "ATM_Carbon_Finalize"
659
660    typeset CO2SBG_3V CO2SBG CO2MBG CO2SRF CO2LU CO2_ppm CO2_ppm_prec fCO2_ff
661   
662        # Fossil fuel emission
663    if [ ${lmdz_UserChoices_CARBON_CYCLE} = control ] ; then
664            # For Control, no fossil fuel emission :
665        fCO2_ff=0
666        echo "Fossil Fuel for control run  :" ${fCO2_ff}
667    else
668            # For historical, get the fossile fuel file :
669        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 )
670        echo "Fossil Fuel for historical run  :" ${fCO2_ff}
671    fi
672   
673        # Get the value of ocean carbon flux
674    CO2MBG=$( ${SUBMIT_DIR}/COMP/lmdz_analyse_pisces_out.awk ocean.output )
675    CO2MBG=$( echo ${CO2MBG} | sed -e "s/ *//" )
676    echo "Ocean carbon flux  :" ${CO2MBG}
677   
678        # Get the value of land fluxes
679    set +A CO2SBG_3V -- $( ${SUBMIT_DIR}/COMP/lmdz_analyse_stomate_out.awk out_orchidee_0000 )
680    CO2SRF=$( echo ${CO2SBG_3V[0]} | sed -e "s/ *//" )
681    CO2LU=$( echo ${CO2SBG_3V[1]} | sed -e "s/ *//" )
682    CO2SBG=$( echo ${CO2SBG_3V[2]} | sed -e "s/ *//" )
683    echo "Land carbon flux (NEP)         :" ${CO2SRF}
684    echo "LU flux          (FLUC)        :" ${CO2LU}
685    echo "Total Land carbon flux (NBP)   :" ${CO2SBG}
686   
687        # Previous CO2
688    CO2_ppm_prec=$( echo "${PreviousLinelog[*]}" | gawk -F '|' '{gsub(" ",""); print $4}' )
689    echo "Previous CO2  :" ${CO2_ppm_prec}
690   
691        # Formula
692    CO2_ppm=$( echo "${CO2_ppm_prec} + (${fCO2_ff} + ${CO2MBG} + ${CO2SBG}) / 2.12" | bc -l )
693    echo "New CO2  :" ${CO2_ppm}
694   
695        # Save CO2 values in ExeCpuLog variable contents 5 fields
696    echo "${CumulPeriod} ${PeriodDateBegin} ${PeriodDateEnd} ${CO2_ppm} ${CO2_ppm_prec} ${fCO2_ff} ${CO2MBG} ${CO2SBG} ${CO2LU}" |   \
697        gawk '{printf("  %11d | %15s | %15s | %22.15g | %20.15g | %11.8g | %11.8g | %12.8g | %12.8g \n", \
698                           $1,$2,$3,$4,$5,$6,$7,$8,$9)}' >> ${SUBMIT_DIR}/co2.log
699   
700    IGCM_debug_PopStack "ATM_Carbon_Finalize"
701}
Note: See TracBrowser for help on using the repository browser.