GEUS-SICE / pySICE

Python and Fortran scripts behind the SICE toolchain for albedo retrieval.
GNU General Public License v2.0
5 stars 1 forks source link

tau_mol #27

Closed BaptisteVandecrux closed 2 years ago

BaptisteVandecrux commented 2 years ago

Not dependant on altitude anymore:

    # 2021 version:
    # taumol = wls**(-4.05) * np.minimum(1, np.exp(-height / 7400)) * 0.00877
    # MOLEC = 1 version:
    # taumol = 0.008735 * wls**(-4.08) * np.minimum(1, np.exp(-height / 6000))
    # MOLEC = 0 version:
    taumol=0.0053/wls**(4.0932)
BaptisteVandecrux commented 2 years ago

Confirmed with Alex, should be :

taumol = 0.008735 * wls**(-4.08) * np.minimum(1, np.exp(-height / 6000))