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 12401 for NEMO/branches/UKMO/NEMO_4.0.1_add_pond_lids/src/ICE/icerst.F90 – NEMO

Ignore:
Timestamp:
2020-02-18T16:21:31+01:00 (4 years ago)
Author:
dancopsey
Message:

Add melt pond lid code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.1_add_pond_lids/src/ICE/icerst.F90

    r11715 r12401  
    132132      CALL iom_rstput( iter, nitrst, numriw, 'a_ip' , a_ip  ) 
    133133      CALL iom_rstput( iter, nitrst, numriw, 'v_ip' , v_ip  ) 
     134      CALL iom_rstput( iter, nitrst, numriw, 'lh_ip', lh_ip ) 
    134135      ! Snow enthalpy 
    135136      DO jk = 1, nlay_s  
     
    245246            CALL iom_get( numrir, jpdom_autoglo, 'a_ip' , a_ip ) 
    246247            CALL iom_get( numrir, jpdom_autoglo, 'v_ip' , v_ip ) 
     248            CALL iom_get( numrir, jpdom_autoglo, 'lh_ip', lh_ip) 
    247249         ELSE                                     ! start from rest 
    248250            IF(lwp) WRITE(numout,*) '   ==>>   previous run without melt ponds output then set it to zero' 
    249251            a_ip(:,:,:) = 0._wp 
    250252            v_ip(:,:,:) = 0._wp 
     253            lh_ip(:,:,:) = 0._wp 
    251254         ENDIF 
    252255         ! fields needed for Met Office (Jules) coupling 
Note: See TracChangeset for help on using the changeset viewer.