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 11822 for NEMO/branches/2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps/src/OCE/ZDF/zdfdrg.F90 – NEMO

Ignore:
Timestamp:
2019-10-29T11:41:36+01:00 (4 years ago)
Author:
acc
Message:

Branch 2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps. Sette tested updates to branch to align with trunk changes between 10721 and 11740. Sette tests are passing but results differ from branch before these changes (except for GYRE_PISCES and VORTEX) and branch results already differed from trunk because of algorithmic fixes. Will need more checks to confirm correctness.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps/src/OCE/ZDF/zdfdrg.F90

    r10955 r11822  
    240240      REWIND( numnam_ref )                   ! Namelist namdrg in reference namelist 
    241241      READ  ( numnam_ref, namdrg, IOSTAT = ios, ERR = 901) 
    242 901   IF( ios /= 0 )   CALL ctl_nam( ios , 'namdrg in reference namelist', lwp ) 
     242901   IF( ios /= 0 )   CALL ctl_nam( ios , 'namdrg in reference namelist' ) 
    243243      REWIND( numnam_cfg )                   ! Namelist namdrg in configuration namelist 
    244244      READ  ( numnam_cfg, namdrg, IOSTAT = ios, ERR = 902 ) 
    245 902   IF( ios >  0 )   CALL ctl_nam( ios , 'namdrg in configuration namelist', lwp ) 
     245902   IF( ios >  0 )   CALL ctl_nam( ios , 'namdrg in configuration namelist' ) 
    246246      IF(lwm) WRITE ( numond, namdrg ) 
    247247      ! 
     
    340340      IF(ll_top)   READ  ( numnam_ref, namdrg_top, IOSTAT = ios, ERR = 901) 
    341341      IF(ll_bot)   READ  ( numnam_ref, namdrg_bot, IOSTAT = ios, ERR = 901) 
    342 901   IF( ios /= 0 )   CALL ctl_nam( ios , TRIM(cl_namref), lwp ) 
     342901   IF( ios /= 0 )   CALL ctl_nam( ios , TRIM(cl_namref) ) 
    343343      REWIND( numnam_cfg )                   ! Namelist cd_namdrg in configuration namelist 
    344344      IF(ll_top)   READ  ( numnam_cfg, namdrg_top, IOSTAT = ios, ERR = 902 ) 
    345345      IF(ll_bot)   READ  ( numnam_cfg, namdrg_bot, IOSTAT = ios, ERR = 902 ) 
    346 902   IF( ios >  0 )   CALL ctl_nam( ios , TRIM(cl_namcfg), lwp ) 
     346902   IF( ios >  0 )   CALL ctl_nam( ios , TRIM(cl_namcfg) ) 
    347347      IF(lwm .AND. ll_top)   WRITE ( numond, namdrg_top ) 
    348348      IF(lwm .AND. ll_bot)   WRITE ( numond, namdrg_bot ) 
Note: See TracChangeset for help on using the changeset viewer.