1 | MODULE 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 | !!---------------------------------------------------------------------- |
---|
8 | #if defined key_lim2 |
---|
9 | !!---------------------------------------------------------------------- |
---|
10 | !! LIM 2.0, UCL-LOCEAN-IPSL (2005) |
---|
11 | !! $Id$ |
---|
12 | !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) |
---|
13 | !!---------------------------------------------------------------------- |
---|
14 | USE par_ice_2 |
---|
15 | |
---|
16 | IMPLICIT NONE |
---|
17 | PRIVATE |
---|
18 | |
---|
19 | LOGICAL, PUBLIC :: l_jeq = .TRUE. !: Equator inside the domain flag |
---|
20 | LOGICAL, PUBLIC :: ln_limini = .FALSE. !: Ice initialization state |
---|
21 | LOGICAL, PUBLIC :: ln_limdmp = .FALSE. !: Ice damping |
---|
22 | |
---|
23 | INTEGER, PUBLIC :: njeq , njeqm1 !: j-index of the equator if it is inside the domain |
---|
24 | ! ! (otherwise = jpj+10 (SH) or -10 (SH) ) |
---|
25 | |
---|
26 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj) :: fs2cor , fcor, & !: coriolis factor and coeficient |
---|
27 | & covrai , & !: sine of geographic latitude |
---|
28 | & area , & !: surface of grid cell |
---|
29 | & tms , tmu !: temperature and velocity points masks |
---|
30 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2) :: wght , & !: weight of the 4 neighbours to compute averages |
---|
31 | & akappa , bkappa !: first and third group of metric coefficients |
---|
32 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2,2,2) :: alambd !: second group of metric coefficients |
---|
33 | |
---|
34 | !!====================================================================== |
---|
35 | #endif |
---|
36 | END MODULE dom_ice_2 |
---|