Source code for hydpy.models.lland.lland_inputs

# -*- coding: utf-8 -*-
# pylint: disable=missing-module-docstring

# import...
# ...from HydPy
from hydpy.core import sequencetools


[docs] class Nied(sequencetools.InputSequence): """Niederschlag (precipitation) [mm/T].""" NDIM, NUMERIC = 0, False
[docs] class TemL(sequencetools.InputSequence): """Lufttemperatur (air temperature) [°C].""" NDIM, NUMERIC = 0, False
[docs] class SunshineDuration(sequencetools.InputSequence): """Sonnenscheindauer (sunshine duration) [h].""" NDIM, NUMERIC = 0, False
[docs] class PossibleSunshineDuration(sequencetools.InputSequence): """Astronomisch mögliche Sonnenscheindauer (astronomically possible sunshine duration) [h].""" NDIM, NUMERIC = 0, False
[docs] class GlobalRadiation(sequencetools.InputSequence): """Globalstrahlung (global radiation) [W/m²].""" NDIM, NUMERIC = 0, False
[docs] class RelativeHumidity(sequencetools.InputSequence): """Relative humidity [%].""" NDIM, NUMERIC = 0, False
[docs] class WindSpeed(sequencetools.InputSequence): """Windgeschwindigkeit (wind speed) [m/s].""" NDIM, NUMERIC = 0, False
[docs] class PET(sequencetools.InputSequence): """Potenzielle Verdunstung (potential evapotranspiration) [mm/T].""" NDIM, NUMERIC = 0, False
[docs] class AtmosphericPressure(sequencetools.InputSequence): """Luftdruck (atmospheric pressure) [hPa].""" NDIM, NUMERIC = 0, False