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 7504 – NEMO

Changeset 7504


Ignore:
Timestamp:
2016-12-15T17:05:18+01:00 (7 years ago)
Author:
timgraham
Message:

Fix uninitialised array in sbcblk.F90 (feeding into LIM3).
Fix copied from sbcblk_core.F90 module

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_merge_2016/NEMOGCM/NEMO/OPA_SRC/SBC/sbcblk.F90

    r7431 r7504  
    817817      qprec_ice(:,:) = rhosn * ( ( MIN( sf(jp_tair)%fnow(:,:,1), rt0_snow ) - rt0 ) * cpic * tmask(:,:,1) - lfus ) 
    818818 
     819      ! --- heat content of evap over ice in W/m2 (to be used in 1D-thermo) --- 
     820      ! ! 
     821      DO jl = 1, jpl 
     822         qevap_ice(:,:,jl) = 0._wp ! should be -evap_ice(:,:,jl)*( ( Tice - rt0) * cpic * tmask(:,:,1) ) 
     823                                   ! But we do not have Tice => consider it at 
     824                                   ! 0??C => evap=0  
     825      END DO 
     826 
    819827      CALL wrk_dealloc( jpi,jpj,   zevap, zsnw ) 
    820828#endif 
Note: See TracChangeset for help on using the changeset viewer.