New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 1387 for branches/libIGCM – NEMO

Changeset 1387 for branches/libIGCM


Ignore:
Timestamp:
2009-04-07T16:57:50+02:00 (15 years ago)
Author:
flavoni
Message:

update timeseries and subbasins.nc in opa9.card, see ticket : #392

Location:
branches/libIGCM/ORCA2_LIM/IGCM00/COMP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/libIGCM/ORCA2_LIM/IGCM00/COMP/opa9.card

    r1364 r1387  
    66#============================ 
    77#--v3, v3_1 
    8 OPA_version=v3 
     8OPA_version=v3_1 
    99#============================ 
    1010 
     
    2828            (${R_BC}/OCE/${config_UserChoices_TagName}/${opa9_UserChoices_OPA_version}/taux_1m.nc, .),\ 
    2929            (${R_BC}/OCE/${config_UserChoices_TagName}/${opa9_UserChoices_OPA_version}/tauy_1m.nc, .),\ 
     30            (${R_BC}/OCE/${config_UserChoices_TagName}/${opa9_UserChoices_ORCA_version}/subbasins.nc, .) 
    3031 
    3132[ParametersFiles] 
     
    4344        (${PREFIX_NWRITE}_${DATE_OPA}_grid_V.nc, ${R_OUT_OCE_NWRITE}/${PREFIX}_${WF1}_grid_V.nc, Post_1M_grid_V),\ 
    4445        (${PREFIX_NWRITE}_${DATE_OPA}_grid_W.nc, ${R_OUT_OCE_NWRITE}/${PREFIX}_${WF1}_grid_W.nc, Post_1M_grid_W),\ 
     46        (${PREFIX_NWRITE}_${DATE_OPA}_diaptr.nc, ${R_OUT_OCE_NWRITE}/${PREFIX}_${WF1}_diaptr.nc, Post_1M_diaptr),\ 
    4547        (${PREFIX_NWRITE}_${DATE_OPA}_trends.nc, ${R_OUT_OCE_NWRITE}/${PREFIX}_${WF1}_trends.nc, NONE),\ 
    4648        (${PREFIX_NWRITE}_${DATE_OPA}_diagap.nc, ${R_OUT_OCE_NWRITE}/${PREFIX}_${WF1}_diagap.nc, NONE),\ 
     
    5355Patches = () 
    5456GatherWithInternal = (nav_lon, nav_lat, deptht, time_counter) 
    55 TimeSeriesVars = (sowaflup, sohefldo, soicecov, sosaline, sossheig, sosstsst) 
     57TimeSeriesVars = (sohtc300, sohefldo, soicecov, somxl010, sosaline, sossheig, sosstsst, sowaflcd, sowaflup) 
    5658 
    5759[Post_1M_grid_U] 
     
    7072TimeSeriesVars = 
    7173 
     74[Post_1M_diaptr] 
     75Patches = () 
     76GatherWithInternal = (lat, deptht, depthw, time_counter) 
     77TimeSeriesVars = (zotemglo, zosalglo, zomsfglo, zotematl, zosalatl, zomsfatl, zotempac, zosalpac, zomsfpac, zotemind, zosalind, zomsfind, zotemipc, zosalipc, zomsfipc, sohtatl, sostatl, sohtpac, sostpac, sohtind, sostind, sohtipc, sostipc, sophtadv, sophtove, sophtldf, sopstadv, sopstove, zomsfeiv, sophteiv, sopsteiv) 
  • branches/libIGCM/ORCA2_LIM/IGCM00/COMP/opa9.driver

    r1371 r1387  
    77    JOB_NAME=${config_UserChoices_JobName} 
    88 
    9     if [ -z "${opa_UserChoices_OPA_NDT_DAY}" ] ; then 
    10    OPA_NDT_DAY=15 
    11     else 
    12    OPA_NDT_DAY=${opa_UserChoices_OPA_NDT_DAY} 
    13     fi 
     9######################################## 
     10# old version: less compact 
     11#    if [ -z "${opa_UserChoices_OPA_NDT_DAY}" ] ; then 
     12#  OPA_NDT_DAY=15 
     13#    else 
     14#  OPA_NDT_DAY=${opa_UserChoices_OPA_NDT_DAY} 
     15#    fi 
     16######################################## 
     17     OPA_NDT_DAY=${opa_UserChoices_OPA_NDT_DAY:=15} 
     18 
    1419 
    1520    ##--Variables used by OPA -- 
     
    98103    OPA_NSTOCK="${OPA_NITEND}" 
    99104 
    100     ## Verification of number of time step in a day 
     105    ## Verification of number of time steps per day 
    101106    (( NB_SEC_DAY_MODEL = OPA_NDT_DAY * OPA_RDT )) 
    102107    (( NB_SEC_DAY = 60 * 60 * 24 )) 
     
    104109    if [ ${NB_SEC_DAY_MODEL} -ne ${NB_SEC_DAY} ] 
    105110   then 
    106         echo " VERIFIER OPA_NDT_DAY dans le job ${JOB} " 
     111        echo " VERIFY OPA_NDT_DAY in opa9.card " 
    107112        exit 
    108113    fi 
     
    111116    if ( [ "${CumulPeriod}" -eq 1 ] && [ "${config_OCE_Restart}" = "n" ] ) ; then 
    112117 
    113         #echo "PAS DE RESTART OPA" 
     118        #echo "NO OPA RESTART" 
    114119   OPA_LRSTAR=.FALSE. 
    115120   OPA_NRSTDT=0 
    116         #echo pas de meshmask en parallele 
     121        #Put OPA_NMSH=0 when OPA runnig in parallel mode  
    117122   OPA_NMSH=1 
    118123   ( [ X${BATCH_NUM_PROC_TOT} != X ] && [ "${BATCH_NUM_PROC_TOT}" -gt 1 ] ) && OPA_NMSH=0 
     
    120125    elif ( [ "${CumulPeriod}" -eq 1 ] && [ "${config_OCE_Restart}" = "y" ] ) ; then 
    121126 
    122         #echo "RESTART OPA" 
     127        #echo "OPA RESTART" 
    123128   OPA_LRSTAR=.TRUE. 
    124129   OPA_NRSTDT=1 
     
    127132    else 
    128133 
    129         #echo "RESTART OPA" 
     134        #echo "OPA RESTART" 
    130135   OPA_LRSTAR=.TRUE. 
    131136   OPA_NRSTDT=2 
     
    133138 
    134139    fi 
    135  
     140    
     141     ## nleapy configuration 
    136142   case ${config_UserChoices_CalendarType} in 
    137143         leap) 
     
    173179 
    174180    if [ -f date.file ] ; then 
    175         # Prefix use in opa.card AND in lim.card : 
     181        # Prefix use in opa.card AND in lim2.card : 
    176182   DATE_OPA=$( cat date.file | \ 
    177183       sed "s/\ ${config_UserChoices_JobName}_[0-9]*[a-z]_\([0-9]*_[0-9]*\)_\ */\1/g" ) 
    178 ###DATE_OPA=$( $DATE_OPABF | cut -c1-30 ) 
     184        ###DATE_OPA=$( $DATE_OPABF | cut -c1-30 ) 
    179185   MainPrefix=${config_UserChoices_JobName}_1d_${DATE_OPA} 
    180186   SecondPrefix=${config_UserChoices_JobName}_5d_${DATE_OPA} 
Note: See TracChangeset for help on using the changeset viewer.