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 15136 for NEMO/trunk/src/SWE/nemogcm.F90 – NEMO

Ignore:
Timestamp:
2021-07-23T12:07:28+02:00 (3 years ago)
Author:
smasson
Message:

trunk: SWE passes sette tests in debug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/SWE/nemogcm.F90

    r14834 r15136  
    2222   USE bdyini         ! open boundary cond. setting       (bdy_init routine) 
    2323   USE istate         ! initial state setting          (istate_init routine) 
     24   USE wet_dry , ONLY : ln_wd_il, ln_wd_dl, ln_wd_dl_bc   ! switch off wetting and drying 
     25   USE isf_oce , ONLY : ln_isf           ! ice shelf 
    2426   USE trd_oce , ONLY : l_trddyn         ! dynamical trend logical 
    2527#if defined key_RK3 
     
    297299      ! 
    298300                           CALL     phy_cst         ! Physical constants 
     301                           ln_wd_il = .FALSE.   ;   ln_wd_dl = .FALSE.   ;   ln_wd_dl_bc = .FALSE.  ! No wetting and drying 
    299302      ! 
    300303      !                                             ! SWE: Set rho0 and associated variables (eosbn2 not used) 
     
    317320 
    318321      !                                      ! Ocean physics                                     
     322      !                                         ! Vertical physics 
     323                           ln_zdfddm = .FALSE.   ;   ln_zad_Aimp = .FALSE.   ;   ln_zdfosm = .FALSE.   ! used in diawri 
     324                           avt(:,:,:) = 0._wp    ;   avm(:,:,:) = 0._wp                                ! used in diawri 
    319325      !                                         ! Lateral physics 
    320326                           CALL ldf_dyn_init      ! Lateral ocean momentum physics 
     
    324330                           CALL dyn_vor_init         ! vorticity term including Coriolis 
    325331                           CALL dyn_ldf_init         ! lateral mixing 
     332 
     333      !                                      ! Icebergs 
     334                           ln_icebergs = .false. 
     335      !                                      ! ice shelf 
     336                           ln_isf = .false. 
    326337 
    327338      !                                      ! Diagnostics 
Note: See TracChangeset for help on using the changeset viewer.