source: CONFIG/UNIFORM/v6/NEMO_v6/GENERAL/DRIVER/opa9.driver @ 3961

Last change on this file since 3961 was 3961, checked in by cetlod, 6 years ago

Consolidation of NEMO_v6 for OMIP

File size: 8.4 KB
RevLine 
[2639]1#!/bin/ksh
2#-----------------------------------------------------------------
3function OCE_Initialize
4{
5    IGCM_debug_PushStack "OCE_Initialize"
6
[3203]7    RESOL_OCE=${config_UserChoices_ExpType%%_*}
[3854]8    exptype=${config_UserChoices_ExpType##*/}
[2639]9
[3203]10    IGCM_debug_Print 1 " "
11    IGCM_debug_Print 1 "RESOL_OCE        : ${RESOL_OCE}"
[3854]12    IGCM_debug_Print 1 "FORCING          : ${exptype}"
13    IGCM_debug_Print 1 "EXPERIMENT TYPE  : ${opa9_UserChoices_forcing}"
[3203]14
[2639]15# Local function to find namelists parameters
16supergrep () {
17    grep "^ *$1 *=" $2 | sed -e "s% *\!.*%%"
18}
19
[3854]20    OPA_RDT=$( supergrep rn_rdt ${SUBMIT_DIR}/PARAM/NAMELIST/${RESOL_OCE}/namelist_${opa9_UserChoices_forcing}_${exptype}_cfg | sed 's/ *rn_rdt *=//' | sed 's/\. *,//' )
[2639]21
22    # Period Length In Days between DateBegin and first day of calendar 0001 01 01
23    # /!\ Needed by OPA namelist to compute file names /!\
24    (( DaysSinceJC = $( IGCM_date_DaysSinceJC ${DateBegin} ) + 1 ))
25
[2875]26    (( OPA_NPDT_DAY  =  86400 / OPA_RDT ))
[2871]27    (( OPA_NPDT_YEAR  =  OPA_NPDT_DAY * 365     ))
[2647]28
[2875]29    IGCM_debug_Print 1 " "
30    IGCM_debug_Print 1 "OPA_RDT        ${OPA_RDT}"
31    IGCM_debug_Print 1 "OPA_NPDT_DAY   ${OPA_NPDT_DAY}"
32    IGCM_debug_Print 1 "OPA_NPDT_YEAR  ${OPA_NPDT_YEAR}"
[2639]33
[3854]34
[2639]35    IGCM_debug_PopStack "OCE_Initialize"
36}
37
38#-----------------------------------------------------------------
39function OCE_Update
[2815]40{
[2639]41    IGCM_debug_PushStack "OCE_Update"
42
[3096]43
[3408]44    V1D_ENABLE=".FALSE."
45    V5D_ENABLE=".FALSE."
46    V1M_ENABLE=".FALSE."
47    V1Y_ENABLE=".FALSE."
48
49    for frequency in ${config_OCE_WriteFrequency} ; do
50        case ${frequency} in
51            ( 1D|1d ) V1D_ENABLE=".TRUE." ;;
52            ( 5D|5d ) V5D_ENABLE=".TRUE." ;;
53            ( 1M|1m ) V1M_ENABLE=".TRUE." ;;
54            ( *[yY] ) V1Y_ENABLE=".TRUE." ;;
55        esac
56    done
57
[3854]58    if [ "${exptype}" = "ia"   ] ; then
[3096]59       NbFileInter=${#opa9_UserChoices_ListForcing[*]}
[3408]60       (( LengthForcing=${opa9_UserChoices_YearForcingEnd} - ${opa9_UserChoices_YearForcingInit} + 1 ))
61       (( DiffForcing=abs(${opa9_UserChoices_YearForcingEnd} - ${year} )))
62       (( ModuloForcing=${DiffForcing} % ${LengthForcing} ))
63      if [ ${ModuloForcing} -eq 0 ] ; then
64          (( year_forcing=${opa9_UserChoices_YearForcingEnd} ))
[3096]65       else
[3408]66          if [ ${year} -ge ${opa9_UserChoices_YearForcingInit} ] && [ ${year} -le ${opa9_UserChoices_YearForcingEnd} ] ; then
67             year_forcing=${year}
68          elif [ ${year} -lt ${opa9_UserChoices_YearForcingInit} ] ; then
69             (( year_forcing=${opa9_UserChoices_YearForcingEnd} - ${ModuloForcing} ))
70          else
71             (( year_forcing=${opa9_UserChoices_YearForcingInit} + ${ModuloForcing} - 1 ))
72          fi
[3096]73       fi
74       (( year_forcing_m1 = ${year_forcing} - 1))
75       (( year_forcing_p1 = ${year_forcing} + 1))
76       (( i = 0 ))
[3961]77       while [ $i -lt ${NbFileInter} ] ; do
78          eval file=${opa9_UserChoices_ListForcing[$i]}
79          IGCM_sys_Get ${opa9_UserChoices_R_FORCING}/${file}_${year_forcing_m1}.nc  ${file}_y${year_m1}.nc
80          IGCM_sys_Get ${opa9_UserChoices_R_FORCING}/${file}_${year_forcing}.nc     ${file}_y${year}.nc
81          IGCM_sys_Get ${opa9_UserChoices_R_FORCING}/${file}_${year_forcing_p1}.nc  ${file}_y${year_p1}.nc
82          (( i = i + 1 ))
83       done
84
85       if [ X"$( echo ${config_UserChoices_ExpType} | grep CMIP6 )" != "X" ] ; then
86          IGCM_sys_Get ${R_IN}/CMIP6/${config_UserChoices_LongName}/${config_UserChoices_ModelName}/${config_UserChoices_ExperimentName}/${config_UserChoices_Member}/${year_forcing}/dr2xml_nemo.xml  dr2xml_opa9.xml
87       fi
[3096]88    fi
89
[2815]90    # Period Length In Days between DateBegin and first day of calendar 0001 01 01
91    # Needed by OPA namelist to compute correct file names
92    (( PeriodDaysSinceJC =  $( IGCM_date_DaysSinceJC ${PeriodDateBegin} ) + 1  ))
[2639]93
[2815]94    ## Count of number of time steps from begin of OPA job
[2875]95    (( OPA_NIT000 = ( PeriodDaysSinceJC - DaysSinceJC ) * OPA_NPDT_DAY + 1 ))
96    (( OPA_NDT   = PeriodLengthInDays * OPA_NPDT_DAY ))
[2815]97    (( OPA_NITEND = OPA_NIT000 + OPA_NDT - 1))
98
99    ## Forcing to write one restart file at the end of period
100    OPA_NSTOCK="${OPA_NITEND}"
101
102    ## Verification of number of time steps per day
[2875]103    (( NB_SEC_DAY_MODEL = OPA_NPDT_DAY * OPA_RDT ))
[2815]104    (( NB_SEC_DAY = 60 * 60 * 24 ))
105
106    if [ ${NB_SEC_DAY_MODEL} -ne ${NB_SEC_DAY} ]
107        then
[2875]108        echo " NB_SEC_DAY_MODEL "${NB_SEC_DAY_MODEL} "NB_SEC_DAY" ${NB_SEC_DAY} "OPA_NPDT_DAY" ${OPA_NPDT_DAY} "OPA_RDT" ${OPA_RDT}
109        echo " VERIFY OPA_NPDT_DAY in opa9.card "
[2815]110        exit
111    fi
112
[3854]113   ##-- Restart configuration
[2639]114    if ( [ "${CumulPeriod}" -eq 1 ] && [ "${config_OCE_Restart}" = "n" ] ) ; then
[3854]115      OPA_LRSTAR=.FALSE.
116      OPA_NRSTDT=0
117      #echo "NO OPA RESTART"
[2639]118    elif ( [ "${CumulPeriod}" -eq 1 ] && [ "${config_OCE_Restart}" = "y" ] ) ; then
[3854]119      OPA_LRSTAR=.TRUE.
120      OPA_NRSTDT=0
121      #echo "OPA RESTART"
[2639]122    else
[3854]123      OPA_LRSTAR=.TRUE.
124      OPA_NRSTDT=2
125      #echo "OPA RESTART"
126    fi
[2639]127
[2815]128   
[3124]129    OPA_NMSH=0
130    if [ "${opa9_UserChoices_mesh_mask}" = "y" ]; then
131        OPA_NMSH=1
132        IGCM_card_WriteOption ${SUBMIT_DIR}/COMP/opa9.card UserChoices mesh_mask "n"
133    fi
[3854]134
[3124]135    ## nleapy configuration
136    case ${config_UserChoices_CalendarType} in
137        ( leap|gregorian) OPA_NLEAPY=1  ;;
138        ( noleap        ) OPA_NLEAPY=0  ;;
139        ( 360d          ) OPA_NLEAPY=30 ;;
140        ( *             ) OPA_NLEAPY=30 ;;
141    esac
[2639]142
[3854]143
[3124]144   typeset -r PRECIS=8
145   NEMO_END=$( echo $( awk "BEGIN { printf \"%0${PRECIS}d\",${OPA_NITEND} }" ) ) 
[2639]146
[2815]147   IGCM_comp_modifyNamelist blocker    namelist_cfg cn_exp    ${config_UserChoices_JobName}
148   IGCM_comp_modifyNamelist blocker    namelist_cfg nn_it000  ${OPA_NIT000}
149   IGCM_comp_modifyNamelist blocker    namelist_cfg nn_itend  ${OPA_NITEND}
150   IGCM_comp_modifyNamelist blocker    namelist_cfg ln_rstart ${OPA_LRSTAR}
151   IGCM_comp_modifyNamelist blocker    namelist_cfg nn_stock ${OPA_NSTOCK}
152   IGCM_comp_modifyNamelist blocker    namelist_cfg nn_rstctl ${OPA_NRSTDT}
153   IGCM_comp_modifyNamelist blocker    namelist_cfg nn_date0 ${PeriodDateBegin}
154   IGCM_comp_modifyNamelist nonblocker namelist_cfg nn_msh    ${OPA_NMSH}
155   IGCM_comp_modifyNamelist blocker    namelist_cfg nn_leapy  ${OPA_NLEAPY} 
156
[3408]157   IGCM_debug_Print 1 'Informations into iodef.xml : V1D_ENABLE V5D_ENABLE V1M_ENABLE V1Y_ENABLE '
158   IGCM_debug_Print 1 ${V1D_ENABLE}  ${V5D_ENABLE} ${V1M_ENABLE} ${V1Y_ENABLE}
159
[3512]160   IGCM_comp_modifyXmlFile nonblocker file_def_nemo-opa.xml 1d_opa enabled ${V1D_ENABLE}
161   IGCM_comp_modifyXmlFile nonblocker file_def_nemo-opa.xml 5d_opa enabled ${V5D_ENABLE}
162   IGCM_comp_modifyXmlFile nonblocker file_def_nemo-opa.xml 1m_opa enabled ${V1M_ENABLE}
163   IGCM_comp_modifyXmlFile nonblocker file_def_nemo-opa.xml 1y_opa enabled ${V1Y_ENABLE}
[3408]164
[3854]165   IGCM_comp_modifyXmlFile nonblocker file_def_nemo-opa.xml 1d_opa output_level ${opa9_UserChoices_OutputLevel}
166   IGCM_comp_modifyXmlFile nonblocker file_def_nemo-opa.xml 5d_opa output_level ${opa9_UserChoices_OutputLevel}
167   IGCM_comp_modifyXmlFile nonblocker file_def_nemo-opa.xml 1m_opa output_level ${opa9_UserChoices_OutputLevel}
168   IGCM_comp_modifyXmlFile nonblocker file_def_nemo-opa.xml 1y_opa output_level ${opa9_UserChoices_OutputLevel}
169
170   IGCM_comp_modifyXmlFile force context_nemo.xml ref_year NONE ${InitYear} 
171
172
173   #Long Name as global attribute (if LongName is not empty)
174   if [ ! "X${config_UserChoices_LongName}" = "X" ] ; then
175      listfile=$(ls file_def_nemo*.xml)
176      echo "<variable id=\"LongName\" type=\"string\">${config_UserChoices_LongName}</variable>" > add.tmp
177      for file in ${listfile}
178        do
179            cp ${file} ${file}.tmp
180            sed -e "/<file id/r add.tmp" \
181                ${file}.tmp > ${file}
182            rm ${file}.tmp
183        done
184        rm add.tmp
185   fi
186
[3203]187# update domain_def.xml file
188   case ${RESOL_OCE} in
189       ( *ORCA025* ) 
[3210]190        sed -e 's/<zoom_domain id="1point" ibegin="139" jbegin="119"/<zoom_domain id="1point" ibegin="600" jbegin="600"/' domain_def_nemo.xml > domain_def.xml.tmp 
191         IGCM_sys_Mv domain_def.xml.tmp domain_def_nemo.xml  ;
[3203]192   esac
193
[2848]194   IGCM_debug_PopStack "OCE_Update"
[2814]195}
[2639]196
197#-----------------------------------
198function OCE_Finalize
199{
200    IGCM_debug_PushStack "OCE_Finalize"
201
202    if [ -f date.file ] ; then
203        # Prefix use in opa.card AND in lim2.card :
204        DATE_OPA=$( cat date.file | \
205            sed "s/\ ${config_UserChoices_JobName}_[0-9]*[a-z]_\([0-9]*_[0-9]*\)_\ */\1/g" )
206        ###DATE_OPA=$( $DATE_OPABF | cut -c1-30 )
207        MainPrefix=${config_UserChoices_JobName}_1d_${DATE_OPA}
208        SecondPrefix=${config_UserChoices_JobName}_5d_${DATE_OPA}
209    fi
210
211    echo FINALIZE OCE !!!
212
213    IGCM_debug_PopStack "OCE_Finalize"
214}
215
Note: See TracBrowser for help on using the repository browser.