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/FLO/floats.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/FLO/floats.F90

    r3294 r4147  
    7878      !!---------------------------------------------------------------------- 
    7979      INTEGER :: jfl 
     80      INTEGER :: ios                 ! Local integer output status for namelist read 
    8081      ! 
    8182      NAMELIST/namflo/ jpnfl, jpnnewflo, ln_rstflo, nn_writefl, nn_stockfl, ln_argo, ln_flork4, ln_ariane, ln_flo_ascii 
     
    8889      IF(lwp) WRITE(numout,*) '~~~~~~~' 
    8990 
    90       REWIND( numnam )              ! Namelist namflo : floats 
    91       READ  ( numnam, namflo ) 
     91      REWIND( numnam_ref )              ! Namelist namflo in reference namelist : Floats 
     92      READ  ( numnam_ref, namflo, IOSTAT = ios, ERR = 901) 
     93901   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namflo in reference namelist', lwp ) 
     94 
     95      REWIND( numnam_cfg )              ! Namelist namflo in configuration namelist : Floats 
     96      READ  ( numnam_cfg, namflo, IOSTAT = ios, ERR = 902 ) 
     97902   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namflo in configuration namelist', lwp ) 
     98      WRITE ( numond, namflo ) 
    9299      ! 
    93100      IF(lwp) THEN                  ! control print 
Note: See TracChangeset for help on using the changeset viewer.