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 161 for trunk/NEMO – NEMO

Changeset 161 for trunk/NEMO


Ignore:
Timestamp:
2004-11-03T15:46:36+01:00 (20 years ago)
Author:
opalod
Message:

CT + CL : UPDATE104 : Add sublimation trough zevice(:,:) array over sea-ice in the solid precipitation sent to the sea-ice model

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/SBC/flx_coupled_ice.h90

    r149 r161  
    208208         END DO 
    209209 
    210 ! Since cloud cover catm not transmitted from atmosphere, init =0.  
     210         ! Set sublimation to zero in ice-free boxes 
     211         DO jj = 1, nlcj 
     212            DO ji = 1, nlci 
     213               IF( freeze(ji,jj) <= 0.0e0 ) zevice(mig(ji),mjg(jj)) = 0.0e0 
     214            END DO 
     215         END DO 
     216 
     217         ! Since cloud cover catm not transmitted from atmosphere, init =0.  
    211218  
    212219         catm(:, :) =0. 
     
    245252                  &                + zevap ( mig(ji), mjg(jj)) ) * tmask(ji,jj,1) * zfacwat 
    246253               !  6: Solid precipitation  (positive upward) 
    247                sprecip(ji,jj) =  zpsol    ( mig(ji), mjg(jj)) * tmask(ji,jj,1) * zfacwat 
     254               sprecip(ji,jj) =  ( zpsol( mig(ji), mjg(jj) ) + zevice( mig(ji),mjg(jj) ) )  & 
     255                  &              * tmask(ji,jj,1) * zfacwat 
    248256               !  7: runoff      (positive upward) 
    249257               rrunoff(ji,jj) = ( zruncot ( mig(ji), mjg(jj))   & 
Note: See TracChangeset for help on using the changeset viewer.