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 8564 for branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90 – NEMO

Ignore:
Timestamp:
2017-09-27T11:11:01+02:00 (7 years ago)
Author:
clem
Message:

change variable names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90

    r8313 r8564  
    3636   USE lib_mpp          ! MPP library 
    3737#if defined key_lim3 
    38    USE ice,   ONLY: htm_i, at_i, at_i_b 
     38   USE ice,   ONLY: hm_i, at_i, at_i_b 
    3939#endif 
    4040   USE sbc_oce          ! Surface boundary condition variables. 
     
    835835#if defined key_lim3 
    836836            zofrld (:,:) = 1._wp - at_i(:,:) 
    837             zohicif(:,:) = htm_i(:,:) 
     837            zohicif(:,:) = hm_i(:,:) 
    838838            ! 
    839839            at_i  (:,:) = 1. - MIN( MAX( 1.-at_i  (:,:) - seaice_bkginc(:,:) * zincwgt, 0.0_wp), 1.0_wp) 
     
    844844            ! 
    845845            ! Nudge sea ice depth to bring it up to a required minimum depth 
    846             WHERE( zseaicendg(:,:) > 0.0_wp .AND. htm_i(:,:) < zhicifmin )  
    847                zhicifinc(:,:) = (zhicifmin - htm_i(:,:)) * zincwgt     
     846            WHERE( zseaicendg(:,:) > 0.0_wp .AND. hm_i(:,:) < zhicifmin )  
     847               zhicifinc(:,:) = (zhicifmin - hm_i(:,:)) * zincwgt     
    848848            ELSEWHERE 
    849849               zhicifinc(:,:) = 0.0_wp 
     
    851851            ! 
    852852            ! nudge ice depth 
    853             htm_i (:,:) = htm_i (:,:) + zhicifinc(:,:) 
     853            hm_i (:,:) = hm_i (:,:) + zhicifinc(:,:) 
    854854            ! 
    855855            ! seaice salinity balancing (to add) 
     
    884884#if defined key_lim3 
    885885            zofrld (:,:) = 1._wp - at_i(:,:) 
    886             zohicif(:,:) = htm_i(:,:) 
     886            zohicif(:,:) = hm_i(:,:) 
    887887            !  
    888888            ! Initialize the now fields the background + increment 
     
    894894            ! 
    895895            ! Nudge sea ice depth to bring it up to a required minimum depth 
    896             WHERE( zseaicendg(:,:) > 0.0_wp .AND. htm_i(:,:) < zhicifmin )  
    897                zhicifinc(:,:) = (zhicifmin - htm_i(:,:)) * zincwgt     
     896            WHERE( zseaicendg(:,:) > 0.0_wp .AND. hm_i(:,:) < zhicifmin )  
     897               zhicifinc(:,:) = (zhicifmin - hm_i(:,:)) * zincwgt     
    898898            ELSEWHERE 
    899899               zhicifinc(:,:) = 0.0_wp 
     
    901901            ! 
    902902            ! nudge ice depth 
    903             htm_i (:,:) = htm_i (:,:) + zhicifinc(:,:) 
     903            hm_i (:,:) = hm_i (:,:) + zhicifinc(:,:) 
    904904            ! 
    905905            ! seaice salinity balancing (to add) 
Note: See TracChangeset for help on using the changeset viewer.