trdvor_oce.F90 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. MODULE 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. USE par_oce ! ocean parameters
  9. IMPLICIT NONE
  10. PRIVATE
  11. ! !!* vorticity trends index
  12. INTEGER, PUBLIC, PARAMETER :: jpltot_vor = 11 !: Number of vorticity trend terms
  13. !
  14. INTEGER, PUBLIC, PARAMETER :: jpvor_prg = 1 !: Pressure Gradient Trend
  15. INTEGER, PUBLIC, PARAMETER :: jpvor_keg = 2 !: KE Gradient Trend
  16. INTEGER, PUBLIC, PARAMETER :: jpvor_rvo = 3 !: Relative Vorticity Trend
  17. INTEGER, PUBLIC, PARAMETER :: jpvor_pvo = 4 !: Planetary Vorticity Term Trend
  18. INTEGER, PUBLIC, PARAMETER :: jpvor_ldf = 5 !: Horizontal Diffusion Trend
  19. INTEGER, PUBLIC, PARAMETER :: jpvor_zad = 6 !: Vertical Advection Trend
  20. INTEGER, PUBLIC, PARAMETER :: jpvor_zdf = 7 !: Vertical Diffusion Trend
  21. INTEGER, PUBLIC, PARAMETER :: jpvor_spg = 8 !: Surface Pressure Grad. Trend
  22. INTEGER, PUBLIC, PARAMETER :: jpvor_bev = 9 !: Beta V
  23. INTEGER, PUBLIC, PARAMETER :: jpvor_swf = 10 !: wind stress forcing term
  24. INTEGER, PUBLIC, PARAMETER :: jpvor_bfr = 11 !: bottom friction term
  25. !!----------------------------------------------------------------------
  26. !! NEMO/OPA 3.3 , NEMO Consortium (2010)
  27. !! $Id: trdvor_oce.F90 4990 2014-12-15 16:42:49Z timgraham $
  28. !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
  29. !!======================================================================
  30. END MODULE trdvor_oce