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 branches/UKMO/dev_r5518_rnf_fix/NEMOGCM/NEMO/OPA_SRC/TRD – NEMO

source: branches/UKMO/dev_r5518_rnf_fix/NEMOGCM/NEMO/OPA_SRC/TRD/trdvor_oce.F90 @ 7800

Last change on this file since 7800 was 7800, checked in by frrh, 7 years ago

Strip out svn keywords and properties

File size: 1.8 KB
Line 
1MODULE trdvor_oce
2   !!======================================================================
3   !!                   ***  MODULE trdvor_oce  ***
4   !! Ocean trends :   set vorticity trend variables
5   !!======================================================================
6   !! History :  1.0  !  04-2006  (L. Brunier, A-M. Treguier) Original code
7   !!----------------------------------------------------------------------
8   
9   USE par_oce      ! ocean parameters
10
11   IMPLICIT NONE
12   PRIVATE
13
14   !                                               !!* vorticity trends index
15   INTEGER, PUBLIC, PARAMETER ::   jpltot_vor = 11  !: Number of vorticity trend terms
16   !
17   INTEGER, PUBLIC, PARAMETER ::   jpvor_prg =  1   !: Pressure Gradient Trend
18   INTEGER, PUBLIC, PARAMETER ::   jpvor_keg =  2   !: KE Gradient Trend
19   INTEGER, PUBLIC, PARAMETER ::   jpvor_rvo =  3   !: Relative Vorticity Trend
20   INTEGER, PUBLIC, PARAMETER ::   jpvor_pvo =  4   !: Planetary Vorticity Term Trend
21   INTEGER, PUBLIC, PARAMETER ::   jpvor_ldf =  5   !: Horizontal Diffusion Trend
22   INTEGER, PUBLIC, PARAMETER ::   jpvor_zad =  6   !: Vertical Advection Trend
23   INTEGER, PUBLIC, PARAMETER ::   jpvor_zdf =  7   !: Vertical Diffusion Trend
24   INTEGER, PUBLIC, PARAMETER ::   jpvor_spg =  8   !: Surface Pressure Grad. Trend
25   INTEGER, PUBLIC, PARAMETER ::   jpvor_bev =  9   !: Beta V
26   INTEGER, PUBLIC, PARAMETER ::   jpvor_swf = 10   !: wind stress forcing term
27   INTEGER, PUBLIC, PARAMETER ::   jpvor_bfr = 11   !: bottom friction term
28
29   !!----------------------------------------------------------------------
30   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
31   !! $Id$
32   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
33   !!======================================================================
34END MODULE trdvor_oce
Note: See TracBrowser for help on using the repository browser.