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.
namtra_adv in NEMO/trunk/doc/namelists – NEMO

source: NEMO/trunk/doc/namelists/namtra_adv @ 10125

Last change on this file since 10125 was 10075, checked in by nicolasmartin, 6 years ago

Update of namelist blocks for inclusion in the NEMO manual
Add simple script to check if a block is missing in the documentation

  • Property svn:mime-type set to text/x-fortran
File size: 998 bytes
Line 
1!-----------------------------------------------------------------------
2&namtra_adv    !   advection scheme for tracer                          (default: NO selection)
3!-----------------------------------------------------------------------
4   ln_traadv_OFF = .false. !  No tracer advection
5   ln_traadv_cen = .false. !  2nd order centered scheme
6      nn_cen_h   =  4            !  =2/4, horizontal 2nd order CEN / 4th order CEN
7      nn_cen_v   =  4            !  =2/4, vertical   2nd order CEN / 4th order COMPACT
8   ln_traadv_fct = .false. !  FCT scheme
9      nn_fct_h   =  2            !  =2/4, horizontal 2nd / 4th order
10      nn_fct_v   =  2            !  =2/4, vertical   2nd / COMPACT 4th order
11   ln_traadv_mus = .false. !  MUSCL scheme
12      ln_mus_ups = .false.       !  use upstream scheme near river mouths
13   ln_traadv_ubs = .false. !  UBS scheme
14      nn_ubs_v   =  2            !  =2  , vertical 2nd order FCT / COMPACT 4th order
15   ln_traadv_qck = .false. !  QUICKEST scheme
16/
Note: See TracBrowser for help on using the repository browser.