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/2020/ticket2377/doc/namelists – NEMO

source: NEMO/branches/2020/ticket2377/doc/namelists/namctl @ 12749

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

The big one. Merging all 2019 developments from the option 1 branch back onto the trunk.

This changeset reproduces 2019/dev_r11943_MERGE_2019 on the trunk using a 2-URL merge
onto a working copy of the trunk. I.e.:

svn merge --ignore-ancestry \

svn+ssh://acc@forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/NEMO/trunk \
svn+ssh://acc@forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/NEMO/branches/2019/dev_r11943_MERGE_2019 ./

The --ignore-ancestry flag avoids problems that may otherwise arise from the fact that
the merge history been trunk and branch may have been applied in a different order but
care has been taken before this step to ensure that all applicable fixes and updates
are present in the merge branch.

The trunk state just before this step has been branched to releases/release-4.0-HEAD
and that branch has been immediately tagged as releases/release-4.0.2. Any fixes
or additions in response to tickets on 4.0, 4.0.1 or 4.0.2 should be done on
releases/release-4.0-HEAD. From now on future 'point' releases (e.g. 4.0.2) will
remain unchanged with periodic releases as needs demand. Note release-4.0-HEAD is a
transitional naming convention. Future full releases, say 4.2, will have a release-4.2
branch which fulfills this role and the first point release (e.g. 4.2.0) will be made
immediately following the release branch creation.

2020 developments can be started from any trunk revision later than this one.

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