source: CONFIG/UNIFORM/v6/IPSLCM6CHT/GENERAL/DRIVER/opa9.driver @ 2456

Last change on this file since 2456 was 2456, checked in by acosce, 9 years ago

Add new configuration IPSLCM6CHT

File size: 12.9 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* )
12        SEAICE_MODEL=LIM2
13        LIM_VERSION=2
14        ;;
15
16        ( *LIM3* )
17        SEAICE_MODEL=LIM3
18        LIM_VERSION=3
19        ;;
20        ( *CICE*) SEAICE_MODEL=CICE ;;
21        ( *     ) SEAICE_MODEL=UNKNOWN ;;
22    esac
23    RESOL_OCE=$( echo ${RESOL_OCE_ICE} | sed "s/${SEAICE_MODEL}//" )
24
25    IGCM_debug_Print 1 "RESOL          : ${RESOL}"
26    IGCM_debug_Print 1 "RESOL_OCE_ICE  : ${RESOL_OCE_ICE}"
27    IGCM_debug_Print 1 "SEAICE_MODEL   : ${SEAICE_MODEL}"
28    IGCM_debug_Print 1 "LIM_VERSION    : ${LIM_VERSION}"
29    IGCM_debug_Print 1 "RESOL_OCE      : ${RESOL_OCE}"
30
31    # Local function to find namelists parameters
32    supergrep () {
33        grep "^ *$1 *=" $2 | sed -e "s% *\!.*%%"
34    }
35
36    ##--Variables used by OPA --
37
38    # cn_exp    experience name
39    # nn_it000  number of the first time step
40    # nn_itend  number of the last time step
41    # nn_date0  initial calendar date yymmdd (used if  nn_rstctl=1)
42    # nn_leapy  Leap year calendar (1) or not (0), or 360 days calendar (30)
43    # nn_stock  frequency of creation of a restart file (modulo referenced to 1)
44    # nn_write  frequency of write in the output file   (modulo referenced to nn_it000)
45    # ln_rstart start from rest (F) or from a restart file (T)
46    # nn_rstctl restart control = 0 nn_it000 is not compared to the restart file value
47    #                           = 1 use nn_date0 in namelist_cfg (not the value in the restart file)
48    #                           = 2 calendar parameters read in the restart file
49    # nn_msh    =1 create a mesh file (coordinates, scale factors, masks)
50    # rn_rdt    time step in seconds for the dynamics (and tracer if nacc=0)   ==> 5760 (coming from namelist)
51    # nn_prg    time-step frequency of gap print in model output
52    # nn_fwri   frequency of zonal means and transport output
53
54    NAMELIST_OPA_CFG=${SUBMIT_DIR}/PARAM/namelist_${RESOL_OCE}_cfg
55    NAMELIST_OPA_REF=${SUBMIT_DIR}/PARAM/namelist_${RESOL_OCE}_ref
56    IGCM_debug_Print 1 "namelist_ref : ${NAMELIST_OPA_REF}"
57    if [ ! -r ${NAMELIST_OPA_REF} ] ; then
58        echo "${NAMELIST_OPA_REF} non trouve"
59    fi
60    IGCM_debug_Print 1 "namelist_cfg : ${NAMELIST_OPA_CFG}"
61    if [ ! -r ${NAMELIST_OPA_CFG} ] ; then
62        echo "${NAMELIST_OPA_CFG} non trouve"
63    fi
64
65    PAT_CEXPER=$(   supergrep cn_exp      ${NAMELIST_OPA_CFG} )
66    PAT_NIT000=$(   supergrep nn_it000    ${NAMELIST_OPA_CFG} )
67    PAT_NITEND=$(   supergrep nn_itend    ${NAMELIST_OPA_CFG} )
68    PAT_NDATE0=$(   supergrep nn_date0    ${NAMELIST_OPA_CFG} )
69    PAT_NLEAPY=$(   supergrep nn_leapy    ${NAMELIST_OPA_CFG} )
70    PAT_NSTOCK=$(   supergrep nn_stock    ${NAMELIST_OPA_CFG} )
71    PAT_NWRITE=$(   supergrep nn_write    ${NAMELIST_OPA_CFG} )
72    PAT_RESTAR=$(   supergrep ln_rstart   ${NAMELIST_OPA_CFG} )
73    PAT_NRSTAR=$(   supergrep nn_rstctl   ${NAMELIST_OPA_CFG} )
74    PAT_NMSH=$(     supergrep nn_msh      ${NAMELIST_OPA_CFG} )
75    PAT_NN_WRITE=$( supergrep nn_write    ${NAMELIST_OPA_CFG} )
76    PAT_NN_FWRI=$(  supergrep nn_fwri     ${NAMELIST_OPA_CFG} )
77    PAT_ICE_EMBD=$( supergrep nn_ice_embd ${NAMELIST_OPA_CFG} )
78    PAT_ICEFLX=$(   supergrep cn_iceflx   ${NAMELIST_OPA_CFG} )
79    PAT_JPNI=$(     supergrep jpni        ${NAMELIST_OPA_CFG} )
80    PAT_JPNJ=$(     supergrep jpnj        ${NAMELIST_OPA_CFG} )
81    PAT_JPNIJ=$(    supergrep jpnij       ${NAMELIST_OPA_CFG} )
82    PAT_NN_FSBC=$(  supergrep nn_fsbc     ${NAMELIST_OPA_CFG} ) 
83
84    ORCA_RDT=$(       supergrep rn_rdt        ${NAMELIST_OPA_CFG} | sed 's/ *rn_rdt *=//'  | sed 's/\. *//' )
85    ORCA_NN_FSBC=$(   supergrep nn_fsbc       ${NAMELIST_OPA_CFG} | sed 's/ *nn_fsbc *=//' | sed 's/\. *//' )
86    (( ORCA_NPDT_JOUR  = 86400 / ORCA_RDT     ))
87    #(( ORCA_NPDT_SBC   = ORCA_NPDT_JOUR / ORCA_NN_FSBC ))
88    (( ORCA_RDT_SBC =  ORCA_RDT * ORCA_NN_FSBC ))
89 
90
91    # Period Length In Days between DateBegin and first day of calendar 0001 01 01
92    # /!\ Needed by OPA namelist to compute file names /!\
93    (( DaysSinceJC = $( IGCM_date_DaysSinceJC ${DateBegin} ) + 1 ))
94
95    IGCM_debug_Print 1 "PAT_CEXPER   $PAT_CEXPER "
96    IGCM_debug_Print 1 "PAT_NIT000   $PAT_NIT000"
97    IGCM_debug_Print 1 "PAT_NITEND   $PAT_NITEND"
98    IGCM_debug_Print 1 "PAT_NDATE0   $PAT_NDATE0"
99    IGCM_debug_Print 1 "PAT_NLEAPY   $PAT_NLEAPY"
100    IGCM_debug_Print 1 "PAT_NSTOCK   $PAT_NSTOCK"
101    IGCM_debug_Print 1 "PAT_NWRITE   $PAT_NWRITE"
102    IGCM_debug_Print 1 "PAT_RESTAR   $PAT_RESTAR"
103    IGCM_debug_Print 1 "PAT_NRSTAR   $PAT_NRSTAR"
104    IGCM_debug_Print 1 "PAT_NMSH     $PAT_NMSH"
105    IGCM_debug_Print 1 "PAT_NN_WRITE $PAT_NN_WRITE"
106    IGCM_debug_Print 1 "PAT_NN_FWRI  $PAT_NN_FWRI"
107    IGCM_debug_Print 1 "PAT_ICE_EMBD $PAT_ICE_EMBD"
108    IGCM_debug_Print 1 "PAT_ICEFLX   $PAT_ICEFLX"
109    IGCM_debug_Print 1 "PAT_JPNI     $PAT_JPNI"
110    IGCM_debug_Print 1 "PAT_JPNJ     $PAT_JPNJ"
111    IGCM_debug_Print 1 "PAT_JPNIJ    $PAT_JPNIJ"
112    IGCM_debug_Print 1 "PAT_NN_FSBC  $PAT_NN_FSBC"
113    IGCM_debug_Print 1 " "
114    IGCM_debug_Print 1 "ORCA_RDT        $ORCA_RDT"
115    IGCM_debug_Print 1 "ORCA_NN_FSBC    $ORCA_NN_FSBC"
116    IGCM_debug_Print 1 "ORCA_RDT_SBC    $ORCA_RDT_SBC"
117    IGCM_debug_Print 1 "ORCA_NPDT_JOUR  $ORCA_NPDT_JOUR"
118    IGCM_debug_Print 1 "DaysSinceJC     $DaysSinceJC"
119   
120    IGCM_debug_PopStack "OCE_Initialize"
121   
122}
123
124#-----------------------------------------------------------------
125function OCE_Update
126{
127    IGCM_debug_PushStack "OCE_Update"
128
129    ## Check that nn_fsbc is correct compare to coupling frequency
130
131    FreqCoupling=${oasis_UserChoices_FreqCoupling:-86400}
132
133    ## This informations are used for diaptr, trends and diagap files
134    ## only the first frequency is used for this files
135   
136    IGCM_debug_Print 1 "FreqCoupling    $FreqCoupling"
137    IGCM_debug_Print 1 "ORCA_NN_FSBC    $ORCA_NN_FSBC"
138    IGCM_debug_Print 1 "ORCA_RDT        $ORCA_RDT"
139    IGCM_debug_Print 1 "ORCA_RDT_SBC    $ORCA_RDT_SBC"
140
141    if [[ ${ORCA_RDT_SBC} -gt ${FreqCoupling} ]] ; then
142        IGCM_debug_Exit "ORCA_RDT_SBC=${ORCA_RDT_SBC} is greater than FreqCoupling=${FreqCoupling}"
143        IGCM_debug_Verif_Exit
144    fi
145   
146    ##--Write Frequency Purpose ....
147    frequency=$( echo ${config_OCE_WriteFrequency} | awk "-F " '{print $1}' )
148    factor=$( echo ${frequency} | sed -e "s/[yYmMdD]//" )
149    case ${frequency} in
150        1Y|1y)
151            (( ORCA_NWRITE = ORCA_NPDT_JOUR * factor * $( IGCM_date_DaysInYear  ${year} ) ))          ;
152            PREFIX_NWRITE=${config_UserChoices_JobName}_${factor}y ;
153            R_OUT_OCE_NWRITE=${R_OUT_OCE_O_Y} ;
154            WF1=${factor}Y ;;
155        1M|1m)
156            (( ORCA_NWRITE = ORCA_NPDT_JOUR * factor * $( IGCM_date_DaysInMonth ${year} ${month} ) )) ;
157            PREFIX_NWRITE=${config_UserChoices_JobName}_${factor}m ;
158            R_OUT_OCE_NWRITE=${R_OUT_OCE_O_M} ;
159            WF1=${factor}M ;;
160        *D|*d)
161            (( ORCA_NWRITE = ORCA_NPDT_JOUR * factor  ))  ;
162            PREFIX_NWRITE=${config_UserChoices_JobName}_${factor}d ;
163            R_OUT_OCE_NWRITE=${R_OUT_OCE_O_D} ;
164            WF1=${factor}D ;;
165        *)
166            (( ORCA_NWRITE = 0 ))                                                            ;;
167    esac
168
169    ##--Write Frequency for iomput
170    ## Differents frequencies are allowed for grid_[TUVW] and icemod files
171
172    V1D_ENABLE=".FALSE."
173    V1M_ENABLE=".FALSE."
174    V1Y_ENABLE=".FALSE."
175
176    for frequency in ${config_OCE_WriteFrequency} ; do
177        case ${frequency} in
178            1D|1d) V1D_ENABLE=".TRUE." ;;
179        esac
180        case ${frequency} in
181            1M|1m) V1M_ENABLE=".TRUE." ;;
182        esac
183        case ${frequency} in
184            *[yY]) V1Y_ENABLE=".TRUE." ;;
185        esac
186    done
187
188
189    ##-- Output level : 3 for more 1D variables
190    eval opa9_OUTPUT_LEVEL=\${opa9_UserChoices_OUTPUT_LEVEL} > /dev/null 2>&1
191    OUTPUT_LEVEL=${opa9_OUTPUT_LEVEL}
192
193
194    # Period Length In Days between DateBegin and first day of calendar 0001 01 01
195    # Needed by OPA namelist to compute correct file names
196    (( PeriodDaysSinceJC =  $( IGCM_date_DaysSinceJC ${PeriodDateBegin} ) + 1  ))
197
198    ##-- Number of time steps updated : the first, the last and the number of time steps
199    (( ORCA_NIT000 = ( PeriodDaysSinceJC - DaysSinceJC ) * ORCA_NPDT_JOUR + 1 ))
200    (( ORCA_NPDT   = PeriodLengthInDays * ORCA_NPDT_JOUR ))
201    (( ORCA_NITEND = ORCA_NIT000 + ORCA_NPDT - 1))
202
203    ##-- We force one restart file at the end of the trunk
204    ORCA_NSTOCK="${ORCA_NITEND}"
205
206    ##-- Restart configuration
207    if ( [ "${CumulPeriod}" -eq 1 ] && [ "${config_OCE_Restart}" = "n" ] ) ; then
208        ORCA_LRSTAR=.FALSE.
209        ORCA_NRSTDT=0
210        # Put ORCA_NMSH=0 when OPA running in parallel mode
211        ORCA_NMSH=1
212        #echo "NO OPA RESTART"
213    elif ( [ "${CumulPeriod}" -eq 1 ] && [ "${config_OCE_Restart}" = "y" ] ) ; then
214        ORCA_LRSTAR=.TRUE.
215        ORCA_NRSTDT=0
216        ORCA_NMSH=1
217        #echo "OPA RESTART"
218    else
219        ORCA_LRSTAR=.TRUE.
220        ORCA_NRSTDT=2
221        ORCA_NMSH=0
222        #echo "OPA RESTART"
223    fi
224
225    ##-- Meshmask option
226    IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/opa9.card UserChoices mesh_mask
227
228    if [ "${opa9_UserChoices_mesh_mask}" = "y" ]; then
229        ORCA_NMSH=1
230        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/opa9.card UserChoices mesh_mask "n"
231    fi
232
233    # nleapy configuration
234    case ${config_UserChoices_CalendarType} in
235        leap|gregorian)
236            ORCA_NLEAPY=1;;
237        noleap)
238            ORCA_NLEAPY=0;;
239        360d)
240            ORCA_NLEAPY=30;;
241        *)
242            ORCA_NLEAPY=30
243    esac
244
245    typeset -r PRECIS=8
246    NEMO_END=$( echo $( awk "BEGIN { printf \"%0${PRECIS}d\",${ORCA_NITEND} }" ) ) 
247
248
249    case ${SEAICE_MODEL} in
250        ( LIM2 ) 
251        NN_ICE_EMBD=0
252        ICEFLX=none
253        ;;
254        ( LIM3 ) 
255        NN_ICE_EMBD=2
256        ICEFLX=${opa9_UserChoices_iceflx:-linear}
257        ;;
258    esac
259
260    IGCM_debug_Print 1 "NUM_PROC_OCE : " ${NUM_PROC_OCE}
261
262    sed -e "s/${PAT_CEXPER}/       cn_exp=\"${config_UserChoices_JobName}\"/"   \
263        -e "s/${PAT_NIT000}/       nn_it000=${ORCA_NIT000}/"                    \
264        -e "s/${PAT_NITEND}/       nn_itend=${ORCA_NITEND}/"                    \
265        -e "s/${PAT_NDATE0}/       nn_date0=${PeriodDateBegin}/"                \
266        -e "s%${PAT_NLEAPY}%       nn_leapy=${ORCA_NLEAPY}%"                    \
267        -e "s/${PAT_NSTOCK}/       nn_stock=${ORCA_NSTOCK}/"                    \
268        -e "s/${PAT_NWRITE}/       nn_write=${ORCA_NWRITE}/"                    \
269        -e "s/${PAT_RESTAR}/       ln_rstart=${ORCA_LRSTAR}/"                   \
270        -e "s/${PAT_NRSTAR}/       nn_rstctl=${ORCA_NRSTDT}/"                   \
271        -e "s/${PAT_NMSH}/         nn_msh=${ORCA_NMSH}/"                        \
272        -e "s/${PAT_NN_WRITE}/     nn_prg=${ORCA_NWRITE}/"                      \
273        -e "s/${PAT_NN_FWRI}/      nn_fwri=${ORCA_NWRITE}/"                     \
274        -e "s/${PAT_NN_FSBC}/      nn_fsbc=${ORCA_NN_FSBC}/"                    \
275        -e "s/${PAT_ICE_EMBD}/     nn_ice_embd=${NN_ICE_EMBD}/"                 \
276        -e "s/${PAT_ICEFLX}/       cn_iceflx=\'${ICEFLX}'/"                     \
277        -e "s/${PAT_JPNI}/         jpni=1/"                                     \
278        -e "s/${PAT_JPNJ}/         jpnj=${NUM_PROC_OCE}/"                       \
279        -e "s/${PAT_JPNIJ}/        jpnij=${NUM_PROC_OCE}/"                      \
280        namelist_cfg > namelist_cfg.tmp
281
282    IGCM_sys_Mv namelist_cfg.tmp namelist_cfg
283
284    IGCM_debug_Print 1 'Variables automatically updated in ORCA namelist_cfg'
285    grep AUTO namelist_cfg
286
287    # update iodef.xml
288
289    IGCM_debug_Print 1 'Informations into iodef.xml : V1D_ENABLE V1M_ENABLE V1Y_ENABLE OUTPUT_LEVEL'
290    IGCM_debug_Print 1 ${V1D_ENABLE} ${V1M_ENABLE} ${V1Y_ENABLE} ${OUTPUT_LEVEL}
291
292    sed -e "s/_1D_ENABLE_/${V1D_ENABLE}/" \
293        -e "s/_1M_ENABLE_/${V1M_ENABLE}/" \
294        -e "s/_1Y_ENABLE_/${V1Y_ENABLE}/" \
295        -e "s/_OUTPUT_LEVEL_/${OUTPUT_LEVEL}/" \
296        context_nemo.xml > context_nemo.xml.tmp
297
298    IGCM_sys_Mv context_nemo.xml.tmp context_nemo.xml
299
300    # vargas/titane/MPP and switch from 1 proc to 5 procs. We need to suppres restartopa the second month, if restartopa_0000 exist
301    # same thing for restart_trc and restart_ice_in
302
303    for restartfilenemo in restartopa restart_trc restart_ice_in ; do
304      [ -f ${restartfilenemo}.nc ] && [ -f ${restartfilenemo}_0000.nc ] && IGCM_sys_Rm -f ${restartfilenemo}.nc
305    done
306
307    # Add include of nemo context in iodef.xml
308    # In iodef.xml add on next line after "COMPONENT CONTEXT"
309    #  <context id="nemo" src="./context_nemo.xml"/>
310    echo '<context id="nemo" src="./context_nemo.xml"/>' > add.tmp
311    cp iodef.xml iodef.xml.tmp
312    sed -e "/COMPONENT CONTEXT/r add.tmp" \
313        iodef.xml.tmp > iodef.xml
314    rm iodef.xml.tmp add.tmp
315
316
317    IGCM_debug_PopStack "OCE_Update"
318}
319
320#-----------------------------------
321function OCE_Finalize
322{
323    IGCM_debug_PushStack "OCE_Finalize"
324
325    if [ -f date.file ] ; then
326        # Prefix use in opa9.card AND in lim2.card :
327        DATE_OPA=$( cat date.file | \
328            sed "s/\ ${config_UserChoices_JobName}_[0-9]*[a-z]_\([0-9]*_[0-9]*\)_\ */\1/g" )
329        MainPrefix=${config_UserChoices_JobName}_1d_${DATE_OPA}
330        SecondPrefix=${config_UserChoices_JobName}_1m_${DATE_OPA}
331    fi
332
333    IGCM_debug_Print 1 FINALIZE OCE !!!
334
335    IGCM_debug_PopStack "OCE_Finalize"
336}
Note: See TracBrowser for help on using the repository browser.