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/ice.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/ice.F90

    r8531 r8534  
    11MODULE ice 
    22   !!====================================================================== 
    3    !!                        ***  MODULE ice  *** 
    4    !! LIM-3 Sea Ice physics:  diagnostics variables of ice defined in memory 
    5    !!===================================================================== 
     3   !!                        ***  MODULE  ice  *** 
     4   !!   sea-ice:  ice variables defined in memory 
     5   !!====================================================================== 
    66   !! History :  3.0  ! 2008-03  (M. Vancoppenolle) original code LIM-3 
    77   !!            4.0  ! 2011-02  (G. Madec) dynamical allocation 
     
    99#if defined key_lim3 
    1010   !!---------------------------------------------------------------------- 
    11    !!   'key_lim3'                                      LIM-3 sea-ice model 
     11   !!   'key_lim3'                                       ESIM sea-ice model 
    1212   !!---------------------------------------------------------------------- 
    1313   USE in_out_manager ! I/O manager 
     
    150150   !!===================================================================== 
    151151 
    152    !!-------------------------------------------------------------------------- 
     152   !!---------------------------------------------------------------------- 
    153153   !! * Share Module variables 
    154    !!-------------------------------------------------------------------------- 
     154   !!---------------------------------------------------------------------- 
    155155   !                                     !!** ice-generic parameters namelist (nampar) ** 
    156156   INTEGER           , PUBLIC ::   jpl             !: number of ice  categories  
     
    308308   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::   ftr_ice        !: transmitted solar radiation under ice 
    309309 
    310    !!-------------------------------------------------------------------------- 
     310   !!---------------------------------------------------------------------- 
    311311   !! * Ice global state variables 
    312    !!-------------------------------------------------------------------------- 
     312   !!---------------------------------------------------------------------- 
    313313   !! Variables defined for each ice category 
    314314   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::   ht_i      !: Ice thickness (m) 
     
    356356   ! END MV MP 2016 
    357357 
    358    !!-------------------------------------------------------------------------- 
     358   !!---------------------------------------------------------------------- 
    359359   !! * Moments for advection 
    360    !!-------------------------------------------------------------------------- 
     360   !!---------------------------------------------------------------------- 
    361361   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   sxopw, syopw, sxxopw, syyopw, sxyopw   !: open water in sea ice 
    362362   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:)   ::   sxice, syice, sxxice, syyice, sxyice   !: ice thickness  
     
    372372   ! END MV MP 2016 
    373373 
    374    !!-------------------------------------------------------------------------- 
     374   !!---------------------------------------------------------------------- 
    375375   !! * Old values of global variables 
    376    !!-------------------------------------------------------------------------- 
     376   !!---------------------------------------------------------------------- 
    377377   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:)   ::   v_s_b, v_i_b, ht_s_b, ht_i_b  !: snow and ice volumes/thickness 
    378378   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:)   ::   a_i_b, smv_i_b, oa_i_b        !: 
     
    382382   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   at_i_b                        !: ice concentration (total) 
    383383             
    384    !!-------------------------------------------------------------------------- 
     384   !!---------------------------------------------------------------------- 
    385385   !! * Ice thickness distribution variables 
    386    !!-------------------------------------------------------------------------- 
     386   !!---------------------------------------------------------------------- 
    387387   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:)   ::   hi_max         !: Boundary of ice thickness categories in thickness space 
    388388   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:)   ::   hi_mean        !: Mean ice thickness in catgories  
    389389   ! 
    390    !!-------------------------------------------------------------------------- 
     390   !!---------------------------------------------------------------------- 
    391391   !! * Ice diagnostics 
    392    !!-------------------------------------------------------------------------- 
     392   !!---------------------------------------------------------------------- 
    393393   ! thd refers to changes induced by thermodynamics 
    394394   ! trp   ''         ''     ''       advection (transport of ice) 
     
    406406 
    407407   ! 
    408    !!-------------------------------------------------------------------------- 
     408   !!---------------------------------------------------------------------- 
    409409   !! * SIMIP extra diagnostics 
    410    !!-------------------------------------------------------------------------- 
     410   !!---------------------------------------------------------------------- 
    411411   ! Extra sea ice diagnostics to address the data request 
    412412   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:)   ::   t_si          !: Temperature at Snow-ice interface (K)  
     
    541541#else 
    542542   !!---------------------------------------------------------------------- 
    543    !!   Default option         Empty module            NO LIM sea-ice model 
     543   !!   Default option         Empty module           NO ESIM sea-ice model 
    544544   !!---------------------------------------------------------------------- 
    545545#endif 
Note: See TracChangeset for help on using the changeset viewer.