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 5047 for branches/2015/dev_r5044_CNRS_LIM3CLEAN/NEMOGCM/NEMO/LIM_SRC_3/limdyn.F90 – NEMO

Ignore:
Timestamp:
2015-01-29T14:13:14+01:00 (9 years ago)
Author:
clem
Message:

LIM3 cleaning (1): namelist

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5044_CNRS_LIM3CLEAN/NEMOGCM/NEMO/LIM_SRC_3/limdyn.F90

    r4990 r5047  
    241241      !!------------------------------------------------------------------- 
    242242      INTEGER  ::   ios                 ! Local integer output status for namelist read 
    243       NAMELIST/namicedyn/ epsd, om, cw, pstar,   & 
     243      NAMELIST/namicedyn/ cw, pstar,   & 
    244244         &                c_rhg, creepl, ecc, ahi0,     & 
    245          &                nevp, relast, alphaevp, hminrhg 
     245         &                nevp, relast, hminrhg 
    246246      !!------------------------------------------------------------------- 
    247247 
     
    259259         WRITE(numout,*) 'lim_dyn_init : ice parameters for ice dynamics ' 
    260260         WRITE(numout,*) '~~~~~~~~~~~~' 
    261          WRITE(numout,*) '   tolerance parameter                              epsd   = ', epsd 
    262          WRITE(numout,*) '   relaxation constant                              om     = ', om 
    263261         WRITE(numout,*) '   drag coefficient for oceanic stress              cw     = ', cw 
    264262         WRITE(numout,*) '   first bulk-rheology parameter                    pstar  = ', pstar 
     
    269267         WRITE(numout,*) '   number of iterations for subcycling              nevp   = ', nevp 
    270268         WRITE(numout,*) '   ratio of elastic timescale over ice time step    relast = ', relast 
    271          WRITE(numout,*) '   coefficient for the solution of int. stresses  alphaevp = ', alphaevp 
    272269         WRITE(numout,*) '   min ice thickness for rheology calculations     hminrhg = ', hminrhg 
    273270      ENDIF 
     
    275272      usecc2 = 1._wp / ( ecc * ecc ) 
    276273      rhoco  = rau0  * cw 
    277  
    278       ! elastic damping 
    279       telast = relast * rdt_ice 
    280274 
    281275      !  Diffusion coefficients. 
Note: See TracChangeset for help on using the changeset viewer.