Ignore:
Timestamp:
Mar 3, 2015, 2:41:13 PM (9 years ago)
Author:
Laurent Fairhead
Message:

Merged trunk changes -r2186:2216 into testing branch

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

  • LMDZ5/branches/testing/libf/phylmd/phyredem.F90

    r2073 r2220  
    1616  USE indice_sol_mod
    1717  USE surface_data
    18   USE ocean_slab_mod, ONLY : tslab
     18  USE ocean_slab_mod, ONLY : tslab, seaice, tice, fsic
    1919
    2020  IMPLICIT none
     
    107107  ! BP ajout des fraction de chaque sous-surface
    108108
     109  ! Get last fractions from slab ocean
     110  IF (type_ocean == 'slab' .AND. version_ocean == "sicINT") THEN
     111      WHERE (1.-zmasq(:).GT.EPSFRA)
     112          pctsrf(:,is_oce)=(1.-fsic(:))*(1.-zmasq(:))
     113          pctsrf(:,is_sic)=fsic(:)*(1.-zmasq(:))
     114      END WHERE
     115  END IF
     116
    109117  ! 1. fraction de terre
    110118
     
    209217
    210218  CALL put_field("sollw", "Rayonnement IF a la surface", sollw)
     219
     220  CALL put_field("sollwdown", "Rayonnement down IF a la surface", sollw)
    211221
    212222  CALL put_field("fder", "Derive de flux", fder)
     
    350360  IF (type_ocean == 'slab') THEN
    351361      CALL put_field("tslab", "Slab ocean temperature", tslab)
     362      IF (version_ocean == 'sicINT') THEN
     363          CALL put_field("seaice", "Slab seaice (kg/m2)", seaice)
     364          CALL put_field("slab_tice", "Slab sea ice temperature", tice)
     365      END IF
    352366  END IF
    353367
Note: See TracChangeset for help on using the changeset viewer.