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 @ 215

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

CT : UPDATE151 : New trends organization

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