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.
dom_ice_2.F90 in branches/devmercator2010/NEMO/LIM_SRC_2 – NEMO

source: branches/devmercator2010/NEMO/LIM_SRC_2/dom_ice_2.F90 @ 2076

Last change on this file since 2076 was 2076, checked in by cbricaud, 14 years ago

add change dev_1784_EVP

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.2 KB
Line 
1MODULE dom_ice_2
2   !!======================================================================
3   !!                   ***  MODULE  dom_ice  ***
4   !! LIM 2.0 Sea Ice :   Domain  variables
5   !!======================================================================
6   !! History :   2.0  !  03-08  (C. Ethe)  Free form and module
7   !!             3.3  !  09-05 (G.Garric) addition of the lim2_evp cas
8   !!----------------------------------------------------------------------
9#if defined key_lim2
10   !!----------------------------------------------------------------------
11   !!   LIM 2.0, UCL-LOCEAN-IPSL (2005)
12   !! $Id$
13   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
14   !!----------------------------------------------------------------------
15   USE par_ice_2
16
17   IMPLICIT NONE
18   PRIVATE
19
20   LOGICAL, PUBLIC ::   l_jeq     = .TRUE.     !: Equator inside the domain flag
21
22   INTEGER, PUBLIC ::   njeq , njeqm1          !: j-index of the equator if it is inside the domain
23      !                                        !  (otherwise = jpj+10 (SH) or -10 (SH) )
24
25   REAL(wp), PUBLIC, DIMENSION(jpi,jpj)         ::   fs2cor , fcor,   &  !: coriolis factor and coeficient
26      &                                              covrai ,         &  !: sine of geographic latitude
27      &                                              area   ,         &  !: surface of grid cell
28      &                                              tms    , tmu        !: temperature and velocity points masks
29   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2)     ::   wght                !: weight of the 4 neighbours to compute averages
30
31#if defined key_lim2_vp
32   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2)     ::                     &
33      &                                              akappa , bkappa     !: first and third group of metric coefficients
34   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2,2,2) ::   alambd              !: second group of metric coefficients
35#else
36   REAL(wp), PUBLIC, DIMENSION(jpi,jpj)         ::   tmv    , tmf        !: y-velocity and F-points masks
37   REAL(wp), PUBLIC, DIMENSION(jpi,jpj)         ::   tmi                 !: ice mask: =1 if ice thick > 0
38#endif
39   !!======================================================================
40#endif
41END MODULE dom_ice_2
Note: See TracBrowser for help on using the repository browser.