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 11320 for NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/tests/ISOMIP/MY_SRC/usrdef_nam.F90 – NEMO

Ignore:
Timestamp:
2019-07-22T14:52:29+02:00 (5 years ago)
Author:
smasson
Message:

dev_r10984_HPC-13 : add missing if(lwp) in [11317], see #2307 and #2285

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/tests/ISOMIP/MY_SRC/usrdef_nam.F90

    r11317 r11320  
    7878      kpk = INT( rbathy / rn_e3    ) + 1     ! add 1 for t-point in the seafloor 
    7979      ! 
    80       !                             ! control print 
    81       WRITE(numout,*) '   ' 
    82       WRITE(numout,*) 'usr_def_nam  : read the user defined namelist (namusr_def) in namelist_cfg' 
    83       WRITE(numout,*) '~~~~~~~~~~~ ' 
    84       WRITE(numout,*) '   Namelist namusr_def : ISOMIP test case' 
    85       WRITE(numout,*) '      type of vertical coordinate : ' 
    86       WRITE(numout,*) '         z-coordinate flag                     ln_zco   = ', ln_zco 
    87       WRITE(numout,*) '         z-partial-step coordinate flag        ln_zps   = ', ln_zps 
    88       WRITE(numout,*) '         s-coordinate flag                     ln_sco   = ', ln_sco 
    89       WRITE(numout,*) '      resolution' 
    90       WRITE(numout,*) '         zonal      resolution                 rn_e1deg = ', rn_e1deg, ' degrees' 
    91       WRITE(numout,*) '         meridional resolution                 rn_e1deg = ', rn_e1deg, ' degrees' 
    92       WRITE(numout,*) '         vertical   resolution                 rn_e3    = ', rn_e3   , ' meters' 
    93       WRITE(numout,*) '      ISOMIP domain = 15° x 10° x 900 m' 
    94       WRITE(numout,*) '         resulting global domain size :        jpiglo   = ', kpi 
    95       WRITE(numout,*) '                                               jpjglo   = ', kpj 
    96       WRITE(numout,*) '                                               jpkglo   = ', kpk 
    97       ! 
    98       ! 
    9980      !                             ! Set the lateral boundary condition of the global domain 
    10081      kperio = 0                    ! ISOMIP configuration : close basin 
    10182      ! 
    102       WRITE(numout,*) '   ' 
    103       WRITE(numout,*) '   Lateral boundary condition of the global domain' 
    104       WRITE(numout,*) '      ISOMIP : closed basin                    jperio   = ', kperio 
     83      !                             ! control print 
     84      IF(lwp) THEN 
     85         WRITE(numout,*) '   ' 
     86         WRITE(numout,*) 'usr_def_nam  : read the user defined namelist (namusr_def) in namelist_cfg' 
     87         WRITE(numout,*) '~~~~~~~~~~~ ' 
     88         WRITE(numout,*) '   Namelist namusr_def : ISOMIP test case' 
     89         WRITE(numout,*) '      type of vertical coordinate : ' 
     90         WRITE(numout,*) '         z-coordinate flag                     ln_zco   = ', ln_zco 
     91         WRITE(numout,*) '         z-partial-step coordinate flag        ln_zps   = ', ln_zps 
     92         WRITE(numout,*) '         s-coordinate flag                     ln_sco   = ', ln_sco 
     93         WRITE(numout,*) '      resolution' 
     94         WRITE(numout,*) '         zonal      resolution                 rn_e1deg = ', rn_e1deg, ' degrees' 
     95         WRITE(numout,*) '         meridional resolution                 rn_e1deg = ', rn_e1deg, ' degrees' 
     96         WRITE(numout,*) '         vertical   resolution                 rn_e3    = ', rn_e3   , ' meters' 
     97         WRITE(numout,*) '      ISOMIP domain = 15° x 10° x 900 m' 
     98         WRITE(numout,*) '         resulting global domain size :        jpiglo   = ', kpi 
     99         WRITE(numout,*) '                                               jpjglo   = ', kpj 
     100         WRITE(numout,*) '                                               jpkglo   = ', kpk 
     101         WRITE(numout,*) '   ' 
     102         WRITE(numout,*) '   Lateral boundary condition of the global domain' 
     103         WRITE(numout,*) '      ISOMIP : closed basin                    jperio   = ', kperio 
     104      ENDIF 
    105105      ! 
    106106   END SUBROUTINE usr_def_nam 
Note: See TracChangeset for help on using the changeset viewer.