1 | MODULE dom_ice |
---|
2 | !!====================================================================== |
---|
3 | !! *** MODULE dom_ice *** |
---|
4 | !! LIM Sea Ice : Domain variables |
---|
5 | !!====================================================================== |
---|
6 | !! History : |
---|
7 | !! 2.0 ! 03-08 (C. Ethe) Free form and module |
---|
8 | !!---------------------------------------------------------------------- |
---|
9 | !! LIM 2.0, UCL-LOCEAN-IPSL (2005) |
---|
10 | !! $Header$ |
---|
11 | !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt |
---|
12 | !!---------------------------------------------------------------------- |
---|
13 | !! * Modules used |
---|
14 | USE par_ice |
---|
15 | |
---|
16 | IMPLICIT NONE |
---|
17 | PRIVATE |
---|
18 | |
---|
19 | !! * Share module variables |
---|
20 | LOGICAL, PUBLIC :: & !: |
---|
21 | l_jeq = .TRUE. !: Equator inside the domain flag |
---|
22 | |
---|
23 | INTEGER, PUBLIC :: & !: |
---|
24 | njeq , njeqm1 !: j-index of the equator if it is inside the domain |
---|
25 | ! ! (otherwise = jpj+10 (SH) or -10 (SH) ) |
---|
26 | |
---|
27 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj) :: & !: |
---|
28 | fs2cor , & !: coriolis factor |
---|
29 | fcor , & !: coriolis coefficient |
---|
30 | covrai , & !: sine of geographic latitude |
---|
31 | area , & !: surface of grid cell |
---|
32 | tms , tmu !: temperature and velocity points masks |
---|
33 | |
---|
34 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2) :: & !: |
---|
35 | wght , & !: weight of the 4 neighbours to compute averages |
---|
36 | akappa , & !: first group of metric coefficients |
---|
37 | bkappa !: third group of metric coefficients |
---|
38 | |
---|
39 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2,2,2) :: & !: |
---|
40 | alambd !: second group of metric coefficients |
---|
41 | |
---|
42 | !!====================================================================== |
---|
43 | END MODULE dom_ice |
---|