MODULE trdvor_oce !!====================================================================== !! *** MODULE trdvor_oce *** !! Ocean trends : set vorticity trend variables !!====================================================================== !! History : 1.0 ! 04-2006 (L. Brunier, A-M. Treguier) Original code !!---------------------------------------------------------------------- USE par_oce ! ocean parameters IMPLICIT NONE PRIVATE ! !!* vorticity trends index INTEGER, PUBLIC, PARAMETER :: jpltot_vor = 10 !: Number of vorticity trend terms INTEGER, PUBLIC, PARAMETER :: jpltype_vor = 2 !: Number of of types of vorticity trend ! INTEGER, PUBLIC, PARAMETER :: jptype_vor_avg = 1 !: curl(vertical average) INTEGER, PUBLIC, PARAMETER :: jptype_vor_int = 2 !: curl(vertical integral)/H ! INTEGER, PUBLIC, PARAMETER :: jpvor_prg = 1 !: Pressure Gradient Trend INTEGER, PUBLIC, PARAMETER :: jpvor_keg = 2 !: KE Gradient Trend INTEGER, PUBLIC, PARAMETER :: jpvor_rvo = 3 !: Relative Vorticity Trend INTEGER, PUBLIC, PARAMETER :: jpvor_pvo = 4 !: Planetary Vorticity Term Trend INTEGER, PUBLIC, PARAMETER :: jpvor_ldf = 5 !: Horizontal Diffusion Trend INTEGER, PUBLIC, PARAMETER :: jpvor_zad = 6 !: Vertical Advection Trend INTEGER, PUBLIC, PARAMETER :: jpvor_zdf = 7 !: Vertical Diffusion Trend INTEGER, PUBLIC, PARAMETER :: jpvor_spg = 8 !: Surface Pressure Grad. Trend INTEGER, PUBLIC, PARAMETER :: jpvor_swf = 9 !: wind stress forcing term INTEGER, PUBLIC, PARAMETER :: jpvor_bfr = 10 !: bottom friction term ! !!---------------------------------------------------------------------- !! NEMO/OCE 4.0 , NEMO Consortium (2018) !! $Id$ !! Software governed by the CeCILL licence (./LICENSE) !!====================================================================== END MODULE trdvor_oce