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 1572 for trunk/NEMO/LIM_SRC_3/limitd_me.F90 – NEMO

Ignore:
Timestamp:
2009-08-03T16:53:15+02:00 (15 years ago)
Author:
ctlod
Message:

Cosmetic changes only following the bugs correction related to ticket: #505

File:
1 edited

Legend:

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

    r1571 r1572  
    11MODULE limitd_me 
    2  
    3 #if defined key_lim3 
    4    !!---------------------------------------------------------------------- 
    5    !!   'key_lim3' :                                    LIM3 sea-ice model 
    6    !!---------------------------------------------------------------------- 
    7    !! 
    82   !!====================================================================== 
    93   !!                       ***  MODULE limitd_me *** 
     
    115   !!                     computation of changes in g(h)       
    126   !!====================================================================== 
    13    !! 
     7   !! History :  LIM  ! 2006-02  (M. Vancoppenolle) Original code  
     8   !!            3.2  ! 2009-07  (M. Vancoppenolle, Y. Aksenov, G. Madec) bug correction in smsw & fsalt_rpo 
    149   !!---------------------------------------------------------------------- 
    15    !! * Modules used 
     10#if defined key_lim3 
     11   !!---------------------------------------------------------------------- 
     12   !!   'key_lim3' :                                    LIM3 sea-ice model 
     13   !!---------------------------------------------------------------------- 
    1614   USE dom_ice 
    1715   USE par_oce          ! ocean parameters 
     
    150148      !! Babko et al., JGR 2002  
    151149      !! 
    152       !! ** History : 
    153       !!           This routine is based on CICE code 
    154       !!           and authors William H. Lipscomb, 
    155       !!           and Elizabeth C. Hunke, LANL 
    156       !!           are gratefully acknowledged 
    157       !! 
    158       !!           (02-2006) Martin Vancoppenolle, UCL-ASTR  
    159       !! 
     150      !!     This routine is based on CICE code and authors William H. Lipscomb, 
     151      !!  and Elizabeth C. Hunke, LANL are gratefully acknowledged 
    160152      !!--------------------------------------------------------------------! 
    161153      !! * Arguments 
     
    13661358            !------------- 
    13671359            smsw(ji,jj)  = sss_m(ji,jj) * vsw(ji,jj) * rhoic / rau0       ! salt content of water frozen in voids 
    1368    
     1360 
    13691361            zsrdg2       = srdg1(ji,jj) + smsw(ji,jj)                     ! salt content of new ridge 
    1370    
     1362 
    13711363            srdg2(ji,jj) = MIN( s_i_max * vrdg2(ji,jj) , zsrdg2 )         ! impose a maximum salinity 
    1372                      
     1364             
    13731365            !                                                             ! excess of salt is flushed into the ocean 
    1374             fsalt_rpo(ji,jj) = fsalt_rpo(ji,jj) + ( zsrdg2 - srdg2(ji,jj) ) * rhoic / rdt_ice  
    1375    
     1366            fsalt_rpo(ji,jj) = fsalt_rpo(ji,jj) + ( zsrdg2 - srdg2(ji,jj) ) * rhoic / rdt_ice 
     1367 
    13761368            !------------------------------------             
    13771369            ! 3.6 Increment ridging diagnostics 
Note: See TracChangeset for help on using the changeset viewer.