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 @ 2245

Last change on this file since 2245 was 1608, checked in by ctlod, 15 years ago

nemo 3.1 LIM3 : remove useless akappa and alambd arrays, plus small cosmetic, see ticket: #400

  • Property svn:keywords set to Id
File size: 1.6 KB
RevLine 
[825]1MODULE dom_ice
2   !!======================================================================
3   !!                   ***  MODULE  dom_ice  ***
[1608]4   !! LIM-3 Sea Ice :   Domain  variables
[825]5   !!======================================================================
[1608]6   !! History :  3.0  ! 2003-08  (M. Vancoppenolle)  LIM-3
[825]7   !!----------------------------------------------------------------------
8   USE par_ice
9
10   IMPLICIT NONE
11   PRIVATE
12
[1608]13   LOGICAL, PUBLIC ::   l_jeq = .TRUE.       !: Equator inside the domain flag
[825]14
[1608]15   INTEGER, PUBLIC ::   njeq , njeqm1        !: j-index of the equator if it is inside the domain
[825]16
[1608]17   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   fs2cor     !: coriolis factor
18   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   fcor       !: coriolis coefficient
19   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   covrai     !: sine of geographic latitude
20   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   area       !: surface of grid cell
21   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   tms, tmi   !: temperature mask, mask for stress
22   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   tmu, tmv   !: mask at u and v velocity points
23   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   tmf        !: mask at f-point
[825]24
[1608]25   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2) ::   wght     !: weight of the 4 neighbours to compute averages
[825]26
[1608]27   !!----------------------------------------------------------------------
28   !! NEMO/LIM 3.2, UCL-ASTR-LOCEAN-IPSL (2009)
29   !! $Id$
30   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
[825]31   !!======================================================================
32END MODULE dom_ice
Note: See TracBrowser for help on using the repository browser.