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.
Changeset 1608 for trunk/NEMO/LIM_SRC_3/dom_ice.F90 – NEMO

Ignore:
Timestamp:
2009-08-12T10:05:30+02:00 (15 years ago)
Author:
ctlod
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/LIM_SRC_3/dom_ice.F90

    r1152 r1608  
    22   !!====================================================================== 
    33   !!                   ***  MODULE  dom_ice  *** 
    4    !! LIM Sea Ice :   Domain  variables 
     4   !! LIM-3 Sea Ice :   Domain  variables 
    55   !!====================================================================== 
    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 
     6   !! History :  3.0  ! 2003-08  (M. Vancoppenolle)  LIM-3 
    97   !!---------------------------------------------------------------------- 
    10    !!   LIM 3.0, UCL-ASTR-LOCEAN-IPSL (2005) 
    11    !! $Id$ 
    12    !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt 
    13    !!---------------------------------------------------------------------- 
    14    !! * Modules used 
    158   USE par_ice 
    169 
     
    1811   PRIVATE 
    1912 
    20    !! * Share module variables 
    21    LOGICAL, PUBLIC ::   &  !: 
    22       l_jeq = .TRUE.       !: Equator inside the domain flag 
     13   LOGICAL, PUBLIC ::   l_jeq = .TRUE.       !: Equator inside the domain flag 
    2314 
    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) ) 
     15   INTEGER, PUBLIC ::   njeq , njeqm1        !: j-index of the equator if it is inside the domain 
    2716 
    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 
     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 
    3624 
    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 
     25   REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2) ::   wght     !: weight of the 4 neighbours to compute averages 
    4126 
    42    REAL(wp), PUBLIC, DIMENSION(jpi,jpj,2,2,2,2) ::   &  !: 
    43       alambd               !: second group of metric coefficients 
    44  
     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) 
    4531   !!====================================================================== 
    4632END MODULE dom_ice 
Note: See TracChangeset for help on using the changeset viewer.