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 branches/dev_002_LIM/NEMO/LIM_SRC_3 – NEMO

source: branches/dev_002_LIM/NEMO/LIM_SRC_3/dom_ice.F90 @ 830

Last change on this file since 830 was 825, checked in by ctlod, 16 years ago

dev_002_LIM : add the LIM 3.0 component, see ticketr: #71

File size: 1.9 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   !!----------------------------------------------------------------------
9   !!   LIM 2.0, UCL-LOCEAN-IPSL (2005)
10   !! $Header: /home/opalod/NEMOCVSROOT/NEMO/LIM_SRC/dom_ice.F90,v 1.4 2005/03/27 18:34:40 opalod Exp $
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 , tmi ,       &  !: temperature mask, mask for stress
33      tmu , tmv ,       &  !: mask at u-v velocity points
34      tmf
35
36   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2) ::   &  !:
37      wght   ,          &  !: weight of the 4 neighbours to compute averages
38      akappa ,          &  !: first group of metric coefficients
39      bkappa               !: third group of metric coefficients
40
41   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2,2,2) ::   &  !:
42      alambd               !: second group of metric coefficients
43
44   !!======================================================================
45END MODULE dom_ice
Note: See TracBrowser for help on using the repository browser.