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

Different imaginary refractive in the new sice fortran #20

Open BaptisteVandecrux opened 2 years ago

BaptisteVandecrux commented 2 years ago
c       imaginary part of ice refractive index at OLCI channels      
        DATA kappa/6.27E-10,5.78E-10,6.49E-10,
     c 1.08E-9,1.46E-9,3.35E-09,    
     c 8.58E-09,1.78E-08,1.95E-08,2.1E-08,3.3E-08,6.23E-08,7.1E-08,
     c 7.68E-08,8.13E-08,9.88E-08,2.4E-07,3.64E-07,4.2E-07,5.53e-07,
     c       2.25E-06/

Currently in pySICE:

# Imaginary part of ice refrative index at OLCI channels
bai = xr.DataArray([2.365E-11, 2.7E-11, 7.0E-11, 4.17E-10, 8.04E-10,  
                    2.84E-09, 8.58E-09,  1.78E-08,  1.95E-08, 2.1E-08, 
                    3.3E-08, 6.23E-08, 7.1E-08,  7.68E-08,  8.13E-08,
                    9.88E-08,  2.4E-07, 3.64E-07,  4.2E-07, 5.53e-07, 
                    2.25E-06], coords=[bandcoord])