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 8534 for branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/icethd_ent.F90 – NEMO

Ignore:
Timestamp:
2017-09-18T16:54:04+02:00 (7 years ago)
Author:
clem
Message:

changes in style - part6 - pure cosmetics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/icethd_ent.F90

    r8531 r8534  
    22   !!====================================================================== 
    33   !!                       ***  MODULE icethd_ent   *** 
    4    !!                  Redistribution of Enthalpy in the ice 
    5    !!                        on the new vertical grid 
    6    !!                       after vertical growth/decay 
     4   !!   sea-ice: redistribution of enthalpy in the ice on the new vertical grid 
     5   !!                       after vertical growth/melt 
    76   !!====================================================================== 
    87   !! History :  LIM  ! 2003-05 (M. Vancoppenolle) Original code in 1D 
     
    1514#if defined key_lim3 
    1615   !!---------------------------------------------------------------------- 
    17    !!   'key_lim3'                                       LIM3 sea-ice model 
     16   !!   'key_lim3'                                       ESIM sea-ice model 
    1817   !!---------------------------------------------------------------------- 
    1918   !!   ice_thd_ent   : ice redistribution of enthalpy 
    2019   !!---------------------------------------------------------------------- 
    21    USE par_oce        ! ocean parameters 
    2220   USE dom_oce        ! domain variables 
    2321   USE domain         ! 
    2422   USE phycst         ! physical constants 
    25    USE ice            ! LIM variables 
    26    USE ice1D          ! LIM thermodynamics 
     23   USE ice            ! sea-ice: variables 
     24   USE ice1D          ! sea-ice: thermodynamics variables 
    2725   ! 
    2826   USE in_out_manager ! I/O manager 
     
    6765      !! References : Bitz & Lipscomb, JGR 99; Vancoppenolle et al., GRL, 2005 
    6866      !!------------------------------------------------------------------- 
    69       REAL(wp), INTENT(inout), DIMENSION(:,:) :: qnew          ! new enthlapies (J.m-3, remapped) 
    70  
     67      REAL(wp), DIMENSION(:,:), INTENT(inout) ::   qnew             ! new enthlapies (J.m-3, remapped) 
     68      ! 
    7169      INTEGER  :: ji         !  dummy loop indices 
    7270      INTEGER  :: jk0, jk1   !  old/new layer indices 
    7371      ! 
    74       REAL(wp), DIMENSION(jpij,0:nlay_i+2) :: zeh_cum0, zh_cum0   ! old cumulative enthlapies and layers interfaces 
    75       REAL(wp), DIMENSION(jpij,0:nlay_i)   :: zeh_cum1, zh_cum1   ! new cumulative enthlapies and layers interfaces 
    76       REAL(wp), DIMENSION(jpij)            :: zhnew               ! new layers thicknesses 
     72      REAL(wp), DIMENSION(jpij,0:nlay_i+2) ::   zeh_cum0, zh_cum0   ! old cumulative enthlapies and layers interfaces 
     73      REAL(wp), DIMENSION(jpij,0:nlay_i)   ::   zeh_cum1, zh_cum1   ! new cumulative enthlapies and layers interfaces 
     74      REAL(wp), DIMENSION(jpij)            ::   zhnew               ! new layers thicknesses 
    7775      !!------------------------------------------------------------------- 
    7876 
     
    141139#else 
    142140   !!---------------------------------------------------------------------- 
    143    !!   Default option                               NO  LIM3 sea-ice model 
     141   !!   Default option                                NO ESIM sea-ice model 
    144142   !!---------------------------------------------------------------------- 
    145143#endif 
Note: See TracChangeset for help on using the changeset viewer.