DegreeDayParameters
- class rameau.core.snow.DegreeDayParameters(coefficient=None, temperature=None)[source]
Degree day model parameters.
- Parameters:
- Returns:
Examples
>>> temperature = rm.Parameter(value=0.2) >>> coefficient = dict(value=2) >>> corrections = rm.snow.DegreeDayParameters( ... temperature=temperature, coefficient=coefficient ... ) >>> corrections.coefficient.value 2.0
Attributes
Amount of melt that occurs per positive degree day (mm/°C/day).
Temperature threshold above which all rainfall is assumed to fall as snow (°C).