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/nemo_v3_2/nemo_v3_2/NEMO/OFF_SRC/ZDF – NEMO

source: tags/nemo_v3_2/nemo_v3_2/NEMO/OFF_SRC/ZDF/zdf_oce.F90 @ 1878

Last change on this file since 1878 was 1878, checked in by flavoni, 14 years ago

initial test for nemogcm

File size: 1.4 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   !!   OPA 9.0 , LOCEAN-IPSL  (2005)
11   !!   $Id: zdf_oce.F90 1152 2008-06-26 14:11:13Z rblod $
12   !!   This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
13   !!----------------------------------------------------------------------
14   !! * Modules used
15   USE par_oce         ! mesh and scale factors
16
17   IMPLICIT NONE
18   PRIVATE
19
20   !! * Share Module variables
21
22   REAL(wp), PUBLIC ::   & !!: namzdf   vertical diffusion
23      avt0  = 1.e-5_wp     !: vertical eddy diffusivity (m2/s)
24
25   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,jpk) ::   &   !:
26      avt                   !: vertical diffusivity coeff. at w-point
27 
28   REAL(wp), PUBLIC, DIMENSION(jpk) ::   &   !:
29      avtb            !: background profile of avm and avt
30
31   LOGICAL, PUBLIC ::    &   !:
32      ln_zdfnpc        = .FALSE.        !: convection: non-penetrative convection flag
33 
34   !!======================================================================
35END MODULE zdf_oce
Note: See TracBrowser for help on using the repository browser.