source: CONFIG/UNIFORM/v7/ICOLMDZOR_v7/GENERAL/DRIVER/dynamico.driver @ 4599

Last change on this file since 4599 was 4599, checked in by jgipsl, 5 years ago

Parameters optim_it and read_metric(new) are now changed by the driver depending on if the run is create_etat0_limit true or false.

File size: 5.4 KB
Line 
1#!/bin/ksh
2#-----------------------------------------------------------------
3function ICO_Initialize
4{
5    IGCM_debug_PushStack "ICO_Initialize"
6
7    ##- Horizontal resolution read from dynamic.card
8    if [ ! X${dynamico_UserChoices_RESOL_NBP} = X ] ; then
9        RESOL_NBP=${dynamico_UserChoices_RESOL_NBP}
10    else
11        # Exit
12        IGCM_debug_Exit "RESOL_NBP must be set in dynamico.card UserSection"
13    IGCM_debug_Verif_Exit
14    fi
15
16    ##- Horizontal resolution read from dynamico.card
17    if [ ! X${dynamico_UserChoices_RESOL_ATM_Z} = X ] ; then
18        RESOL_ATM_Z=${dynamico_UserChoices_RESOL_ATM_Z}
19    else
20        # RESOL_ATM_Z is not set in dynamico.card but this is needed
21        IGCM_debug_Exit "RESOL_ATM_Z must be set in dynamico.card UserSection"
22        IGCM_debug_Verif_Exit
23    fi
24
25    IGCM_debug_PopStack "ICO_Initialize"
26}
27
28#-----------------------------------------------------------------
29function ICO_Update
30{
31    IGCM_debug_PushStack "ICO_Update"
32
33    # Reset date from start.nc file on the first iteration in the simulation
34    if [ ${CumulPeriod} -eq 1 ] ; then
35        IGCM_comp_modifyDefFile blocker run_dynamico.def etat0_start_iteration_reset y
36    else
37        IGCM_comp_modifyDefFile blocker run_dynamico.def etat0_start_iteration_reset n
38    fi
39
40    # Set lenght for execution
41    IGCM_comp_modifyDefFile blocker run_dynamico.def run_length $(( ${PeriodLengthInDays} * 86400 ))
42
43    # Change run_dynamico.def according to UserChoices options set in dynmaico.card
44   
45    # Set create_etat0_limit=y or n and
46    if [ X${dynamico_UserChoices_create_etat0_limit} = Xy ] ; then 
47        # create_etat0_limit is set in dynamcio.card to y
48        # Activate create_etat0_limit=y in run_dynamico.def
49        IGCM_comp_modifyDefFile nonblocker run_dynamico.def create_etat0_limit y
50
51        # Use iflag_phys=101 or higher to activate aquaplanet mode
52        if [ X${dynamico_UserChoices_iflag_phys} = X ] || [ X${dynamico_UserChoices_iflag_phys} = X1 ]; then 
53            # iflag_phys is not set or iflag_phys=1 => run is not an aquaplanet
54            IGCM_comp_modifyDefFile nonblocker run_dynamico.def etat0              database
55            IGCM_comp_modifyDefFile nonblocker run_dynamico.def iflag_phys         1
56        else
57            # This is an aquaplanet
58            IGCM_comp_modifyDefFile nonblocker run_dynamico.def etat0              held_suarez
59            IGCM_comp_modifyDefFile nonblocker run_dynamico.def iflag_phys         ${dynamico_UserChoices_iflag_phys}
60        fi
61
62        # Optimize the grid: set read_metric=n and optim_it=100000     
63        IGCM_comp_modifyDefFile nonblocker   run_dynamico.def   read_metric  n
64        IGCM_comp_modifyDefFile nonblocker   run_dynamico.def   optim_it     100000
65    else
66        # Deactivate create_etat0_limit to run a the GCM (aquaplanet or not)
67        IGCM_comp_modifyDefFile nonblocker run_dynamico.def create_etat0_limit   n
68        IGCM_comp_modifyDefFile nonblocker run_dynamico.def etat0                start_file
69
70        # Set iflag_phys even though it only will be read but not used for the case create_etat0_limit=n
71        if [ X${dynamico_UserChoices_iflag_phys} = X ] ||  X${dynamico_UserChoices_iflag_phys} = X1 ]; then 
72            # iflag_phys is not set or iflag_phys=1 => run is not an aquaplanet
73            IGCM_comp_modifyDefFile nonblocker run_dynamico.def iflag_phys           1
74        else
75            IGCM_comp_modifyDefFile nonblocker run_dynamico.def iflag_phys         ${dynamico_UserChoices_iflag_phys}
76        fi     
77
78        # Read grid from start.nc file: set read_metric=y and optim_it=0       
79        IGCM_comp_modifyDefFile nonblocker   run_dynamico.def   read_metric  y
80        IGCM_comp_modifyDefFile nonblocker   run_dynamico.def   optim_it     0
81    fi 
82
83
84    # Add include of context xml files for DYNAMICO in iodef.xml
85    # In iodef.xml add on the next line after "COMPONENT CONTEXT"
86    echo '<context id="icosagcm" src="./context_dynamico.xml"/>' >> add.tmp
87
88    # Add inclusion of file context_input_dynamico.xml if this file exists
89    if [ -f context_input_dynamico.xml ] ; then
90        echo '<context id="icosagcm" src="./context_input_dynamico.xml"/>' >> add.tmp
91    fi
92
93    # Include xml files for output configuration if running with workflow CMIP6
94    if [ X"$( echo ${config_UserChoices_ExpType} | grep CMIP6 )" != "X" ] ; then
95      if [ -f ping_dynamico.xml ] ; then
96        echo '<context id="icosagcm" src="./ping_dynamico.xml"/>' >> add.tmp
97        echo '<context id="icosagcm" src="./dr2xml_dynamico.xml"/>' >> add.tmp
98      fi
99    fi
100    cp iodef.xml iodef.xml.tmp
101    sed -e "/COMPONENT CONTEXT/r add.tmp" iodef.xml.tmp > iodef.xml
102    rm iodef.xml.tmp add.tmp
103
104    # Add a Long Name as global attribute in output files if LongName is set in config.card
105    if [ ! "X${config_UserChoices_LongName}" = "X" ] ; then
106      listfile=$(ls file_def*dynamico.xml)
107      echo "<variable id=\"LongName\" type=\"string\">${config_UserChoices_LongName}</variable>" > add.tmp
108      for file in ${listfile} ; do
109          cp ${file} ${file}.tmp
110          sed -e "/<file id/r add.tmp" \
111          ${file}.tmp > ${file}
112          rm ${file}.tmp
113      done
114      rm add.tmp
115    fi
116
117
118    # Compression level (if CompressionLevel is not empty)
119    if [ ! "X${config_UserChoices_CompressionLevel}" = "X" ] ; then
120        echo "NetCDF output files compression level is " ${config_UserChoices_CompressionLevel}
121        listfile=$(ls file_def*dynamico.xml)
122        for file in ${listfile} ; do
123            sed -i -e "s/\(compression_level=\"\)[^\"]*\(\"\)/\1${config_UserChoices_CompressionLevel}\2/" ${file}
124        done
125    fi
126
127    IGCM_debug_PopStack "ICO_Update"
128}
129
130#-----------------------------------
131function ICO_Finalize
132{
133    IGCM_debug_PushStack "ICO_Finalize"
134
135    IGCM_debug_PopStack "ICO_Finalize"
136}
137
Note: See TracBrowser for help on using the repository browser.