source: CONFIG/UNIFORM/v6/IPSLCM6/GENERAL/DRIVER/opa9.driver @ 2819

Last change on this file since 2819 was 2819, checked in by aclsce, 8 years ago

Cleaning in IPSLCM6 configuration

File size: 7.2 KB
Line 
1#!/bin/ksh
2#-----------------------------------------------------------------
3function OCE_Initialize
4{
5    IGCM_debug_PushStack "OCE_Initialize"
6
7    JOB_NAME=${config_UserChoices_JobName}
8
9    RESOL_OCE_ICE=$( echo ${RESOL} | awk "-Fx" '{print $1}' )
10    case ${RESOL_OCE_ICE} in
11        ( *LIM2* ) SEAICE_MODEL=LIM2 ;  LIM_VERSION=2 ;;
12        ( *LIM3* ) SEAICE_MODEL=LIM3 ;  LIM_VERSION=3 ;;
13        ( *CICE* ) SEAICE_MODEL=CICE                  ;;
14        ( *      ) SEAICE_MODEL=UNKNOWN               ;;
15    esac
16    RESOL_OCE=$( echo ${RESOL_OCE_ICE} | sed "s/${SEAICE_MODEL}//" )
17
18    IGCM_debug_Print 1 "RESOL          : ${RESOL}"
19    IGCM_debug_Print 1 "RESOL_OCE_ICE  : ${RESOL_OCE_ICE}"
20    IGCM_debug_Print 1 "SEAICE_MODEL   : ${SEAICE_MODEL}"
21    IGCM_debug_Print 1 "LIM_VERSION    : ${LIM_VERSION}"
22    IGCM_debug_Print 1 "RESOL_OCE      : ${RESOL_OCE}"
23
24    # Local function to find namelists parameters
25    #supergrep () { grep "^ *$1 *=" $2 | sed -e "s% *\!.*%%" ; }
26    supergrep () { grep "^ *$1 *=" $2 | sed -e "s% *\!.*%%" -e "s%^ *$1 *=%%" ; }
27    ##--Variables used by OPA --
28    NAMELIST_OPA_CFG=${SUBMIT_DIR}/PARAM/namelist_${RESOL_OCE}_cfg
29    IGCM_debug_Print 1 "namelist_cfg : ${NAMELIST_OPA_CFG}"
30    if [ ! -r ${NAMELIST_OPA_CFG} ] ; then
31        IGCM_debug_Exit "${NAMELIST_OPA_CFG} not found"
32        IGCM_debug_Verif_Exit
33    fi
34    OPA_RDT=$(       supergrep rn_rdt        ${NAMELIST_OPA_CFG} )
35    OPA_NN_FSBC=$(   supergrep nn_fsbc       ${NAMELIST_OPA_CFG} )
36    #
37    # OPA_RDT=$(       supergrep rn_rdt        namelist_cfg )
38    # OPA_NN_FSBC=$(   supergrep nn_fsbc       namelist_cfg )
39    (( OPA_NPDT_JOUR  =  86400 / OPA_RDT        ))
40    (( OPA_RDT_SBC    =  OPA_RDT * OPA_NN_FSBC ))
41 
42    # Period Length In Days between DateBegin and first day of calendar 0001 01 01
43    # /!\ Needed by OPA namelist to compute file names /!\
44    (( DaysSinceJC = $( IGCM_date_DaysSinceJC ${DateBegin} ) + 1 ))
45
46    IGCM_debug_Print 1 " "
47    IGCM_debug_Print 1 "OPA_RDT        ${OPA_RDT}"
48    IGCM_debug_Print 1 "OPA_NN_FSBC    ${OPA_NN_FSBC}"
49    IGCM_debug_Print 1 "OPA_RDT_SBC    ${OPA_RDT_SBC}"
50    IGCM_debug_Print 1 "OPA_NPDT_JOUR  ${OPA_NPDT_JOUR}"
51    IGCM_debug_Print 1 "DaysSinceJC    ${DaysSinceJC}"
52
53    ## Check that nn_fsbc is correct compare to coupling frequency
54    FreqCoupling=${oasis_UserChoices_FreqCoupling:-86400}
55   
56    ## This informations are used for diaptr, trends and diagap files
57    ## only the first frequency is used for this files
58   
59    IGCM_debug_Print 1 "FreqCoupling    ${FreqCoupling}"
60    IGCM_debug_Print 1 "OPA_NN_FSBC    ${OPA_NN_FSBC}"
61    IGCM_debug_Print 1 "OPA_RDT        ${OPA_RDT}"
62    IGCM_debug_Print 1 "OPA_RDT_SBC    ${OPA_RDT_SBC}"
63   
64    if [[ ${OPA_RDT_SBC} -gt ${FreqCoupling} ]] ; then
65        IGCM_debug_Exit "OPA_RDT_SBC=${OPA_RDT_SBC} is greater than FreqCoupling=${FreqCoupling}"
66        IGCM_debug_Verif_Exit
67    fi
68   
69    IGCM_debug_PopStack "OCE_Initialize"
70   
71}
72
73#-----------------------------------------------------------------
74function OCE_Update
75{
76    IGCM_debug_PushStack "OCE_Update"
77 
78    ##--Write Frequency for iomput
79    ## Differents frequencies are allowed for grid_[TUVW] and icemod files
80
81    V1D_ENABLE=".FALSE."
82    V1M_ENABLE=".FALSE."
83    V1Y_ENABLE=".FALSE."
84
85    for frequency in ${config_OCE_WriteFrequency} ; do
86        case ${frequency} in
87            ( 1D|1d ) V1D_ENABLE=".TRUE." ;;
88            ( 1M|1m ) V1M_ENABLE=".TRUE." ;;
89            ( *[yY] ) V1Y_ENABLE=".TRUE." ;;
90        esac
91    done
92
93    # Period Length In Days between DateBegin and first day of calendar 0001 01 01
94    # Needed by OPA namelist to compute correct file names
95    (( PeriodDaysSinceJC =  $( IGCM_date_DaysSinceJC ${PeriodDateBegin} ) + 1  ))
96
97    ##-- Number of time steps updated : the first, the last and the number of time steps
98    (( OPA_NIT000 = ( PeriodDaysSinceJC - DaysSinceJC ) * OPA_NPDT_JOUR + 1 ))
99    (( OPA_NPDT   = PeriodLengthInDays * OPA_NPDT_JOUR ))
100    (( OPA_NITEND = OPA_NIT000 + OPA_NPDT - 1))
101
102    ##-- We force one restart file at the end of the trunk
103    OPA_NSTOCK="${OPA_NITEND}"
104
105    ##-- Restart configuration
106    if ( [ "${CumulPeriod}" -eq 1 ] && [ "${config_OCE_Restart}" = "n" ] ) ; then
107        OPA_LRSTAR=.FALSE.
108        OPA_NRSTDT=0
109        # Put OPA_NMSH=0 when OPA running in parallel mode
110        OPA_NMSH=1
111        #echo "NO OPA RESTART"
112    elif ( [ "${CumulPeriod}" -eq 1 ] && [ "${config_OCE_Restart}" = "y" ] ) ; then
113        OPA_LRSTAR=.TRUE.
114        OPA_NRSTDT=0
115        OPA_NMSH=1
116        #echo "OPA RESTART"
117    else
118        OPA_LRSTAR=.TRUE.
119        OPA_NRSTDT=2
120        OPA_NMSH=0
121        #echo "OPA RESTART"
122    fi
123
124    ##-- Meshmask option
125    IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/opa9.card UserChoices mesh_mask
126
127    if [ "${opa9_UserChoices_mesh_mask}" = "y" ]; then
128        OPA_NMSH=1
129        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/opa9.card UserChoices mesh_mask "n"
130    fi
131
132    # nleapy configuration
133    case ${config_UserChoices_CalendarType} in
134        ( leap|gregorian) OPA_NLEAPY=1  ;;
135        ( noleap        ) OPA_NLEAPY=0  ;;
136        ( 360d          ) OPA_NLEAPY=30 ;;
137        ( *             ) OPA_NLEAPY=30 ;;
138    esac
139
140    typeset -r PRECIS=8
141    NEMO_END=$( echo $( awk "BEGIN { printf \"%0${PRECIS}d\",${OPA_NITEND} }" ) ) 
142
143    IGCM_comp_modifyNamelist blocker    namelist_cfg cn_exp    ${config_UserChoices_JobName}
144    IGCM_comp_modifyNamelist blocker    namelist_cfg nn_it000  ${OPA_NIT000}
145    IGCM_comp_modifyNamelist blocker    namelist_cfg nn_itend  ${OPA_NITEND}
146    IGCM_comp_modifyNamelist blocker    namelist_cfg ln_rstart ${OPA_LRSTAR}
147    IGCM_comp_modifyNamelist blocker    namelist_cfg nn_stock  ${OPA_NSTOCK}
148    IGCM_comp_modifyNamelist blocker    namelist_cfg nn_rstctl ${OPA_NRSTDT}
149    IGCM_comp_modifyNamelist blocker    namelist_cfg nn_date0  ${PeriodDateBegin}
150    IGCM_comp_modifyNamelist nonblocker namelist_cfg nn_msh    ${OPA_NMSH}
151    IGCM_comp_modifyNamelist nonblocker namelist_cfg nn_rnf_depth_file  ${OPA_NMSH}
152    IGCM_comp_modifyNamelist blocker    namelist_cfg nn_leapy  ${OPA_NLEAPY}
153   
154    # Update iodef.xml
155
156    IGCM_debug_Print 1 'Informations into iodef.xml : V1D_ENABLE V1M_ENABLE V1Y_ENABLE '
157    IGCM_debug_Print 1 ${V1D_ENABLE} ${V1M_ENABLE} ${V1Y_ENABLE}
158
159    IGCM_comp_modifyXmlFile nonblocker file_def_nemo.xml 1d enabled ${V1D_ENABLE}
160    IGCM_comp_modifyXmlFile nonblocker file_def_nemo.xml 1m enabled ${V1M_ENABLE}
161    IGCM_comp_modifyXmlFile nonblocker file_def_nemo.xml 1y enabled ${V1Y_ENABLE}
162       
163    # vargas/titane/MPP and switch from 1 proc to 5 procs. We need to suppres restartopa the second month, if restartopa_0000 exist
164    # same thing for restart_trc and restart_ice_in
165
166    for restartfilenemo in restartopa restart_trc restart_ice_in ; do
167      [ -f ${restartfilenemo}.nc ] && [ -f ${restartfilenemo}_0000.nc ] && IGCM_sys_Rm -f ${restartfilenemo}.nc
168    done
169
170    # Add include of nemo context in iodef.xml
171    # In iodef.xml add on next line after "COMPONENT CONTEXT"
172    #  <context id="nemo" src="./context_nemo.xml"/>
173    echo '<context id="nemo" src="./context_nemo.xml"/>' > add.tmp
174    cp iodef.xml iodef.xml.tmp
175    sed -e "/COMPONENT CONTEXT/r add.tmp" \
176        iodef.xml.tmp > iodef.xml
177    rm iodef.xml.tmp add.tmp
178
179    IGCM_debug_PopStack "OCE_Update"
180}
181
182#-----------------------------------
183function OCE_Finalize
184{
185    IGCM_debug_PushStack "OCE_Finalize"
186
187    IGCM_debug_Print 1 FINALIZE OCE !!!
188
189    IGCM_debug_PopStack "OCE_Finalize"
190}
Note: See TracBrowser for help on using the repository browser.