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 3875 for branches/2013/dev_r3853_CNRS9_ConfSetting/NEMOGCM/NEMO/LIM_SRC_2/limdyn_2.F90 – NEMO

Ignore:
Timestamp:
2013-04-18T16:38:06+02:00 (11 years ago)
Author:
clevy
Message:

Configuration Setting/Step? 1, see ticket:#1074

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r3853_CNRS9_ConfSetting/NEMOGCM/NEMO/LIM_SRC_2/limdyn_2.F90

    r3625 r3875  
    224224      !! ** input   :   Namelist namicedyn 
    225225      !!------------------------------------------------------------------- 
     226      INTEGER  ::   ios                 ! Local integer output status for namelist read 
    226227      NAMELIST/namicedyn/ epsd, alpha,     & 
    227228         &                dm, nbiter, nbitdr, om, resl, cw, angvg, pstar,   & 
     
    229230         &                nevp, telast,alphaevp 
    230231      !!------------------------------------------------------------------- 
    231  
    232       REWIND ( numnam_ice )                       ! Read Namelist namicedyn 
    233       READ   ( numnam_ice  , namicedyn ) 
     232                     
     233      REWIND( numnam_ice_ref )              ! Namelist namicedyn in reference namelist : Ice dynamics 
     234      READ  ( numnam_ice_ref, namicedyn, IOSTAT = ios, ERR = 901) 
     235901   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namicedyn in reference namelist', lwp ) 
     236 
     237      REWIND( numnam_ice_cfg )              ! Namelist namicedyn in configuration namelist : Ice dynamics 
     238      READ  ( numnam_ice_cfg, namicedyn, IOSTAT = ios, ERR = 902 ) 
     239902   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namicedyn in configuration namelist', lwp ) 
     240      WRITE ( numoni, namicedyn ) 
    234241 
    235242      IF(lwp) THEN                                ! Control print 
Note: See TracChangeset for help on using the changeset viewer.