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.
zdf_oce.F90 in tags/start/NEMO/OFF_SRC/ZDF – NEMO

source: tags/start/NEMO/OFF_SRC/ZDF/zdf_oce.F90 @ 8345

Last change on this file since 8345 was 325, checked in by opalod, 19 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 KB
Line 
1MODULE zdf_oce
2   !!======================================================================
3   !!              ***  MODULE  zdf_oce  ***
4   !! Ocean physics : define vertical mixing variables
5   !!=====================================================================
6
7   !!----------------------------------------------------------------------
8   !!   zdf_init    : initialization, namelist read, and parameters control
9   !!----------------------------------------------------------------------
10   !! * Modules used
11   USE par_oce         ! mesh and scale factors
12
13   IMPLICIT NONE
14   PRIVATE
15
16   !! * Share Module variables
17
18   REAL(wp), PUBLIC ::   & !!: namzdf   vertical diffusion
19      avt0  = 1.e-5_wp     !: vertical eddy diffusivity (m2/s)
20
21   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,jpk) ::   &   !:
22      avt                   !: vertical diffusivity coeff. at w-point
23 
24   REAL(wp), PUBLIC, DIMENSION(jpk) ::   &   !:
25      avtb            !: background profile of avm and avt
26
27   LOGICAL, PUBLIC ::    &   !:
28      ln_zdfnpc        = .FALSE.        !: convection: non-penetrative convection flag
29 
30   !!======================================================================
31END MODULE zdf_oce
Note: See TracBrowser for help on using the repository browser.