source: CMIP6/AerChemMIP/CM5A2CHT1-VLR-ssp370-lowNTCFCH4-01/DRIVER/orchidee.driver @ 5887

Last change on this file since 5887 was 5887, checked in by acosce, 3 years ago

simulation ssp370-lowNTCFCH4 configuration IPSLCM5A2CHT

File size: 5.7 KB
Line 
1#!/bin/ksh
2#D- Driver du script pour ORCHIDEE
3#-----------------------------------------------------------------
4function SRF_Initialize
5{
6    IGCM_debug_PushStack "SRF_Initialize"
7
8    ##- Define variable DefSuffix set in orchidee.card
9    ##  This variable is used in orchidee.card to choose
10    ##  parameter file(orchidee.def_DefSuffix).
11    if [ ! X${orchidee_UserChoices_DefSuffix} = X ] ; then
12        DefSuffix=${orchidee_UserChoices_DefSuffix}
13    else
14        DefSuffix=Choi
15    fi
16
17    IGCM_debug_PopStack "SRF_Initialize"
18}
19
20#-----------------------------------------------------------------
21function SRF_Update
22{
23    IGCM_debug_PushStack "SRF_Update"
24
25    ## 1. Modifications in orchidee.def parameter file
26
27    # Activate STOMATE if the compontent SBG=stomate is set in config.card
28    if [ X${config_ListOfComponents_SBG} = Xstomate ] ; then
29        # Activate stomate in orchidee.def
30        IGCM_comp_modifyDefFile blocker orchidee.def STOMATE_OK_STOMATE y
31    else
32        # Deactivate stomate in orchidee.def
33        IGCM_comp_modifyDefFile blocker orchidee.def STOMATE_OK_STOMATE n
34        # Deactivate output files for stomate
35        IGCM_comp_modifyXmlFile nonblocker file_def_orchidee.xml stomate1 enabled .FALSE.
36        IGCM_comp_modifyXmlFile nonblocker file_def_orchidee.xml stomate1 output_freq 1mo
37        IGCM_comp_modifyXmlFile nonblocker file_def_orchidee.xml stomate2 enabled .FALSE.
38        IGCM_comp_modifyXmlFile nonblocker file_def_orchidee.xml stomate2 output_freq 1mo
39    fi
40
41    # Define in orchidee.def if restart file should be used
42    if ( [ ${CumulPeriod} -ne 1 ] || [ "${config_SRF_Restart}" != "n" ] ) ; then
43        IGCM_comp_modifyDefFile blocker orchidee.def SECHIBA_restart_in sechiba_rest_in.nc
44    else
45        IGCM_comp_modifyDefFile blocker orchidee.def SECHIBA_restart_in NONE
46    fi
47
48    # Modify in orchidee.def VEGET_UPDATE if it is set in orchidee.card section UserChoices
49    if [ ! X${orchidee_UserChoices_VEGET_UPDATE} = X ] ; then
50        IGCM_comp_modifyDefFile nonblocker orchidee.def VEGET_UPDATE   ${orchidee_UserChoices_VEGET_UPDATE}
51    else
52        IGCM_comp_modifyDefFile nonblocker orchidee.def VEGET_UPDATE 0Y
53    fi
54
55    # Activate creation of river description file only for the first period
56    if [ ${CumulPeriod} -eq 1 ] ; then
57        IGCM_comp_modifyDefFile nonblocker orchidee.def RIVER_DESC y
58    else
59        IGCM_comp_modifyDefFile nonblocker orchidee.def RIVER_DESC n
60    fi
61
62    # Activate calcul of chemistry BVOC
63    if [ ! X${orchidee_UserChoices_CHEMISTRY_BVOC} = X ] ; then
64        IGCM_comp_modifyDefFile nonblocker orchidee.def CHEMISTRY_BVOC ${orchidee_UserChoices_CHEMISTRY_BVOC}
65    else
66        IGCM_comp_modifyDefFile nonblocker orchidee.def CHEMISTRY_BVOC n
67    fi
68
69    ## 2. Mangement of output and modifications of related xml files
70
71    # Set default values for sechiba1_enabled, sechiba1_freq and sechiba2_enabled.
72    sechiba1_enabled=.FALSE.
73    sechiba2_enabled=.FALSE.
74    sechiba1_freq=0s
75
76    # Get WriteFrenquecies from config.card for SECHIBA
77    # Note that it is only possible to have one HF and one other option.
78    # If more options are set in config.card only the latest will be used.
79    for frequency in ${config_SRF_WriteFrequency} ; do
80        case ${frequency} in
81            *Y|*y) 
82                NbYears=$( echo ${frequency} | awk -F '[yY]' '{print $1}' )
83                NbDaysYear=$( IGCM_date_DaysInYear ${year} )
84                sechiba1_enabled=.TRUE.
85                sechiba1_freq=${NbYears}y ;;
86            *M|*m)
87                NbMonths=$( echo ${frequency} | awk -F '[mM]' '{print $1}' )
88                sechiba1_enabled=.TRUE.
89                sechiba1_freq=${NbMonths}mo ;;
90            *D|*d)
91                NbDays=$( echo ${frequency} | awk -F '[dD]' '{print $1}' )
92                sechiba1_enabled=.TRUE.
93                sechiba1_freq=${NbDays}d ;;
94            *s)
95                WriteInSeconds=$( echo ${frequency} | awk -F '[s]' '{print $1}' )
96                sechiba1_enabled=.TRUE.
97                sechiba1_freq=${WriteInSeconds}s ;;
98            HF|hf) 
99                sechiba2_enabled=.TRUE. ;;
100            *) 
101                IGCM_debug_Exit "SRF WriteFrequency=${frequency} is invalid. Choose between xY, xM, xD, xs and HF for Sechiba." ;;
102        esac
103    done
104
105    # Do the modifications in file_def_orchidee.xml
106    IGCM_comp_modifyXmlFile nonblocker file_def_orchidee.xml sechiba1 enabled ${sechiba1_enabled}
107    IGCM_comp_modifyXmlFile nonblocker file_def_orchidee.xml sechiba1 output_freq ${sechiba1_freq}
108    IGCM_comp_modifyXmlFile nonblocker file_def_orchidee.xml sechiba2 enabled ${sechiba2_enabled}
109
110    # Add include of orchidee context in iodef.xml
111    # In iodef.xml add on the next line after "COMPONENT CONTEXT"
112    echo '<context id="orchidee" src="./context_orchidee.xml"/>' > add.tmp
113    # Add inclusion of file context_input_orchidee.xml if this file exists
114    if [ -f context_input_orchidee.xml ] ; then
115        echo '<context id="orchidee" src="./context_input_orchidee.xml"/>' >> add.tmp
116    fi
117    # Include xml files for output configuration if running with workflow CMIP6
118    if [ X"$( echo ${config_UserChoices_ExpType} | grep CMIP6 )" != "X" ] ; then
119        echo '<context id="orchidee" src="./ping_orchidee.xml"/>' >> add.tmp
120        echo '<context id="orchidee" src="./dr2xml_orchidee.xml"/>' >> add.tmp
121    fi
122    cp iodef.xml iodef.xml.tmp
123    sed -e "/COMPONENT CONTEXT/r add.tmp" iodef.xml.tmp > iodef.xml
124    rm iodef.xml.tmp add.tmp
125
126    #Long Name as global attribute (if LongName is not empty)
127        if [ ! "X${config_UserChoices_LongName}" = "X" ] ; then
128            listfile=$(ls file_def*orchidee.xml)
129            echo "<variable id=\"LongName\" type=\"string\">${config_UserChoices_LongName}</variable>" > add.tmp
130            for file in ${listfile}
131            do
132                cp ${file} ${file}.tmp
133                sed -e "/<file id/r add.tmp" \
134                    ${file}.tmp > ${file}
135                rm ${file}.tmp
136            done
137            rm add.tmp
138        fi
139
140    IGCM_debug_PopStack "SRF_Update"
141}
142
143#-----------------------------------------------------------------
144function SRF_Finalize
145{
146    IGCM_debug_PushStack "SRF_Finalize"
147
148    IGCM_debug_PopStack "SRF_Finalize"
149}
Note: See TracBrowser for help on using the repository browser.