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.
trdvor_oce.F90 in trunk/NEMO/OPA_SRC/TRD – NEMO

source: trunk/NEMO/OPA_SRC/TRD/trdvor_oce.F90 @ 247

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

CL : Add CVS Header and CeCILL licence information

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1MODULE trdvor_oce
2   !!======================================================================
3   !!                   ***  MODULE trdvor_oce  ***
4   !! Ocean trends :   set vorticity trend variables
5   !!======================================================================
6   !!----------------------------------------------------------------------
7   !!  OPA 9.0 , LOCEAN-IPSL (2005)
8   !! $Header$
9   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
10   !!----------------------------------------------------------------------
11   !!----------------------------------------------------------------------
12   !! * Modules used
13   USE par_oce      ! ocean parameters
14
15   IMPLICIT NONE
16   PUBLIC
17
18   INTEGER,PARAMETER :: jplvor = 11     ! Number of vorticity trend terms
19
20   INTEGER, PARAMETER ::            &  !: vorticity trends index
21      jpvorprg = 1,   &  !: Pressure Gradient Trend
22      jpvorkeg = 2,   &  !: KE Gradient Trend
23      jpvorrvo = 3,   &  !: Relative Vorticity Trend
24      jpvorpvo = 4,   &  !: Planetary Vorticity Term Trend
25      jpvorldf = 5,   &  !: Horizontal Diffusion Trend
26      jpvorzad = 6,   &  !: Vertical Advection Trend
27      jpvorzdf = 7,   &  !: Vertical Diffusion Trend
28      jpvorspg = 8,   &  !: Surface Pressure Grad. Trend
29      jpvorbev = 9,   &  !: Beta V
30      jpvorswf =10,   &  !: wind stress forcing term
31      jpvorbfr =11       !: bottom friction term
32
33  !!======================================================================
34END MODULE trdvor_oce
Note: See TracBrowser for help on using the repository browser.