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.
namctl in NEMO/branches/2019/fix_sn_cfctl_ticket2328/doc/namelists – NEMO

source: NEMO/branches/2019/fix_sn_cfctl_ticket2328/doc/namelists/namctl @ 11869

Last change on this file since 11869 was 11869, checked in by acc, 4 years ago

Branch 2019/fix_sn_cfctl_ticket2328. Changes to enable correct functionality for the sn_cfctl%l_mppout and sn_cfctl%l_mpptop options. These changes also introduce a sn_cfctl%l_oasout option to toggle the OASIS setup information (sbccpl.F90, only) which was yet another misuse of ln_ctl. The next step may be to remove most references to ln_ctl altogether and provide a single control mechanism. TBD. See ticket #2328

  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-fortran
File size: 1.9 KB
RevLine 
[707]1!-----------------------------------------------------------------------
[10075]2&namctl        !   Control prints                                       (default: OFF)
[707]3!-----------------------------------------------------------------------
[10601]4   ln_ctl = .FALSE.                 ! Toggle all report printing on/off (T/F); Ignored if sn_cfctl%l_config is T
5     sn_cfctl%l_config = .TRUE.     ! IF .true. then control which reports are written with the following
6       sn_cfctl%l_runstat = .FALSE. ! switches and which areas produce reports with the proc integer settings.
7       sn_cfctl%l_trcstat = .FALSE. ! The default settings for the proc integers should ensure
8       sn_cfctl%l_oceout  = .FALSE. ! that  all areas report.
9       sn_cfctl%l_layout  = .FALSE. !
10       sn_cfctl%l_mppout  = .FALSE. !
11       sn_cfctl%l_mpptop  = .FALSE. !
[11869]12       sn_cfctl%l_oasout  = .FALSE. !
[10601]13       sn_cfctl%procmin   = 0       ! Minimum area number for reporting [default:0]
14       sn_cfctl%procmax   = 1000000 ! Maximum area number for reporting [default:1000000]
15       sn_cfctl%procincr  = 1       ! Increment for optional subsetting of areas [default:1]
16       sn_cfctl%ptimincr  = 1       ! Timestep increment for writing time step progress info
[2282]17   nn_print    =    0      !  level of print (0 no extra print)
[2540]18   nn_ictls    =    0      !  start i indice of control sum (use to compare mono versus
19   nn_ictle    =    0      !  end   i indice of control sum        multi processor runs
20   nn_jctls    =    0      !  start j indice of control               over a subdomain)
21   nn_jctle    =    0      !  end   j indice of control
22   nn_isplt    =    1      !  number of processors in i-direction
23   nn_jsplt    =    1      !  number of processors in j-direction
[9019]24   ln_timing   = .false.   !  timing by routine write out in timing.output file
25   ln_diacfl   = .false.   !  CFL diagnostics write out in cfl_diagnostics.ascii
[2540]26/
Note: See TracBrowser for help on using the repository browser.