Changeset 5576 for LMDZ6


Ignore:
Timestamp:
Mar 15, 2025, 12:46:52 PM (5 months ago)
Author:
aborella
Message:

Fix for radius of contrails ice crystals (it had the wrong unit)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/contrails/libf/phylmd/lmdz_cloud_optics_prop.f90

    r5537 r5576  
    362362            !--rei and the contrails rei, with the weights being the fraction of natural
    363363            !--vs contrail cirrus in the gridbox
    364             rei = rei * ( 1. - rcontrail(i,k) ) + re_ice_crystals_contrails * rcontrail(i,k)
     364            !--Beware, re_ice_crystals_contrails is in m, while rei is in microns
     365            rei = rei * ( 1. - rcontrail(i,k) ) + re_ice_crystals_contrails * 1.E6 * rcontrail(i,k)
    365366          ENDIF
    366367          pcldtaupi(i, k) = 3.0/2.0*zflwp_var/rad_chaud_pi(i, k) + &
     
    497498          !--rei and the contrails rei, with the weights being the fraction of natural
    498499          !--vs contrail cirrus in the gridbox
    499           rei = rei * ( 1. - rcontrail(i,k) ) + re_ice_crystals_contrails * rcontrail(i,k)
     500          !--Beware, re_ice_crystals_contrails is in m, while rei is in microns
     501          rei = rei * ( 1. - rcontrail(i,k) ) + re_ice_crystals_contrails * 1.E6 * rcontrail(i,k)
    500502        ENDIF
    501503        pcltau(i, k) = 3.0/2.0*(zflwp_var/rel) + zfiwp_var*(3.448E-03+2.431/ &
Note: See TracChangeset for help on using the changeset viewer.