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/OPA_SRC/DYN – 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

Location:
branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/DYN
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/DYN/dynspg.F90

    r9168 r9169  
    194194      !!---------------------------------------------------------------------- 
    195195      ! 
     196      IF(lwp) THEN 
     197         WRITE(numout,*) 
     198         WRITE(numout,*) 'dyn_spg_init : choice of the surface pressure gradient scheme' 
     199         WRITE(numout,*) '~~~~~~~~~~~~' 
     200      ENDIF 
     201      ! 
    196202      REWIND( numnam_ref )              ! Namelist namdyn_spg in reference namelist : Free surface 
    197203      READ  ( numnam_ref, namdyn_spg, IOSTAT = ios, ERR = 901) 
     
    204210      ! 
    205211      IF(lwp) THEN             ! Namelist print 
    206          WRITE(numout,*) 
    207          WRITE(numout,*) 'dyn_spg_init : choice of the surface pressure gradient scheme' 
    208          WRITE(numout,*) '~~~~~~~~~~~' 
    209          WRITE(numout,*) '     Explicit free surface                  ln_dynspg_exp = ', ln_dynspg_exp 
    210          WRITE(numout,*) '     Free surface with time splitting       ln_dynspg_ts  = ', ln_dynspg_ts 
     212         WRITE(numout,*) '   Namelist : namdyn_spg                    ' 
     213         WRITE(numout,*) '      Explicit free surface                  ln_dynspg_exp = ', ln_dynspg_exp 
     214         WRITE(numout,*) '      Free surface with time splitting       ln_dynspg_ts  = ', ln_dynspg_ts 
    211215      ENDIF 
    212216      !                          ! Control of surface pressure gradient scheme options 
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/DYN/dynspg_ts.F90

    r9124 r9169  
    14241424      ! Print results 
    14251425      IF(lwp) WRITE(numout,*) 
    1426       IF(lwp) WRITE(numout,*) 'dyn_spg_ts : split-explicit free surface' 
    1427       IF(lwp) WRITE(numout,*) '~~~~~~~~~~' 
     1426      IF(lwp) WRITE(numout,*) 'dyn_spg_ts_init : split-explicit free surface' 
     1427      IF(lwp) WRITE(numout,*) '~~~~~~~~~~~~~~~' 
    14281428      IF( ln_bt_auto ) THEN 
    1429          IF(lwp) WRITE(numout,*) '     ln_ts_auto=.true. Automatically set nn_baro ' 
     1429         IF(lwp) WRITE(numout,*) '     ln_ts_auto =.true. Automatically set nn_baro ' 
    14301430         IF(lwp) WRITE(numout,*) '     Max. courant number allowed: ', rn_bt_cmax 
    14311431      ELSE 
    1432          IF(lwp) WRITE(numout,*) '     ln_ts_auto=.false.: Use nn_baro in namelist ' 
     1432         IF(lwp) WRITE(numout,*) '     ln_ts_auto=.false.: Use nn_baro in namelist   nn_baro = ', nn_baro 
    14331433      ENDIF 
    14341434 
    14351435      IF(ln_bt_av) THEN 
    1436          IF(lwp) WRITE(numout,*) '     ln_bt_av=.true.  => Time averaging over nn_baro time steps is on ' 
     1436         IF(lwp) WRITE(numout,*) '     ln_bt_av =.true.  ==> Time averaging over nn_baro time steps is on ' 
    14371437      ELSE 
    1438          IF(lwp) WRITE(numout,*) '     ln_bt_av=.false. => No time averaging of barotropic variables ' 
     1438         IF(lwp) WRITE(numout,*) '     ln_bt_av =.false. => No time averaging of barotropic variables ' 
    14391439      ENDIF 
    14401440      ! 
     
    14561456         CASE( 1 )      ;   IF(lwp) WRITE(numout,*) '           Boxcar: width = nn_baro' 
    14571457         CASE( 2 )      ;   IF(lwp) WRITE(numout,*) '           Boxcar: width = 2*nn_baro'  
    1458          CASE DEFAULT   ;   CALL ctl_stop( 'unrecognised value for nn_bt_flt: should 0,1,2' ) 
     1458         CASE DEFAULT   ;   CALL ctl_stop( 'unrecognised value for nn_bt_flt: should 0,1, or 2' ) 
    14591459      END SELECT 
    14601460      ! 
Note: See TracChangeset for help on using the changeset viewer.