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 4355 for branches/2013/dev_r4050_NOC_WaD/NEMOGCM/NEMO/OPA_SRC/DOM/domain.F90 – NEMO

Ignore:
Timestamp:
2014-01-17T18:55:02+01:00 (10 years ago)
Author:
hliu
Message:

update Wetting/drying branch. Will keep commit in the next a few days.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r4050_NOC_WaD/NEMOGCM/NEMO/OPA_SRC/DOM/domain.F90

    r3764 r4355  
    8181      ! 
    8282                             CALL dom_nam      ! read namelist ( namrun, namdom, namcla ) 
     83                             CALL dom_wad      ! read namelist ( namwad ), wetting/drying 
    8384                             CALL dom_clo      ! Closed seas and lake 
    8485                             CALL dom_hgr      ! Horizontal mesh 
     
    269270      ! 
    270271   END SUBROUTINE dom_nam 
     272 
     273   SUBROUTINE dom_wad 
     274      !!---------------------------------------------------------------------- 
     275      !!                     ***  ROUTINE dom_wad  *** 
     276      !!                     
     277      !! ** Purpose :   read wetting/drying namelists and print the variables. 
     278      !! 
     279      !! ** input   : - namwad namelist 
     280      !!---------------------------------------------------------------------- 
     281      USE ioipsl 
     282      NAMELIST/namwad/ ln_wad , rn_wadmin, rn_wadmine, rn_landele 
     283      !!---------------------------------------------------------------------- 
     284 
     285      REWIND( numnam )              ! Namelist namrun : parameters of the run 
     286      READ  ( numnam, namwad ) 
     287      ! 
     288      IF(lwp) THEN                  ! control print 
     289         WRITE(numout,*) 
     290         WRITE(numout,*) 'dom_wad  : set up wetting/drying ' 
     291         WRITE(numout,*) '~~~~~~~ ' 
     292         WRITE(numout,*) '   Namelist namwad' 
     293         WRITE(numout,*) '      turn on(off) wetting/drying     ln_wad        = ', ln_wad 
     294         WRITE(numout,*) '      minimal dry cell depth          rn_ wadmin    = ', rn_wadmin  
     295         WRITE(numout,*) '      tollerance of minimual depth    rn_wadmine    = ', rn_wadmine 
     296         WRITE(numout,*) ' threshold elevation for land masking rn_landele    = ', rn_landele 
     297      ENDIF 
     298 
     299   END SUBROUTINE dom_wad 
    271300 
    272301 
Note: See TracChangeset for help on using the changeset viewer.