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 12068 for NEMO/branches/2019/UKMO_MERGE_2019/src/OCE/DOM/domain.F90 – NEMO

Ignore:
Timestamp:
2019-12-05T13:18:21+01:00 (4 years ago)
Author:
davestorkey
Message:

2019/UKMO_MERGE_2019 : Merging in changes from ENHANCE-02_ISF_nemo.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/UKMO_MERGE_2019/src/OCE/DOM/domain.F90

    r11822 r12068  
    142142                                       ! Read in masks to define closed seas and lakes  
    143143      ! 
    144       DO jj = 1, jpj                   ! depth of the iceshelves 
    145          DO ji = 1, jpi 
    146             ik = mikt(ji,jj) 
    147             risfdep(ji,jj) = gdepw_0(ji,jj,ik) 
    148          END DO 
    149       END DO 
    150       ! 
    151144      ht_0(:,:) = 0._wp  ! Reference ocean thickness 
    152145      hu_0(:,:) = 0._wp 
     
    194187      IF( lk_c1d         )   CALL cor_c1d       ! 1D configuration: Coriolis set at T-point 
    195188      ! 
    196       IF( ln_meshmask .AND. .NOT.ln_iscpl )                        CALL dom_wri     ! Create a domain file 
    197       IF( ln_meshmask .AND.      ln_iscpl .AND. .NOT.ln_rstart )   CALL dom_wri     ! Create a domain file 
    198       IF(                                       .NOT.ln_rstart )   CALL dom_ctl     ! Domain control 
    199       ! 
    200       IF( ln_write_cfg )   CALL cfg_write         ! create the configuration file 
     189      IF( ln_meshmask    )   CALL dom_wri       ! Create a domain file 
     190      IF( .NOT.ln_rstart )   CALL dom_ctl       ! Domain control 
     191      ! 
     192      IF( ln_write_cfg   )   CALL cfg_write     ! create the configuration file 
    201193      ! 
    202194      IF(lwp) THEN 
     
    294286         &             nn_it000, nn_itend , nn_date0    , nn_time0     , nn_leapy  , nn_istate ,     & 
    295287         &             nn_stock, nn_write , ln_mskland  , ln_clobber   , nn_chunksz, nn_euler  ,     & 
    296          &             ln_cfmeta, ln_iscpl, ln_xios_read, nn_wxios 
    297       NAMELIST/namdom/ ln_linssh, rn_isfhmin, rn_rdt, rn_atfp, ln_crs, ln_meshmask 
     288         &             ln_cfmeta, ln_xios_read, nn_wxios 
     289      NAMELIST/namdom/ ln_linssh, rn_rdt, rn_atfp, ln_crs, ln_meshmask 
    298290#if defined key_netcdf4 
    299291      NAMELIST/namnc4/ nn_nchunks_i, nn_nchunks_j, nn_nchunks_k, ln_nc4zip 
     
    345337         WRITE(numout,*) '      overwrite an existing file      ln_clobber      = ', ln_clobber 
    346338         WRITE(numout,*) '      NetCDF chunksize (bytes)        nn_chunksz      = ', nn_chunksz 
    347          WRITE(numout,*) '      IS coupling at the restart step ln_iscpl        = ', ln_iscpl 
    348339         IF( TRIM(Agrif_CFixed()) == '0' ) THEN 
    349340            WRITE(numout,*) '      READ restart for a single file using XIOS ln_xios_read =', ln_xios_read 
     
    419410         WRITE(numout,*) '      linear free surface (=T)                ln_linssh   = ', ln_linssh 
    420411         WRITE(numout,*) '      create mesh/mask file                   ln_meshmask = ', ln_meshmask 
    421          WRITE(numout,*) '      treshold to open the isf cavity         rn_isfhmin  = ', rn_isfhmin, ' [m]' 
    422412         WRITE(numout,*) '      ocean time step                         rn_rdt      = ', rn_rdt 
    423413         WRITE(numout,*) '      asselin time filter parameter           rn_atfp     = ', rn_atfp 
Note: See TracChangeset for help on using the changeset viewer.