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/OPA_SRC/LDF/ldftra.F90 – NEMO

Ignore:
Timestamp:
2013-11-04T12:51:55+01:00 (10 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/OPA_SRC/LDF/ldftra.F90

    r3634 r4147  
    6262      !!---------------------------------------------------------------------- 
    6363      INTEGER ::   ioptio               ! temporary integer 
     64      INTEGER ::   ios                  ! temporary integer 
    6465      LOGICAL ::   ll_print = .FALSE.   ! =T print eddy coef. in numout 
    6566      !!  
     
    7677      ! ============================================= 
    7778     
    78       REWIND( numnam )                  ! Read Namelist namtra_ldf : Lateral physics on tracers 
    79       READ  ( numnam, namtra_ldf ) 
     79 
     80      REWIND( numnam_ref )              ! Namelist namtra_ldf in reference namelist : Lateral physics on tracers 
     81      READ  ( numnam_ref, namtra_ldf, IOSTAT = ios, ERR = 901) 
     82901   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namtra_ldf in reference namelist', lwp ) 
     83 
     84      REWIND( numnam_cfg )              ! Namelist namtra_ldf in configuration namelist : Lateral physics on tracers 
     85      READ  ( numnam_cfg, namtra_ldf, IOSTAT = ios, ERR = 902 ) 
     86902   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namtra_ldf in configuration namelist', lwp ) 
     87      WRITE ( numond, namtra_ldf ) 
    8088 
    8189      IF(lwp) THEN                      ! control print 
Note: See TracChangeset for help on using the changeset viewer.