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 – NEMO

source: trunk/NEMO/LIM_SRC/dom_ice.F90 @ 3

Last change on this file since 3 was 3, checked in by opalod, 20 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1MODULE dom_ice
2   !!======================================================================
3   !!             ***  MODULE  dom_ice  ***
4   !!                   Sea Ice Domain 
5   !!======================================================================
6   !!
7   !! ** Purpose :
8   !!       - Define in memory coefficients of Sea Ice model
9   !!
10   !! History :
11   !!   2.0  !  03-08  (C. Ethe)  Free form and module
12   !! * Modules used
13   USE par_ice
14
15   IMPLICIT NONE
16
17   !!----------------------------------------------------------------------
18   !!  LIM 2.0, UCL-LODYC-IPSL (2002)
19   !!----------------------------------------------------------------------
20
21   REAL(wp),DIMENSION(jpi,jpj) ::  & 
22      area          ! Surface of a grid square
23 
24
25   REAL(wp),DIMENSION(jpi,jpj,2,2) ::  &
26      wght   ,   &  ! weight of the 4 neighbours to compute averages
27      akappa ,   &  ! first group of metric coefficients
28      bkappa        ! third group of metric coefficients
29
30   REAL(wp),DIMENSION(jpi,jpj) :: &
31      tms  ,tmu     ! masks arrays
32
33   REAL(wp),DIMENSION(jpi,jpj,2,2,2,2) ::  &
34      alambd        ! second group of metric coefficients
35
36   REAL(wp) ::  &
37      dz            ! depht of the 1st ocean level
38
39   REAL(wp),DIMENSION(jpi,jpj) ::  & 
40      fs2cor ,   &  !  coriolis factor
41      fcor   ,   &  !  coriolis coefficient
42      covrai ,   &  !  sine of geographic latitude
43      aire          !  total area
44
45   INTEGER  :: &
46      jeq , jeqm1
47
48   !!======================================================================
49END MODULE dom_ice
Note: See TracBrowser for help on using the repository browser.