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 6596 for branches/2016/dev_r6409_SIMPLIF_2_usrdef/NEMOGCM/NEMO/SAO_SRC – NEMO

Ignore:
Timestamp:
2016-05-22T20:11:06+02:00 (8 years ago)
Author:
gm
Message:

#1692 - branch SIMPLIF_2_usrdef: remove from namcfg and namdom many obsolete variables ; remove izoom/jzoom option

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_r6409_SIMPLIF_2_usrdef/NEMOGCM/NEMO/SAO_SRC/nemogcm.F90

    r5600 r6596  
    119119      INTEGER ::   ilocal_comm   ! local integer 
    120120      INTEGER ::   ios 
    121       CHARACTER(len=80), DIMENSION(16) ::   cltxt 
     121!!gm      CHARACTER(len=80), DIMENSION(16) ::   cltxt 
     122      CHARACTER(len=80), DIMENSION(-10:16) ::   cltxt 
    122123      ! 
    123124      NAMELIST/namctl/ ln_ctl, nn_print, nn_ictls, nn_ictle,   & 
    124125         &             nn_isplt, nn_jsplt, nn_jctls, nn_jctle,   & 
    125126         &             nn_bench, nn_timing 
    126       NAMELIST/namcfg/ cp_cfg, cp_cfz, jp_cfg, jpidta, jpjdta, jpkdta, jpiglo, jpjglo, & 
    127          &             jpizoom, jpjzoom, jperio, ln_use_jattr 
     127      NAMELIST/namcfg/ cp_cfg, cp_cfz, jp_cfg,   & 
     128         &             jperio, ln_use_jattr 
    128129      !!---------------------------------------------------------------------- 
    129130      ! 
     
    161162      jpidta  = jpiglo 
    162163      jpjdta  = jpjglo 
    163       jpizoom = 1 
    164       jpjzoom = 1 
    165164      nperio  = 0 
    166165      jperio  = 0 
     
    333332         WRITE(numout,*) '      configuration zoom name         cp_cfz      = ', TRIM(cp_cfz) 
    334333         WRITE(numout,*) '      configuration resolution        jp_cfg      = ', jp_cfg 
    335          WRITE(numout,*) '      1st lateral dimension ( >= jpi ) jpidta     = ', jpidta 
    336          WRITE(numout,*) '      2nd    "         "    ( >= jpj ) jpjdta     = ', jpjdta 
    337          WRITE(numout,*) '      3nd    "         "               jpkdta     = ', jpkdta 
    338          WRITE(numout,*) '      1st dimension of global domain in i jpiglo  = ', jpiglo 
    339          WRITE(numout,*) '      2nd    -                  -    in j jpjglo  = ', jpjglo 
    340          WRITE(numout,*) '      left bottom i index of the zoom (in data domain) jpizoom = ', jpizoom 
    341          WRITE(numout,*) '      left bottom j index of the zoom (in data domain) jpizoom = ', jpjzoom 
    342334         WRITE(numout,*) '      lateral cond. type (between 0 and 6) jperio = ', jperio    
    343335         WRITE(numout,*) '      use file attribute if exists as i/p j-start ln_use_jattr = ', ln_use_jattr 
     
    382374      ENDIF 
    383375      ! 
    384       IF( nbench == 1 ) THEN              ! Benchmark 
    385          SELECT CASE ( cp_cfg ) 
    386          CASE ( 'gyre' )   ;   CALL ctl_warn( ' The Benchmark is activated ' ) 
    387          CASE DEFAULT      ;   CALL ctl_stop( ' The Benchmark is based on the GYRE configuration:',   & 
    388             &                                 ' cp_cfg = "gyre" in namelist &namcfg or set nbench = 0' ) 
    389          END SELECT 
    390       ENDIF 
    391       ! 
    392376      IF( 1_wp /= SIGN(1._wp,-0._wp)  )   CALL ctl_stop( 'nemo_ctl: The intrinsec SIGN function follows ',  & 
    393377         &                                               'f2003 standard. '                              ,  & 
Note: See TracChangeset for help on using the changeset viewer.