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 4147 for branches/2013/dev_LOCEAN_2013/NEMOGCM/NEMO/LIM_SRC_3/limdia.F90 – NEMO

Ignore:
Timestamp:
2013-11-04T12:51:55+01:00 (11 years ago)
Author:
cetlod
Message:

merge in dev_LOCEAN_2013, the 1st development branch dev_r3853_CNRS9_Confsetting, from its starting point ( r3853 ) on the trunk: see ticket #1169

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_LOCEAN_2013/NEMOGCM/NEMO/LIM_SRC_3/limdia.F90

    r3625 r4147  
    3030   PUBLIC lim_dia       ! called by ice_step 
    3131 
    32    INTEGER, PUBLIC  ::   ntmoy   = 1  !: instantaneous values of ice evolution or averaging ntmoy 
    33    INTEGER, PUBLIC  ::   ninfo   = 1  !: frequency of ouputs on file ice_evolu in case of averaging 
     32   INTEGER, PUBLIC  ::   ntmoy    !: instantaneous values of ice evolution or averaging ntmoy 
     33   INTEGER, PUBLIC  ::   ninfo    !: frequency of ouputs on file ice_evolu in case of averaging 
    3434 
    3535   !                                              !!! Parameters for outputs to files "evolu" 
     
    3838   INTEGER, PARAMETER ::   jpchsep = jpchinf + 2   ! ??? 
    3939 
    40    INTEGER  ::   nfrinf  = 4         ! number of variables written in one line  
     40   INTEGER  ::   nfrinf    ! number of variables written in one line  
    4141   INTEGER  ::   nferme              ! last time step at which the var. are written on file 
    4242   INTEGER  ::   nvinfo              ! number of total variables  
     
    4545   REAL(wp) ::   epsi06 = 1.e-6_wp   ! small number 
    4646 
    47    CHARACTER(len= 8) ::   fmtinf = '1PE13.5 '   ! format of the output values   
     47   CHARACTER(len= 8) ::   fmtinf     ! format of the output values   
    4848   CHARACTER(len=30) ::   fmtw                  ! formats 
    4949   CHARACTER(len=30) ::   fmtr                  ! ??? 
     
    415415      INTEGER  ::   jv    ! dummy loop indice 
    416416      INTEGER  ::   ierr, ntot , ndeb , irecl   ! local integers 
     417      INTEGER  ::   ios                         ! Local integer output status for namelist read 
    417418      REAL(wp) ::   zxx0, zxx1    ! local scalars 
    418419      CHARACTER(len=jpchinf) ::   titinf 
     
    422423      !!------------------------------------------------------------------- 
    423424      ! 
    424       REWIND( numnam_ice )             ! read namicedia namelist 
    425       READ  ( numnam_ice, namicedia ) 
     425      REWIND( numnam_ice_ref )              ! Namelist namicedia in reference namelist : Ice diagnostics in ice_evolu 
     426      READ  ( numnam_ice_ref, namicedia, IOSTAT = ios, ERR = 901) 
     427901   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namicedia in reference namelist', lwp ) 
     428 
     429      REWIND( numnam_ice_cfg )              ! Namelist namicedia in configuration namelist : Ice diagnostics in ice_evolu  
     430      READ  ( numnam_ice_cfg, namicedia, IOSTAT = ios, ERR = 902 ) 
     431902   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namicedia in configuration namelist', lwp ) 
     432      WRITE ( numoni, namicedia ) 
    426433      ! 
    427434      IF(lwp) THEN                     ! control print 
Note: See TracChangeset for help on using the changeset viewer.