Skip to content
forked from smrt-model/smrt

Snow Microwave Radiative Transfert model to compute thermal emission and backscatter from snowpack

License

Notifications You must be signed in to change notification settings

jannapolar/smrt

This branch is 27 commits behind smrt-model/smrt:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4336d38 · Jan 16, 2025
Oct 29, 2024
Jul 9, 2022
Jan 15, 2025
Oct 24, 2018
Jan 16, 2025
Apr 13, 2022
Aug 15, 2024
Jun 1, 2020
Aug 20, 2024
Nov 8, 2016
Jul 8, 2024
Oct 29, 2024
Dec 16, 2021
Dec 16, 2021
Jun 1, 2020

Repository files navigation

Snow Microwave Radiative Transfer model

SMRT is a radiative transfer model to compute emission and backscatter from snowpack.

Getting started is easy, follow the instructions and explore the other repositories with examples in the 'smrt-model' github organization or read the detailed 'documentation'.

If you want to try without installing anything on your computer, use free mybinder.org notenooks: Binder

Quick Installation

To install the latest stable release:

pip install smrt

Alternatively, the latest developments are available using:

pip install git+https://github.com/smrt-model/smrt.git

or by 'manual installation'.

A simple example

An example to calculate the brightness temperature from a one-layer snowpack.

from smrt import make_snowpack, sensor_list, make_model

# create a snowpack
snowpack = make_snowpack(thickness=10.,   # snowpack depth in m
                         microstructure_model="sticky_hard_spheres",
                         density=320.0,   # density in kg/m3
                         temperature=260, # temperature in Kelvin
                         radius=100e-6)   # scatterers raidus in m

# create the sensor (AMSRE, channel 37 GHz vertical polarization)
radiometer = sensor_list.amsre('37V')

# create the model including the scattering model (IBA) and the radiative transfer solver (DORT)
m = make_model("iba", "dort")

# run the model
result = m.run(radiometer, snowpack)

print(result.TbV())

License information

See the file LICENSE.txt for terms & conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.

DISCLAIMER: This version of SMRT is under peer review. Please use this software with caution, ask for assistance if needed, and let us know any feedback you may have.

Copyright (c) 2016-2022 Ghislain Picard, Melody Sandells, Henning Löwe.

Other contributions

  • Nina Maass
  • Ludovic Brucker
  • Marion Leduc-Leballeur
  • Mai Winstrup
  • Carlo Marin
  • Justin Murfitt
  • Julien Meloche

About

Snow Microwave Radiative Transfert model to compute thermal emission and backscatter from snowpack

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.9%
  • MATLAB 0.1%