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

    r8531 r8534  
    22   !!====================================================================== 
    33   !!                       ***  MODULE  icealb  *** 
    4    !! Ocean forcing:  bulk thermohaline forcing of the ice 
     4   !! Atmospheric forcing:  Albedo over sea ice 
    55   !!===================================================================== 
    66   !! History :  4.0  ! 2017-07  (C. Rousset) Split ice and ocean albedos 
     
    88#if defined key_lim3 
    99   !!---------------------------------------------------------------------- 
    10    !!   'key_lim3'                                    LIM 3.0 sea-ice model 
    11    !!---------------------------------------------------------------------- 
    12    !!   ice_alb       : albedo for ice (clear and overcast skies) 
    13    !!   alb_init      : initialisation of albedo computation 
     10   !!   'key_lim3'                                       ESIM sea-ice model 
     11   !!---------------------------------------------------------------------- 
     12   !!   ice_alb        : albedo for ice (clear and overcast skies) 
     13   !!   ice_alb_init   : initialisation of albedo computation 
    1414   !!---------------------------------------------------------------------- 
    1515   USE ice, ONLY: jpl ! sea-ice: number of categories 
     
    1919   USE lib_mpp        ! MPP library 
    2020   USE lib_fortran    ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined)   
     21   USE timing         ! Timing 
    2122 
    2223   IMPLICIT NONE 
     
    109110      REAL(wp), DIMENSION(jpi,jpj,jpl) ::   zafrac_pnd      ! relative ice fraction (effective) 
    110111      !!--------------------------------------------------------------------- 
    111  
     112      ! 
     113      IF( nn_timing == 1 )   CALL timing_start('icealb') 
     114      ! 
    112115      !----------------------------------------------------- 
    113116      !  Snow-free albedo (no ice thickness dependence yet) 
     
    147150         ENDIF  
    148151         ! 
    149 !!gm: optimization ( rn_alb_smlt - rn_alb_imlt ) * r1_c2 can be computed one for all  
    150 !!gm  before the DO-loop below 
    151152         DO jl = 1, jpl 
    152153            DO jj = 1, jpj 
     
    301302      END SELECT 
    302303      ! 
     304      IF( nn_timing == 1 )   CALL timing_stop('icealb') 
     305      ! 
    303306   END SUBROUTINE ice_alb 
    304307 
     
    343346#else 
    344347   !!---------------------------------------------------------------------- 
    345    !!   Default option           Dummy module      NO LIM 3.0 sea-ice model 
     348   !!   Default option           Dummy module         NO ESIM sea-ice model 
    346349   !!---------------------------------------------------------------------- 
    347350#endif 
Note: See TracChangeset for help on using the changeset viewer.