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.F90 in trunk/NEMO/LIM_SRC_3 – NEMO

source: trunk/NEMO/LIM_SRC_3/dom_ice.F90 @ 941

Last change on this file since 941 was 921, checked in by rblod, 16 years ago

Correct indentation and print for debug in LIM3, see ticket #134, step I

File size: 2.0 KB
Line 
1MODULE 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   !!   3.0  !  03-08  (M. Vancoppenolle), Ice cats, salinity and EVP-C
9   !!----------------------------------------------------------------------
10   !!   LIM 3.0, UCL-ASTR-LOCEAN-IPSL (2005)
11   !! $Header: /home/opalod/NEMOCVSROOT/NEMO/LIM_SRC/dom_ice.F90,v 1.4 2005/03/27 18:34:40 opalod Exp $
12   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
13   !!----------------------------------------------------------------------
14   !! * Modules used
15   USE par_ice
16
17   IMPLICIT NONE
18   PRIVATE
19
20   !! * Share module variables
21   LOGICAL, PUBLIC ::   &  !:
22      l_jeq = .TRUE.       !: Equator inside the domain flag
23
24   INTEGER, PUBLIC ::   &  !:
25      njeq , njeqm1        !: j-index of the equator if it is inside the domain
26   !                    !  (otherwise = jpj+10 (SH) or -10 (SH) )
27
28   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   &  !:
29      fs2cor ,          &  !: coriolis factor
30      fcor   ,          &  !: coriolis coefficient
31      covrai ,          &  !: sine of geographic latitude
32      area   ,          &  !: surface of grid cell
33      tms , tmi ,       &  !: temperature mask, mask for stress
34      tmu , tmv ,       &  !: mask at u-v velocity points
35      tmf
36
37   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2) ::   &  !:
38      wght   ,          &  !: weight of the 4 neighbours to compute averages
39      akappa ,          &  !: first group of metric coefficients
40      bkappa               !: third group of metric coefficients
41
42   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2,2,2) ::   &  !:
43      alambd               !: second group of metric coefficients
44
45   !!======================================================================
46END MODULE dom_ice
Note: See TracBrowser for help on using the repository browser.