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 9169 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/LIM_SRC_3/icedyn.F90 – NEMO

Ignore:
Timestamp:
2017-12-26T17:32:56+01:00 (6 years ago)
Author:
gm
Message:

dev_merge_2017: all SRC: finalize the removal of useless warning when reading namelist_cfg + remove all nn_closea + nn_msh replaced by a logical

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/LIM_SRC_3/icedyn.F90

    r9124 r9169  
    219219      REWIND( numnam_ice_ref )         ! Namelist namdyn in reference namelist : Ice dynamics 
    220220      READ  ( numnam_ice_ref, namdyn, IOSTAT = ios, ERR = 901) 
    221 901   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namdyn in reference namelist', lwp ) 
    222       ! 
     221901   IF( ios /= 0 )   CALL ctl_nam ( ios , 'namdyn in reference namelist', lwp ) 
    223222      REWIND( numnam_ice_cfg )         ! Namelist namdyn in configuration namelist : Ice dynamics 
    224223      READ  ( numnam_ice_cfg, namdyn, IOSTAT = ios, ERR = 902 ) 
    225 902   IF( ios >  0 ) CALL ctl_nam ( ios , 'namdyn in configuration namelist', lwp ) 
    226       IF(lwm) WRITE ( numoni, namdyn ) 
     224902   IF( ios >  0 )   CALL ctl_nam ( ios , 'namdyn in configuration namelist', lwp ) 
     225      IF(lwm) WRITE( numoni, namdyn ) 
    227226      ! 
    228227      IF(lwp) THEN                     ! control print 
     
    234233         WRITE(numout,*) '      No ridge/raft & No cor (rhg + adv)                      ln_dynRHGADV = ', ln_dynRHGADV 
    235234         WRITE(numout,*) '      Advection only         (rn_uvice + adv)                 ln_dynADV    = ', ln_dynADV 
    236          WRITE(numout,*) '           with prescribed velocity given by ' 
    237          WRITE(numout,*) '               a uniform field               (u,v)_ice = (rn_uice,rn_vice) = (', rn_uice,',', rn_vice,')' 
     235         WRITE(numout,*) '         with prescribed velocity given by   (u,v)_ice = (rn_uice,rn_vice) = (', rn_uice,',', rn_vice,')' 
    238236         WRITE(numout,*) '      lateral boundary condition for sea ice dynamics         rn_ishlat    = ', rn_ishlat 
    239237         WRITE(numout,*) '      Landfast: param (T or F)                                ln_landfast  = ', ln_landfast 
     
    241239         WRITE(numout,*) '         maximum bottom stress per unit area of contact       rn_icebfr    = ', rn_icebfr 
    242240         WRITE(numout,*) '         relax time scale (s-1) to reach static friction      rn_lfrelax   = ', rn_lfrelax 
     241         WRITE(numout,*) 
    243242      ENDIF 
    244243      !                             !== set the choice of ice dynamics ==! 
     
    260259      ENDIF 
    261260      !                                      !--- NO Landfast ice : set to zero once for all 
    262       IF( .NOT. ln_landfast )   tau_icebfr(:,:) = 0._wp 
     261      IF( .NOT.ln_landfast )   tau_icebfr(:,:) = 0._wp 
    263262      ! 
    264263      CALL ice_dyn_rdgrft_init          ! set ice ridging/rafting parameters 
Note: See TracChangeset for help on using the changeset viewer.