HydPy-WHMod (base model)

whmod is a base model for developing SVAT-like models. “WHMod” stands for “Wasserhaushaltsmodell”, which is the German term for “water balance model”. In contrast to most other land models implemented in HydPy, the primary purpose of its application models is not to calculate the runoff of river basins but to calculate details of the water balance, like groundwater recharge, at specific locations.

Method Features

class hydpy.models.whmod.whmod_model.Model[source]

Bases: AdHocModel

HydPy-WHMod (base model).

The following “run methods” are called in the given sequence during each simulation step:
The following interface methods are available to main models using the defined model as a submodel:
The following “additional methods” might be called by one or more of the other methods or are meant to be directly called by the user:
Users can hook submodels into the defined main model if they satisfy one of the following interfaces:
  • AETModel_V1 Interface for calculating interception evaporation, evapotranspiration from soils, evaporation from water areas in separate steps.

DOCNAME: DocName = ('WHMod', 'base model')
aetmodel

Required submodel that complies with the following interface: AETModel_V1.

aetmodel_is_mainmodel
aetmodel_typeid
REUSABLE_METHODS: ClassVar[tuple[type[ReusableMethod], ...]] = ()
class hydpy.models.whmod.whmod_model.Calc_Throughfall_InterceptedWater_V1[source]

Bases: Method

Calculate the interception storage’s throughfall and change in water content due to precipitation.

Requires the control parameters:

NmbZones LandType InterceptionCapacity

Requires the derived parameter:

MOY

Requires the input sequence:

Precipitation

Updates the state sequence:

InterceptedWater

Calculates the flux sequence:

Throughfall

Basic equation:
\[\begin{split}T = \begin{cases} P &|\ I = C \\ 0 &|\ I \leq C \end{cases} \\ I_{new} = I_{old} + P - I \\ \\ T = Throughfall \\ P = Precipitation \\ I = InterceptedWater \\ C = InterceptionCapacity\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> landtype(CORN, CORN, CORN, CORN, WATER)
>>> interceptioncapacity.corn_jun = 2.0
>>> interceptioncapacity.corn_jul = 2.5
>>> from hydpy import pub
>>> pub.timegrids = "2001-06-29", "2001-07-03", "1d"
>>> derived.moy.update()
>>> inputs.precipitation = 1.0
>>> states.interceptedwater = 0.0, 1.0, 2.0, 3.0, nan
>>> model.idx_sim = 1
>>> model.calc_throughfall_interceptedwater_v1()
>>> states.interceptedwater
interceptedwater(1.0, 2.0, 2.0, 2.0, 0.0)
>>> fluxes.throughfall
throughfall(0.0, 0.0, 1.0, 2.0, 0.0)
>>> inputs.precipitation = 0.0
>>> states.interceptedwater = 0.0, 1.0, 2.0, 3.0, nan
>>> model.idx_sim = 2
>>> model.calc_throughfall_interceptedwater_v1()
>>> states.interceptedwater
interceptedwater(0.0, 1.0, 2.0, 2.5, 0.0)
>>> fluxes.throughfall
throughfall(0.0, 0.0, 0.0, 0.5, 0.0)
class hydpy.models.whmod.whmod_model.Calc_InterceptionEvaporation_InterceptedWater_AETModel_V1[source]

Bases: Method

Let a submodel that follows the AETModel_V1 submodel interface calculate interception evaporation and adjust the amount of intercepted water.

Required by the method:

Calc_InterceptionEvaporation_InterceptedWater_V1

Requires the control parameters:

NmbZones LandType

Updates the state sequence:

InterceptedWater

Calculates the flux sequence:

InterceptionEvaporation

Basic equations:
\[\begin{split}E = get\_interceptionevaporation() \\ I_{new} = I_{old} - E \\ \\ I = InterceptedWater \\ E = InterceptionEvaporation\end{split}\]

Examples:

We build an example based on evap_aet_minhas for calculating interception evaporation, which uses evap_ret_io for querying potential evapotranspiration:

>>> from hydpy.models.whmod_rural import *
>>> parameterstep("1h")
>>> area(1.0)
>>> nmbzones(5)
>>> landtype(GRASS, DECIDUOUS, CORN, SEALED, WATER)
>>> zonearea(0.05, 0.1, 0.2, 0.3, 0.35)
>>> interceptioncapacity.jun = 3.0
>>> derived.moy.shape = 1
>>> derived.moy(5)
>>> availablefieldcapacity(0.1)
>>> rootingdepth(0.1)
>>> groundwaterdepth(0.1)
>>> with model.add_aetmodel_v1("evap_aet_minhas"):
...     with model.add_petmodel_v1("evap_ret_io"):
...         evapotranspirationfactor(0.6, 0.8, 1.0, 1.2, 1.4)
...         inputs.referenceevapotranspiration = 1.0

Calc_InterceptionEvaporation_InterceptedWater_AETModel_V1 uses the flux returned by the submodel to adjust InterceptedWater:

>>> states.interceptedwater = 2.0
>>> model.calc_interceptionevaporation_interceptedwater_v1()
>>> fluxes.interceptionevaporation
interceptionevaporation(0.6, 0.8, 1.0, 1.2, 0.0)
>>> states.interceptedwater
interceptedwater(1.4, 1.2, 1.0, 0.8, 0.0)

Calc_InterceptionEvaporation_InterceptedWater_AETModel_V1 eventually reduces InterceptionEvaporation so that InterceptedWater does not become negative:

>>> model.aetmodel.petmodel.sequences.inputs.referenceevapotranspiration = 5.0
>>> states.interceptedwater = 2.0
>>> model.calc_interceptionevaporation_interceptedwater_v1()
>>> fluxes.interceptionevaporation
interceptionevaporation(2.0, 2.0, 2.0, 2.0, 0.0)
>>> states.interceptedwater
interceptedwater(0.0, 0.0, 0.0, 0.0, 0.0)

In contrast, Calc_InterceptionEvaporation_InterceptedWater_AETModel_V1 does not reduce negative InterceptionEvaporation values (condensation) that cause an overshoot of the interception storage capacity:

>>> model.aetmodel.petmodel.sequences.inputs.referenceevapotranspiration = -3.0
>>> states.interceptedwater = 2.0
>>> model.calc_interceptionevaporation_interceptedwater_v1()
>>> fluxes.interceptionevaporation
interceptionevaporation(-1.8, -2.4, -3.0, -3.6, 0.0)
>>> states.interceptedwater
interceptedwater(3.8, 4.4, 5.0, 5.6, 0.0)
class hydpy.models.whmod.whmod_model.Calc_InterceptionEvaporation_InterceptedWater_V1[source]

Bases: Method

Let a submodel that follows the AETModel_V1 submodel interface calculate interception evaporation and adjust the amount of intercepted water.

Required submethod:

Calc_InterceptionEvaporation_InterceptedWater_AETModel_V1

Requires the control parameters:

NmbZones LandType

Updates the state sequence:

InterceptedWater

Calculates the flux sequence:

InterceptionEvaporation

class hydpy.models.whmod.whmod_model.Calc_LakeEvaporation_AETModel_V1[source]

Bases: Method

Let a submodel that follows the AETModel_V1 submodel interface calculate lake evaporation.

Required by the method:

Calc_LakeEvaporation_V1

Requires the control parameters:

NmbZones LandType

Calculates the flux sequence:

LakeEvaporation

Basic equation:
\[LakeEvaporation = get\_waterevaporation()\]

Example:

We build an example based on evap_aet_minhas for calculating water evaporation, which uses evap_ret_io for querying potential evapotranspiration:

>>> from hydpy.models.whmod_rural import *
>>> parameterstep("1h")
>>> area(1.0)
>>> nmbzones(5)
>>> landtype(GRASS, DECIDUOUS, CORN, SEALED, WATER)
>>> zonearea(0.05, 0.1, 0.2, 0.3, 0.35)
>>> interceptioncapacity.jun = 3.0
>>> derived.moy.shape = 1
>>> derived.moy(5)
>>> availablefieldcapacity(0.1)
>>> rootingdepth(0.1)
>>> groundwaterdepth(0.1)
>>> with model.add_aetmodel_v1("evap_aet_minhas"):
...     with model.add_petmodel_v1("evap_ret_io"):
...         evapotranspirationfactor(0.6, 0.8, 1.0, 1.2, 1.4)
...         inputs.referenceevapotranspiration = 1.0

Calc_LakeEvaporation_AETModel_V1 stores the flux returned by the submodel without any modifications:

>>> model.aetmodel.determine_interceptionevaporation()
>>> model.calc_lakeevaporation_v1()
>>> fluxes.lakeevaporation
lakeevaporation(0.0, 0.0, 0.0, 0.0, 1.4)
class hydpy.models.whmod.whmod_model.Calc_LakeEvaporation_V1[source]

Bases: Method

Let a submodel that follows the AETModel_V1 submodel interface calculate lake evaporation.

Required submethod:

Calc_LakeEvaporation_AETModel_V1

Requires the control parameters:

NmbZones LandType

Calculates the flux sequence:

LakeEvaporation

class hydpy.models.whmod.whmod_model.Calc_PotentialSnowmelt_V1[source]

Bases: Method

Calculcate the potential snowmelt with the degree day method.

Requires the control parameters:

NmbZones LandType DegreeDayFactor

Requires the input sequence:

Temperature

Calculates the flux sequence:

PotentialSnowmelt

Basic equation:
\[\begin{split}P = \begin{cases} 0 &|\ T \leq 0 \\ D \cdot T &|\ T > 0 \end{cases} \\ \\ P = PotentialSnowmelt \\ D = DegreeDayFactor \\ T = Temperature\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> simulationstep("1d")
>>> nmbzones(3)
>>> landtype(GRASS, SEALED, WATER)
>>> degreedayfactor(grass=3.0, sealed=4.0)
>>> inputs.temperature = -2.0
>>> model.calc_potentialsnowmelt_v1()
>>> fluxes.potentialsnowmelt
potentialsnowmelt(0.0, 0.0, 0.0)
>>> inputs.temperature = 0.0
>>> model.calc_potentialsnowmelt_v1()
>>> fluxes.potentialsnowmelt
potentialsnowmelt(0.0, 0.0, 0.0)
>>> inputs.temperature = 2.0
>>> model.calc_potentialsnowmelt_v1()
>>> fluxes.potentialsnowmelt
potentialsnowmelt(6.0, 8.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_Snowmelt_Snowpack_V1[source]

Bases: Method

Calculatethe actual snowmelt and update the snow’s water content.

Requires the control parameters:

NmbZones LandType

Requires the input sequence:

Temperature

Requires the flux sequences:

Throughfall PotentialSnowmelt

Updates the state sequence:

Snowpack

Calculates the flux sequence:

Snowmelt

Basic equations:
\[\begin{split}M = \begin{cases} 0 &|\ T \leq 0 \\ min(P, \, S_{old}) &|\ T > 0 \end{cases} \\ S_{new} = \begin{cases} S_{old} + F &|\ T \leq 0 \\ S_{old} - M &|\ T > 0 \end{cases} \\ \\ M = Snowmelt \\ P = PotentialSnowmelt \\ S = SnowPack \\ T = Temperature \\ F = Throughfall\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> simulationstep("1d")
>>> nmbzones(3)
>>> landtype(GRASS, SEALED, WATER)
>>> fluxes.throughfall = 1.0
>>> inputs.temperature = 0.0
>>> states.snowpack = 0.0, 2.0, 0.0
>>> model.calc_snowmelt_snowpack_v1()
>>> fluxes.snowmelt
snowmelt(0.0, 0.0, 0.0)
>>> states.snowpack
snowpack(1.0, 3.0, 0.0)
>>> inputs.temperature = 1.0
>>> states.snowpack = 0.0, 3.0, 0.0
>>> fluxes.potentialsnowmelt = 2.0
>>> model.calc_snowmelt_snowpack_v1()
>>> fluxes.snowmelt
snowmelt(0.0, 2.0, 0.0)
>>> states.snowpack
snowpack(0.0, 1.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_Ponding_V1[source]

Bases: Method

Calculate the (potential) ponding of throughfall and snowmelt of land surfaces.

Requires the control parameters:

NmbZones LandType

Requires the input sequence:

Temperature

Requires the flux sequences:

Throughfall Snowmelt

Calculates the flux sequence:

Ponding

Basic equation:
\[\begin{split}P = \begin{cases} 0 &|\ T \leq 0 \\ F + M &|\ T > 0 \end{cases} \\ \\ P = Ponding \\ F = Throughfall \\ M = Snowmelt \\ T = Temperature\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(3)
>>> landtype(GRASS, SEALED, WATER)
>>> inputs.temperature = 0.0
>>> model.calc_ponding_v1()
>>> fluxes.ponding
ponding(0.0, 0.0, 0.0)
>>> inputs.temperature = 1.0
>>> fluxes.throughfall = 2.0
>>> fluxes.snowmelt = 3.0
>>> model.calc_ponding_v1()
>>> fluxes.ponding
ponding(5.0, 5.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_SurfaceRunoff_V1[source]

Bases: Method

Calculate the surface runoff from sealed areas.

Requires the control parameters:

NmbZones LandType

Requires the flux sequence:

Ponding

Calculates the flux sequence:

SurfaceRunoff

Basic equation:
\[SurfaceRunoff = Ponding\]

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(3)
>>> landtype(SEALED, WATER, GRASS)
>>> fluxes.ponding = 3.0
>>> model.calc_surfacerunoff_v1()
>>> fluxes.surfacerunoff
surfacerunoff(3.0, 0.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_RelativeSoilMoisture_V1[source]

Bases: Method

Calculate the relative soil water content.

Requires the control parameters:

NmbZones SoilType

Requires the derived parameter:

MaxSoilWater

Requires the state sequence:

SoilMoisture

Calculates the factor sequence:

RelativeSoilMoisture

Basic equation:
\[\begin{split}R = S / M \\ \\ R = RelativeSoilMoisture \\ S = SoilMoisture \\ M = MaxSoilWater\end{split}\]

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(7)
>>> landtype(GRASS, GRASS, GRASS, GRASS, GRASS, GRASS, SEALED)
>>> soiltype(SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, NONE)
>>> derived.maxsoilwater(200.0, 200.0, 200.0, 200.0, 200.0, 0.0, nan)
>>> states.soilmoisture = 0.0, 50.0, 100.0, 150.0, 200.0, 0.0, nan
>>> model.calc_relativesoilmoisture_v1()
>>> factors.relativesoilmoisture
relativesoilmoisture(0.0, 0.25, 0.5, 0.75, 1.0, 0.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_CisternInflow_V1[source]

Bases: Method

Calculate the inflow into the cistern.

Requires the control parameters:

NmbZones ZoneArea LandType CisternSource

Requires the flux sequences:

SurfaceRunoff Percolation

Calculates the flux sequence:

CisternInflow

Basic equation:
\[\begin{split}I = \sum_{k=1}^N \frac{A_k}{1000} \cdot \begin{cases} S_k &|\ L_k = SEALED \, \land \, C_k \\ P_k &|\ L_k \neq SEALED \, \land \, C_k \end{cases} \\ \\ I = CisternInflow\\ N = NmbZones \\ T = LandType \\ C = CisternSource \\ A = ZoneArea \\ S = SurfaceRunoff \\ P = Percolation\end{split}\]

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> landtype(GRASS, GRASS, SEALED, SEALED, WATER)
>>> cisternsource(False, True, False, True, False)
>>> area(15.0)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0)
>>> fluxes.percolation = nan, 6.0, nan, nan, nan
>>> fluxes.surfacerunoff = nan, nan, nan, 7.0, nan
>>> model.calc_cisterninflow_v1()
>>> fluxes.cisterninflow
cisterninflow(0.04)
class hydpy.models.whmod.whmod_model.Calc_CisternOverflow_CisternWater_V1[source]

Bases: Method

Take the inflow into the cistern to update its content and calculate eventual overflow.

Requires the control parameter:

CisternCapacity

Requires the flux sequence:

CisternInflow

Updates the state sequence:

CisternWater

Calculates the flux sequence:

CisternOverflow

Basic equation:
\[\begin{split}O(t) = \begin{cases} 0 &|\ W(t) \leq C \\ I(t) &|\ W(t) = C \end{cases} \\ \frac{d W(t)}{d t} = I(t) - O(t) \\ \\ O = CisternOverflow \\ I = CisternInflow \\ W = CisternWater \\ C = CisternCapacity\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> cisterncapacity(5.0)
>>> states.cisternwater = 1.0
>>> fluxes.cisterninflow = 3.0
>>> model.calc_cisternoverflow_cisternwater_v1()
>>> states.cisternwater
cisternwater(4.0)
>>> fluxes.cisternoverflow
cisternoverflow(0.0)
>>> model.calc_cisternoverflow_cisternwater_v1()
>>> states.cisternwater
cisternwater(5.0)
>>> fluxes.cisternoverflow
cisternoverflow(2.0)
>>> model.calc_cisternoverflow_cisternwater_v1()
>>> states.cisternwater
cisternwater(5.0)
>>> fluxes.cisternoverflow
cisternoverflow(3.0)
class hydpy.models.whmod.whmod_model.Calc_Percolation_V1[source]

Bases: Method

Calculate the percolation out of the soil storage.

Requires the control parameters:

NmbZones SoilType

Requires the derived parameter:

Beta

Requires the factor sequence:

RelativeSoilMoisture

Requires the flux sequence:

Ponding

Calculates the flux sequence:

Percolation

Basic equation:
\[\begin{split}Percolation = P \cdot R ^ {\beta} \\ \\ P = Ponding \\ R = RelativeSoilMoisture \\ \beta = BETA\end{split}\]

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(7)
>>> landtype(GRASS, GRASS, GRASS, GRASS, GRASS, GRASS, SEALED)
>>> soiltype(SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, NONE)
>>> derived.beta(2.0)
>>> fluxes.ponding(10.0)
>>> factors.relativesoilmoisture = 0.0, 0.2, 0.4, 0.6, 0.8, 1.0, nan
>>> model.calc_percolation_v1()
>>> fluxes.percolation
percolation(0.0, 0.4, 1.6, 3.6, 6.4, 10.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_SoilEvapotranspiration_AETModel_V1[source]

Bases: Method

Let a submodel that follows the AETModel_V1 submodel interface calculate soil evapotranspiration.

Required by the method:

Calc_SoilEvapotranspiration_V1

Requires the control parameters:

NmbZones SoilType

Calculates the flux sequence:

SoilEvapotranspiration

Basic equation:
\[SoilEvapotranspiration = get\_soilevapotranspiration()\]

Example:

We build an example based on evap_aet_minhas:

>>> from hydpy.models.whmod_rural import *
>>> parameterstep("1h")
>>> area(1.0)
>>> nmbzones(5)
>>> landtype(GRASS, GRASS, GRASS, GRASS, WATER)
>>> soiltype(SAND, SAND, SAND, SAND, NONE)
>>> zonearea(0.05, 0.1, 0.2, 0.3, 0.35)
>>> availablefieldcapacity(0.1)
>>> rootingdepth(1.0)
>>> groundwaterdepth(1.0)
>>> with model.add_aetmodel_v1("evap_aet_minhas"):
...     dissefactor(5.0)

Calc_SoilEvapotranspiration_AETModel_V1 stores the flux returned by the submodel without any modifications:

>>> states.soilmoisture = 0.0, 0.0, 50.0, 100.0, 0.0
>>> model.aetmodel.sequences.fluxes.potentialinterceptionevaporation = 5.0
>>> model.aetmodel.sequences.fluxes.potentialsoilevapotranspiration = 5.0
>>> model.aetmodel.sequences.fluxes.interceptionevaporation = 3.0
>>> model.calc_soilevapotranspiration_v1()
>>> fluxes.soilevapotranspiration
soilevapotranspiration(0.0, 0.0, 1.717962, 2.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_SoilEvapotranspiration_V1[source]

Bases: Method

Let a submodel that follows the AETModel_V1 submodel interface calculate soil evapotranspiration.

Required submethod:

Calc_SoilEvapotranspiration_AETModel_V1

Requires the control parameters:

NmbZones SoilType

Calculates the flux sequence:

SoilEvapotranspiration

class hydpy.models.whmod.whmod_model.Calc_TotalEvapotranspiration_V1[source]

Bases: Method

Calculate the sum of interception evaporation, lake evaporation, and soil evapotranspiration.

Requires the control parameters:

NmbZones LandType SoilType

Requires the flux sequences:

InterceptionEvaporation SoilEvapotranspiration LakeEvaporation

Calculates the flux sequence:

TotalEvapotranspiration

Basic equation:
\[\begin{split}T = I + S + L \\ \\ T = TotalEvapotranspiration \\ I = InterceptionEvaporation \\ S = SoilEvapotranspiration \\ L = LakeEvaporation\end{split}\]

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(3)
>>> landtype(GRASS, SEALED, WATER)
>>> soiltype(SAND, NONE, NONE)
>>> fluxes.interceptionevaporation = 1.0, 2.0, nan
>>> fluxes.soilevapotranspiration = 3.0, nan, nan
>>> fluxes.lakeevaporation = nan, nan, 5.0
>>> model.calc_totalevapotranspiration_v1()
>>> fluxes.totalevapotranspiration
totalevapotranspiration(4.0, 2.0, 5.0)
class hydpy.models.whmod.whmod_model.Calc_CapillaryRise_V1[source]

Bases: Method

Calculate the actual capillary rise if requested.

Requires the control parameters:

NmbZones SoilType WithCapillaryRise

Requires the derived parameter:

PotentialCapillaryRise

Requires the factor sequence:

RelativeSoilMoisture

Calculates the flux sequence:

CapillaryRise

Basic equation:
\[\begin{split}C = P \cdot (1 - R) ^ 3 \\ \\ C = CapillaryRise \\ P = PotentialCapillaryRise \\ R = RelativeSoilMoisture\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> simulationstep("1d")
>>> parameterstep("1d")
>>> nmbzones(7)
>>> landtype(GRASS, GRASS, GRASS, GRASS, GRASS, SEALED, WATER)
>>> soiltype(SAND, SAND, SAND, SAND, SAND, NONE, NONE)
>>> derived.potentialcapillaryrise(2.0)
>>> factors.relativesoilmoisture = 0.0, 0.25, 0.5, 0.75, 1.0, nan, nan
>>> withcapillaryrise(True)
>>> model.calc_capillaryrise_v1()
>>> fluxes.capillaryrise
capillaryrise(2.0, 0.84375, 0.25, 0.03125, 0.0, 0.0, 0.0)
>>> withcapillaryrise(False)
>>> model.calc_capillaryrise_v1()
>>> fluxes.capillaryrise
capillaryrise(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_CapillaryRise_V2[source]

Bases: Method

Calculate the actual capillary rise if requested.

Requires the control parameters:

NmbZones SoilType CisternSource WithCapillaryRise

Requires the derived parameter:

PotentialCapillaryRise

Requires the factor sequence:

RelativeSoilMoisture

Calculates the flux sequence:

CapillaryRise

Method Calc_CapillaryRise_V2 works like method Calc_CapillaryRise_V1 except that it does not calculate any capillary rise for zones connected to the cistern.

Examples:

>>> from hydpy.models.whmod import *
>>> simulationstep("1d")
>>> parameterstep("1d")
>>> nmbzones(7)
>>> landtype(GRASS, GRASS, GRASS, GRASS, GRASS, SEALED, WATER)
>>> soiltype(SAND, SAND, SAND, SAND, SAND, NONE, NONE)
>>> cisternsource(False, True, True, False, False, False, False)
>>> derived.potentialcapillaryrise(2.0)
>>> factors.relativesoilmoisture = 0.0, 0.25, 0.5, 0.75, 1.0, nan, nan
>>> withcapillaryrise(True)
>>> model.calc_capillaryrise_v2()
>>> fluxes.capillaryrise
capillaryrise(2.0, 0.0, 0.0, 0.03125, 0.0, 0.0, 0.0)
>>> withcapillaryrise(False)
>>> model.calc_capillaryrise_v2()
>>> fluxes.capillaryrise
capillaryrise(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_SoilMoisture_V1[source]

Bases: Method

Update the actual soil storage’s water content.

Requires the control parameters:

NmbZones SoilType

Requires the derived parameter:

MaxSoilWater

Requires the flux sequences:

Ponding SoilEvapotranspiration Percolation CapillaryRise

Updates the state sequence:

SoilMoisture

Basic equation:
\[\begin{split}M = I - E - P + C \\ \\ M = SoilMoisture \\ I = Ponding \\ E = SoilEvapotranspiration \\ P = Percolation \\ C = CapillaryRise\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> landtype(GRASS, GRASS, GRASS, GRASS, SEALED)
>>> soiltype(SAND, SAND, SAND, SAND, NONE)
>>> derived.maxsoilwater(10.0)

Cases where the given basic equation does not need further adjustment:

>>> states.soilmoisture(5.0)
>>> fluxes.ponding = 2.0
>>> fluxes.soilevapotranspiration = 2.5, -2.5, 5.0, -5.0, nan
>>> fluxes.percolation = 5.0
>>> fluxes.capillaryrise = 3.0
>>> model.calc_soilmoisture_v1()
>>> states.soilmoisture
soilmoisture(2.5, 7.5, 0.0, 10.0, 0.0)
>>> fluxes.soilevapotranspiration
soilevapotranspiration(2.5, -2.5, 5.0, -5.0, 0.0)
>>> fluxes.percolation
percolation(5.0, 5.0, 5.0, 5.0, 0.0)
>>> fluxes.capillaryrise
capillaryrise(3.0, 3.0, 3.0, 3.0, 0.0)

Cases where the soil moisture would become negative (we prevent this by reducing percolation and, if positive, evapotranspiration by the same factor):

>>> states.soilmoisture(2.0)
>>> fluxes.ponding = 1.0
>>> fluxes.soilevapotranspiration = 5.0, 0.0, -1.0, 7.0, nan
>>> fluxes.percolation = 0.0, 5.0, 6.0, 1.0, nan
>>> fluxes.capillaryrise = 1.0
>>> model.calc_soilmoisture_v1()
>>> states.soilmoisture
soilmoisture(0.0, 0.0, 0.0, 0.0, 0.0)
>>> fluxes.soilevapotranspiration
soilevapotranspiration(4.0, 0.0, -1.0, 3.5, 0.0)
>>> fluxes.percolation
percolation(0.0, 4.0, 5.0, 0.5, 0.0)
>>> fluxes.capillaryrise
capillaryrise(1.0, 1.0, 1.0, 1.0, 0.0)

Cases where the soil moisture would exceed the available storage volume (we prevent this by first reducing capillary rise and, if necessary, also increasing percolation):

>>> states.soilmoisture(8.0)
>>> fluxes.ponding = 1.0
>>> fluxes.soilevapotranspiration = 1.0, -1.0, -3.0, -4.0, nan
>>> fluxes.percolation = 1.0
>>> fluxes.capillaryrise = 5.0, 2.0, 1.0, 0.0, nan
>>> model.calc_soilmoisture_v1()
>>> states.soilmoisture
soilmoisture(10.0, 10.0, 10.0, 10.0, 0.0)
>>> fluxes.soilevapotranspiration
soilevapotranspiration(1.0, -1.0, -3.0, -4.0, 0.0)
>>> fluxes.percolation
percolation(1.0, 1.0, 2.0, 3.0, 0.0)
>>> fluxes.capillaryrise
capillaryrise(3.0, 1.0, 0.0, 0.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_RequiredIrrigation_V1[source]

Bases: Method

Calculate the individual zones’ irrigation demand.

Requires the control parameters:

NmbZones LandType SoilType IrrigationTrigger IrrigationTarget

Requires the derived parameters:

MOY MaxSoilWater

Requires the factor sequence:

RelativeSoilMoisture

Calculates the flux sequence:

RequiredIrrigation

Basic equation:
\[\begin{split}I = \begin{cases} (T_1 - R) \cdot M &|\ R < T_0 \\ 0 &|\ R \geq T_0 \end{cases} \\ \\ I = RequiredIrrigation \\ T_0 = IrrigationTrigger \\ T_1 = IrrigationTarget \\ R = RelativeSoilMoisture \\ M = MaxSoilWater\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(8)
>>> landtype(GRASS, GRASS, CORN, CORN, CORN, CORN, CORN, SEALED)
>>> soiltype(SAND, SAND, SAND, SAND, SAND, SAND, SAND, NONE)
>>> trigger = irrigationtrigger
>>> target = irrigationtarget
>>> trigger.grass, target.grass = 0.0, 0.0
>>> trigger.corn_jun, target.corn_jun = 0.7, 0.7
>>> trigger.corn_jul, target.corn_jul = 0.6, 0.8
>>> derived.maxsoilwater(100.0)
>>> factors.relativesoilmoisture = 0.0, 0.1, 0.5, 0.6, 0.7, 0.8, 0.9, nan
>>> from hydpy import pub
>>> pub.timegrids = "2001-06-29", "2001-07-03", "1d"
>>> derived.moy.update()
>>> model.idx_sim = 1
>>> model.calc_requiredirrigation_v1()
>>> fluxes.requiredirrigation
requiredirrigation(0.0, 0.0, 20.0, 10.0, 0.0, 0.0, 0.0, 0.0)
>>> model.idx_sim = 2
>>> model.calc_requiredirrigation_v1()
>>> fluxes.requiredirrigation
requiredirrigation(0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_CisternDemand_V1[source]

Bases: Method

Calculate the total irrigation water demand from the cistern.

Requires the control parameters:

NmbZones ZoneArea SoilType

Requires the flux sequence:

RequiredIrrigation

Calculates the flux sequence:

CisternDemand

Basic equation:
\[\begin{split}D = \sum_{k=1}^N \frac{A_k}{1000} \cdot R_k \\ \\ D = CisternDemand \\ N = NmbZones \\ A = ZoneArea \\ R = RequiredIrrigation\end{split}\]

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> landtype(GRASS, GRASS, GRASS, GRASS, SEALED)
>>> soiltype(SAND, SAND, SAND, SAND, NONE)
>>> area(15.0)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0)
>>> fluxes.requiredirrigation = 0.0, 6.0, 0.0, 7.0, nan
>>> model.calc_cisterndemand_v1()
>>> fluxes.cisterndemand
cisterndemand(0.04)
class hydpy.models.whmod.whmod_model.Calc_CisternExtraction_CisternWater_V1[source]

Bases: Method

Calculate the actual irrigation extraction from the cistern and update the amount of still available water.

Requires the flux sequence:

CisternDemand

Updates the state sequence:

CisternWater

Calculates the flux sequence:

CisternExtraction

Basic equations:
\[\begin{split}E(t) = \begin{cases} D(t) &|\ W(t) > 0 \\ 0 &|\ W(t) = 0 \end{cases} \\ \frac{d W(t)}{d t} = E(t) \\ \\ E = CisternExtraction \\ D = CisternDemand \\ W = CisternWater\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> states.cisternwater = 5.0
>>> fluxes.cisterndemand = 3.0
>>> model.calc_cisternextraction_cisternwater_v1()
>>> states.cisternwater
cisternwater(2.0)
>>> fluxes.cisternextraction
cisternextraction(3.0)
>>> model.calc_cisternextraction_cisternwater_v1()
>>> states.cisternwater
cisternwater(0.0)
>>> fluxes.cisternextraction
cisternextraction(2.0)
>>> model.calc_cisternextraction_cisternwater_v1()
>>> states.cisternwater
cisternwater(0.0)
>>> fluxes.cisternextraction
cisternextraction(0.0)
class hydpy.models.whmod.whmod_model.Calc_InternalIrrigation_SoilMoisture_V1[source]

Bases: Method

Internal irrigation with water taken from the cistern.

Requires the control parameters:

NmbZones SoilType

Requires the flux sequences:

RequiredIrrigation CisternDemand CisternExtraction

Updates the state sequence:

SoilMoisture

Calculates the flux sequence:

InternalIrrigation

Basic equations:
\[\begin{split}I = R \cdot E / D \\ \\ I = InternalIrrigation \\ R = RequiredIrrigation \\ E = CisternExtraction \\ D = CisternDemand\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> landtype(GRASS, GRASS, GRASS, GRASS, SEALED)
>>> soiltype(SAND, SAND, SAND, SAND, NONE)
>>> area(15.0)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0)
>>> states.soilmoisture = 100.0
>>> fluxes.requiredirrigation = 0.0, 6.0, 0.0, 7.0, nan
>>> fluxes.cisterndemand = 0.04
>>> fluxes.cisternextraction = 0.03
>>> model.calc_internalirrigation_soilmoisture_v1()
>>> fluxes.internalirrigation
internalirrigation(0.0, 4.5, 0.0, 5.25, 0.0)
>>> states.soilmoisture
soilmoisture(100.0, 104.5, 100.0, 105.25, 0.0)
>>> fluxes.requiredirrigation = 0.0, 0.0, 0.0, 0.0, nan
>>> fluxes.cisterndemand = 0.0
>>> fluxes.cisternextraction = 0.0
>>> model.calc_internalirrigation_soilmoisture_v1()
>>> fluxes.internalirrigation
internalirrigation(0.0, 0.0, 0.0, 0.0, 0.0)
>>> states.soilmoisture
soilmoisture(100.0, 104.5, 100.0, 105.25, 0.0)
class hydpy.models.whmod.whmod_model.Calc_ExternalIrrigation_SoilMoisture_V1[source]

Bases: Method

Irrigate from external sources, if required and requested.

Requires the control parameters:

NmbZones SoilType WithExternalIrrigation

Requires the flux sequence:

RequiredIrrigation

Updates the state sequence:

SoilMoisture

Calculates the flux sequence:

ExternalIrrigation

Basic equations:
\[\begin{split}E = \begin{cases} R &|\ W \\ 0 &|\ \overline{W} \end{cases} \\ S_{new} = S_{old} + E \\ \\ E = ExternalIrrigation \\ R = RequiredIrrigation \\ W = WithExternalIrrigation \\ S = SoilMoisture\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(2)
>>> landtype(CORN, SEALED)
>>> soiltype(SAND, NONE)
>>> fluxes.requiredirrigation(2.0, nan)
>>> states.soilmoisture = 50.0, nan
>>> withexternalirrigation(False)
>>> model.calc_externalirrigation_soilmoisture_v1()
>>> fluxes.externalirrigation
externalirrigation(0.0, 0.0)
>>> states.soilmoisture
soilmoisture(50.0, 0.0)
>>> withexternalirrigation(True)
>>> model.calc_externalirrigation_soilmoisture_v1()
>>> fluxes.externalirrigation
externalirrigation(2.0, 0.0)
>>> states.soilmoisture
soilmoisture(52.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_ExternalIrrigation_SoilMoisture_V2[source]

Bases: Method

Irrigate from external sources, if still required after internal irrigation and requested.

Requires the control parameters:

NmbZones SoilType WithExternalIrrigation

Requires the flux sequences:

RequiredIrrigation InternalIrrigation

Updates the state sequence:

SoilMoisture

Calculates the flux sequence:

ExternalIrrigation

Basic equations:
\[\begin{split}E = \begin{cases} R - I &|\ W \\ 0 &|\ \overline{W} \end{cases} \\ S_{new} = S_{old} + E \\ \\ E = ExternalIrrigation \\ R = RequiredIrrigation \\ I = InternalIrrigation \\ W = WithExternalIrrigation \\ S = SoilMoisture\end{split}\]

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(2)
>>> landtype(CORN, SEALED)
>>> soiltype(SAND, NONE)
>>> fluxes.requiredirrigation(5.0, nan)
>>> fluxes.internalirrigation(3.0, nan)
>>> states.soilmoisture = 50.0, nan
>>> withexternalirrigation(False)
>>> model.calc_externalirrigation_soilmoisture_v2()
>>> fluxes.externalirrigation
externalirrigation(0.0, 0.0)
>>> states.soilmoisture
soilmoisture(50.0, 0.0)
>>> withexternalirrigation(True)
>>> model.calc_externalirrigation_soilmoisture_v2()
>>> fluxes.externalirrigation
externalirrigation(2.0, 0.0)
>>> states.soilmoisture
soilmoisture(52.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_PotentialRecharge_V1[source]

Bases: Method

Calculate the potential recharge.

Requires the control parameters:

NmbZones LandType

Requires the input sequence:

Precipitation

Requires the flux sequences:

LakeEvaporation Percolation CapillaryRise

Calculates the flux sequence:

PotentialRecharge

Basic equation for water areas:
\[\begin{split}PotentialRecharge = P - E \\ \\ P = Precipitation \\ E = LakeEvaporation\end{split}\]
Basic equation for non-sealed land areas:
\[\begin{split}PotentialRecharge = P - C \\ \\ P = Percolation \\ C = CapillaryRise\end{split}\]

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(3)
>>> landtype(GRASS, SEALED, WATER)
>>> inputs.precipitation = 7.0
>>> fluxes.lakeevaporation = 4.0
>>> fluxes.percolation = 3.0
>>> fluxes.capillaryrise = 1.0
>>> model.calc_potentialrecharge_v1()
>>> fluxes.potentialrecharge
potentialrecharge(2.0, 0.0, 3.0)
class hydpy.models.whmod.whmod_model.Calc_PotentialRecharge_V2[source]

Bases: Method

Calculate the potential recharge.

Requires the control parameters:

NmbZones LandType CisternSource

Requires the input sequence:

Precipitation

Requires the flux sequences:

LakeEvaporation Percolation CapillaryRise

Calculates the flux sequence:

PotentialRecharge

Method Calc_PotentialRecharge_V2 works like method Calc_PotentialRecharge_V1 except that it does not calculate any potential recharge for zones connected to the cistern.

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> landtype(GRASS, GRASS, SEALED, SEALED, WATER)
>>> cisternsource(False, True, False, True, False)
>>> inputs.precipitation = 7.0
>>> fluxes.lakeevaporation = 4.0
>>> fluxes.percolation = 3.0
>>> fluxes.capillaryrise = 1.0
>>> model.calc_potentialrecharge_v2()
>>> fluxes.potentialrecharge
potentialrecharge(2.0, 0.0, 0.0, 0.0, 3.0)
class hydpy.models.whmod.whmod_model.Calc_Baseflow_V1[source]

Bases: Method

Calculate the base flow.

Requires the control parameters:

NmbZones LandType BaseflowIndex

Requires the flux sequence:

PotentialRecharge

Calculates the flux sequence:

Baseflow

Basic equation:
\[\begin{split}B = (1 - I) \cdot max(P, \, 0) \\ \\ B = Baseflow \\ I = BaseflowIndex \\ P = PotentialRecharge\end{split}\]

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> landtype(GRASS, GRASS, GRASS, GRASS, SEALED)
>>> baseflowindex(1.0, 0.5, 0.0, 0.0, nan)
>>> fluxes.potentialrecharge = 2.0, 2.0, 2.0, -2.0, nan
>>> model.calc_baseflow_v1()
>>> fluxes.baseflow
baseflow(0.0, 1.0, 2.0, 0.0, 0.0)
class hydpy.models.whmod.whmod_model.Calc_ActualRecharge_V1[source]

Bases: Method

Calculate the actual recharge.

Requires the control parameters:

NmbZones LandType

Requires the derived parameter:

ZoneRatio

Requires the flux sequences:

PotentialRecharge Baseflow

Calculates the flux sequence:

ActualRecharge

Basic equation:
\[\begin{split}A = \sum_{i=1}^N P_i - B_i \\ \\ N = NmbZones \\ A = ActualRecharge \\ P = PotentialRecharge \\ B = Baseflow\end{split}\]

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> landtype(GRASS, GRASS, GRASS, GRASS, SEALED)
>>> area(14.0)
>>> zonearea(1.0, 1.5, 2.5, 2.0, 7.0)
>>> derived.zoneratio.update()
>>> fluxes.potentialrecharge = 2.0, 10.0, -2.0, -0.5, nan
>>> fluxes.baseflow = 0.0, 5.0, 0.0, 0.0, nan
>>> model.calc_actualrecharge_v1()
>>> fluxes.actualrecharge
actualrecharge(0.25)
class hydpy.models.whmod.whmod_model.Calc_DelayedRecharge_DeepWater_V1[source]

Bases: Method

Calculate the delayed recharge and update the amount of water that is (still) percolating through the vadose zone.

Requires the control parameter:

RechargeDelay

Requires the flux sequence:

ActualRecharge

Updates the state sequence:

DeepWater

Calculates the flux sequence:

DelayedRecharge

Basic equations:
\[\begin{split}W_{new} = (A + W_{old}) \cdot exp(-1 / R) \\ D = A + W_{old} - W_{new} \\ \\ D = DelayedRecharge \\ A = ActualRecharge \\ W = DeepWater \\ R = RechargeDelay\end{split}\]

(The given equations are the analytical solution of the linear storage equation under the assumption of a stepwise constant inflow.)

Examples:

>>> from hydpy.models.whmod import *
>>> simulationstep("1d")
>>> parameterstep("1d")
>>> fluxes.actualrecharge = 1.0
>>> rechargedelay(1.0)
>>> states.deepwater(2.0)
>>> model.calc_delayedrecharge_deepwater_v1()
>>> fluxes.delayedrecharge
delayedrecharge(1.896362)
>>> states.deepwater
deepwater(1.103638)
>>> rechargedelay(0.0)
>>> states.deepwater(2.0)
>>> model.calc_delayedrecharge_deepwater_v1()
>>> fluxes.delayedrecharge
delayedrecharge(3.0)
>>> states.deepwater
deepwater(0.0)
class hydpy.models.whmod.whmod_model.Get_Temperature_V1[source]

Bases: Method

Get the basin’s current air temperature.

Requires the input sequence:

Temperature

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> inputs.temperature = 2.0
>>> from hydpy import round_
>>> round_(model.get_temperature_v1(0))
2.0
>>> round_(model.get_temperature_v1(1))
2.0
class hydpy.models.whmod.whmod_model.Get_MeanTemperature_V1[source]

Bases: Method

Get the basin’s current air temperature.

Requires the input sequence:

Temperature

Example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> inputs.temperature = 2.0
>>> from hydpy import round_
>>> round_(model.get_meantemperature_v1())
2.0
class hydpy.models.whmod.whmod_model.Get_Precipitation_V1[source]

Bases: Method

Get the basin’s current precipitation.

Requires the input sequence:

Precipitation

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> inputs.precipitation = 2.0
>>> from hydpy import round_
>>> round_(model.get_precipitation_v1(0))
2.0
>>> round_(model.get_precipitation_v1(1))
2.0
class hydpy.models.whmod.whmod_model.Get_InterceptedWater_V1[source]

Bases: Method

Get the selected zone’s current amount of intercepted water.

Requires the state sequence:

InterceptedWater

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(2)
>>> states.interceptedwater = 2.0, 4.0
>>> from hydpy import round_
>>> round_(model.get_interceptedwater_v1(0))
2.0
>>> round_(model.get_interceptedwater_v1(1))
4.0
class hydpy.models.whmod.whmod_model.Get_SoilWater_V1[source]

Bases: Method

Get the selected zone’s current soil water content.

Requires the state sequence:

SoilMoisture

Examples:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(2)
>>> states.soilmoisture = 2.0, 4.0
>>> from hydpy import round_
>>> round_(model.get_soilwater_v1(0))
2.0
>>> round_(model.get_soilwater_v1(1))
4.0
class hydpy.models.whmod.whmod_model.Get_SnowCover_V1[source]

Bases: Method

Get the selected zones’s current snow cover degree.

Requires the state sequence:

Snowpack

Examples:

Each response unit with a non-zero amount of snow counts as wholly covered:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(2)
>>> states.snowpack = 0.0, 2.0
>>> model.get_snowcover_v1(0)
0.0
>>> model.get_snowcover_v1(1)
1.0
class hydpy.models.whmod.whmod_model.Main_AETModel_V1[source]

Bases: AdHocModel

Base class for HydPy-WHMod models that use submodels that comply with the AETModel_V1 interface.

aetmodel: SubmodelProperty
aetmodel_is_mainmodel
aetmodel_typeid
add_aetmodel_v1

Initialise the given submodel that follows the AETModel_V1 interface and is responsible for calculating the different kinds of actual evapotranspiration.

>>> from hydpy.models.whmod_rural import *
>>> parameterstep()
>>> nmbzones(5)
>>> area(10.0)
>>> landtype(GRASS, DECIDUOUS, CONIFER, WATER, SEALED)
>>> zonearea(4.0, 1.0, 1.0, 1.0, 3.0)
>>> availablefieldcapacity(0.2)
>>> rootingdepth(1.0)
>>> groundwaterdepth(1.0)
>>> with model.add_aetmodel_v1("evap_aet_minhas"):
...     nmbhru
...     area
...     water
...     interception
...     soil
...     dissefactor(grass=1.0, deciduous=2.0, default=3.0)
...     for method, arguments in model.preparemethod2arguments.items():
...         print(method, arguments[0][0], sep=": ")
nmbhru(5)
area(10.0)
water(conifer=False, deciduous=False, grass=False, sealed=False,
      water=True)
interception(conifer=True, deciduous=True, grass=True, sealed=True,
             water=False)
soil(conifer=True, deciduous=True, grass=True, sealed=False,
     water=False)
prepare_nmbzones: 5
prepare_zonetypes: [1 2 4 9 8]
prepare_subareas: [4. 1. 1. 1. 3.]
prepare_water: [False False False  True False]
prepare_interception: [ True  True  True False  True]
prepare_soil: [ True  True  True False False]
prepare_plant: [ True  True  True False False]
prepare_conifer: [False False  True False False]
prepare_tree: [False  True  True False False]
prepare_maxsoilwater: [200. 200. 200. 200. 200.]
>>> df = model.aetmodel.parameters.control.dissefactor
>>> df
dissefactor(conifer=3.0, deciduous=2.0, grass=1.0)
>>> landtype(DECIDUOUS, GRASS, CONIFER, WATER, SEALED)
>>> df
dissefactor(conifer=3.0, deciduous=1.0, grass=2.0)
>>> from hydpy import round_
>>> round_(df.average_values())
1.5
REUSABLE_METHODS: ClassVar[tuple[type[ReusableMethod], ...]] = ()
class hydpy.models.whmod.whmod_model.Sub_TempModel_V1[source]

Bases: AdHocModel, TempModel_V1

Base class for HydPy-WHMod models that comply with the TempModel_V1 submodel interface.

REUSABLE_METHODS: ClassVar[tuple[type[ReusableMethod], ...]] = ()
class hydpy.models.whmod.whmod_model.Sub_PrecipModel_V1[source]

Bases: AdHocModel, PrecipModel_V1

Base class for HydPy-WHMod models that comply with the PrecipModel_V1 submodel interface.

REUSABLE_METHODS: ClassVar[tuple[type[ReusableMethod], ...]] = ()
class hydpy.models.whmod.whmod_model.Sub_IntercModel_V1[source]

Bases: AdHocModel, IntercModel_V1

Base class for HydPy-WHMod models that comply with the IntercModel_V1 submodel interface.

REUSABLE_METHODS: ClassVar[tuple[type[ReusableMethod], ...]] = ()
class hydpy.models.whmod.whmod_model.Sub_SoilWaterModel_V1[source]

Bases: AdHocModel, SoilWaterModel_V1

Base class for HydPy-WHMod models that comply with the SoilWaterModel_V1 submodel interface.

REUSABLE_METHODS: ClassVar[tuple[type[ReusableMethod], ...]] = ()
class hydpy.models.whmod.whmod_model.Sub_SnowCoverModel_V1[source]

Bases: AdHocModel, SnowCoverModel_V1

Base class for HydPy-WHMod models that comply with the SnowCoverModel_V1 submodel interface.

REUSABLE_METHODS: ClassVar[tuple[type[ReusableMethod], ...]] = ()

Parameter Features

Parameter tools

class hydpy.models.whmod.whmod_parameters.LandTypeBaseParameter(subvars: SubParameters)[source]

Bases: ZipParameter

Base class for 1-dimensional land type-specific parameters.

constants: dict[str, int] = {'CONIFER': 4, 'CORN': 3, 'DECIDUOUS': 2, 'GRASS': 1, 'SEALED': 8, 'SPRINGWHEAT': 5, 'SUGARBEETS': 7, 'WATER': 9, 'WINTERWHEAT': 6}

Mapping of the constants’ names and values.

property refweights

Reference to the associated instance of ZoneRatio for calculating areal mean values.

name: str = 'landtypebaseparameter'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_parameters.LandTypeCompleteParameter(subvars: SubParameters)[source]

Bases: LandTypeBaseParameter

Base class for 1-dimensional land type-specific parameters without restrictions.

We take parameter ZoneArea as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> zonearea(grass=1.0, deciduous=2.0, corn=3.0, conifer=4.0, springwheat=5.0,
...          winterwheat=6.0, sugarbeets=7.0, sealed=8.0, water=9.0)
>>> zonearea
zonearea(conifer=4.0, corn=3.0, deciduous=2.0, grass=1.0, sealed=8.0,
         springwheat=5.0, sugarbeets=7.0, water=9.0, winterwheat=6.0)
>>> from hydpy import round_
>>> round_(zonearea.average_values())
6.333333
mask: masktools.IndexMask
name: str = 'landtypecompleteparameter'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_parameters.LandTypeNonWaterParameter(subvars: SubParameters)[source]

Bases: LandTypeBaseParameter

Base class for 1-dimensional land type-specific parameters that do not affect water areas.

We take parameter DegreeDayFactor as an example:

>>> from hydpy.models.whmod import *
>>> simulationstep("1d")
>>> parameterstep("1d")
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> degreedayfactor(grass=1.0, deciduous=2.0, corn=3.0, conifer=4.0,
...                 springwheat=5.0, winterwheat=6.0, sugarbeets=7.0, sealed=8.0)
>>> degreedayfactor
degreedayfactor(conifer=4.0, corn=3.0, deciduous=2.0, grass=1.0,
                sealed=8.0, springwheat=5.0, sugarbeets=7.0,
                winterwheat=6.0)
>>> zonearea(0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2, 0.1, 0.9)
>>> from hydpy import round_
>>> round_(degreedayfactor.average_values())
3.333333
mask: masktools.IndexMask
name: str = 'landtypenonwaterparameter'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_parameters.LandTypeGroundwaterParameter(subvars: SubParameters)[source]

Bases: LandTypeBaseParameter

Base class for 1-dimensional land type-specific parameters that affect groundwater recharge.

We take parameter BaseflowIndex as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          WATER, SEALED)
>>> baseflowindex(grass=0.1, deciduous=0.2, corn=0.3, conifer=0.4, springwheat=0.5,
...               winterwheat=0.6, sugarbeets=0.7, water=0.8)
>>> baseflowindex
baseflowindex(conifer=0.4, corn=0.3, deciduous=0.2, grass=0.1,
              springwheat=0.5, sugarbeets=0.7, water=0.8,
              winterwheat=0.6)
>>> zonearea(8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 9.0)
>>> from hydpy import round_
>>> round_(baseflowindex.average_values())
0.333333
mask: masktools.IndexMask
name: str = 'landtypegroundwaterparameter'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_parameters.LandTypeSoilParameter(subvars: SubParameters)[source]

Bases: LandTypeBaseParameter

Base class for 1-dimensional land type-specific parameters that affect soil processes.

We take parameter RootingDepth as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          WATER, SEALED)
>>> rootingdepth(grass=0.1, deciduous=0.2, corn=0.3, conifer=0.4, springwheat=0.5,
...              winterwheat=0.6, sugarbeets=0.7)
>>> rootingdepth
rootingdepth(conifer=0.4, corn=0.3, deciduous=0.2, grass=0.1,
             springwheat=0.5, sugarbeets=0.7, winterwheat=0.6)
>>> zonearea(7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 8.0, 9.0)
>>> from hydpy import round_
>>> round_(rootingdepth.average_values())
0.3
mask: masktools.IndexMask
name: str = 'landtypesoilparameter'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_parameters.SoilTypeParameter(subvars: SubParameters)[source]

Bases: ZipParameter

Base class for 1-dimensional soil type-specific parameters.

We take parameter AvailableFieldCapacity as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(7)
>>> landtype(GRASS, GRASS, GRASS, GRASS, GRASS, GRASS, SEALED)
>>> soiltype(SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, NONE)
>>> availablefieldcapacity(
...     sand=0.1, sand_cohesive=0.2, loam=0.3, clay=0.4, silt=0.5, peat=0.6
... )
>>> availablefieldcapacity
availablefieldcapacity(clay=0.4, loam=0.3, peat=0.6, sand=0.1,
                       sand_cohesive=0.2, silt=0.5)
>>> area(30.0)
>>> zonearea(6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 9.0)
>>> from hydpy import round_
>>> round_(availablefieldcapacity.average_values())
0.266667
TYPE

alias of float

constants: dict[str, int] = {'CLAY': 13, 'LOAM': 12, 'NONE': 16, 'PEAT': 15, 'SAND': 10, 'SAND_COHESIVE': 11, 'SILT': 14}

Mapping of the constants’ names and values.

mask: masktools.IndexMask
property refweights

Reference to the associated instance of ZoneRatio for calculating areal mean values.

name: str = 'soiltypeparameter'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

Constants

HydPy-WHMod provides two types of constants: those associated with the land type and those associated with the soil type of the individual zones of a sub-catchment. They are all available via wildcard-imports:

>>> from hydpy.models.whmod import *
>>> (GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS, SEALED,
...  WATER)
(1, 2, 3, 4, 5, 6, 7, 8, 9)
>>> (SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, NONE)
(10, 11, 12, 13, 14, 15, 16)
hydpy.models.whmod.whmod_constants.GRASS = 1

Land type constant for grassland.

hydpy.models.whmod.whmod_constants.DECIDUOUS = 2

Land type constant for deciduous forests.

hydpy.models.whmod.whmod_constants.CORN = 3

Land type constant for corn fields.

hydpy.models.whmod.whmod_constants.CONIFER = 4

Land type constant for coniferous forests.

hydpy.models.whmod.whmod_constants.SPRINGWHEAT = 5

Land type constant for spring wheat fields.

hydpy.models.whmod.whmod_constants.WINTERWHEAT = 6

Land type constant for winter wheat fields.

hydpy.models.whmod.whmod_constants.SUGARBEETS = 7

Land type constant for sugar beet fields.

hydpy.models.whmod.whmod_constants.SEALED = 8

Land type constant for sealed areas.

hydpy.models.whmod.whmod_constants.WATER = 9

Land type constant for water areas.

hydpy.models.whmod.whmod_constants.SAND = 10

Soil type constant for sand.

hydpy.models.whmod.whmod_constants.SAND_COHESIVE = 11

Soil type constant for cohesive sand.

hydpy.models.whmod.whmod_constants.LOAM = 12

Soil type constant for loam.

hydpy.models.whmod.whmod_constants.CLAY = 13

Soil type constant for clay.

hydpy.models.whmod.whmod_constants.SILT = 14

Soil type constant for silt.

hydpy.models.whmod.whmod_constants.PEAT = 15

Soil type constant for peat.

hydpy.models.whmod.whmod_constants.NONE = 16

Soil type constant for areas without soils.

Control parameters

class hydpy.models.whmod.ControlParameters(master: Parameters, cls_fastaccess: type[FastAccessParameter] | None = None, cymodel: CyModelProtocol | None = None)

Bases: SubParameters

Control parameters of model whmod.

The following classes are selected:
class hydpy.models.whmod.whmod_control.Area(subvars: SubParameters)[source]

Bases: Parameter

Total area [m²].

NDIM: int = 0
TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (1e-10, None)
name: str = 'area'

Name of the variable in lowercase letters.

unit: str = 'm²'

Unit of the variable.

class hydpy.models.whmod.whmod_control.NmbZones(subvars: SubParameters)[source]

Bases: Parameter

Number of zones (hydrological response units) in a subbasin [-].

Required by the methods:

Calc_ActualRecharge_V1 Calc_Baseflow_V1 Calc_CapillaryRise_V1 Calc_CapillaryRise_V2 Calc_CisternDemand_V1 Calc_CisternInflow_V1 Calc_ExternalIrrigation_SoilMoisture_V1 Calc_ExternalIrrigation_SoilMoisture_V2 Calc_InterceptionEvaporation_InterceptedWater_AETModel_V1 Calc_InterceptionEvaporation_InterceptedWater_V1 Calc_InternalIrrigation_SoilMoisture_V1 Calc_LakeEvaporation_AETModel_V1 Calc_LakeEvaporation_V1 Calc_Percolation_V1 Calc_Ponding_V1 Calc_PotentialRecharge_V1 Calc_PotentialRecharge_V2 Calc_PotentialSnowmelt_V1 Calc_RelativeSoilMoisture_V1 Calc_RequiredIrrigation_V1 Calc_Snowmelt_Snowpack_V1 Calc_SoilEvapotranspiration_AETModel_V1 Calc_SoilEvapotranspiration_V1 Calc_SoilMoisture_V1 Calc_SurfaceRunoff_V1 Calc_Throughfall_InterceptedWater_V1 Calc_TotalEvapotranspiration_V1

NmbZones determines the length of most 1-dimensional parameters and sequences. Usually, you should first prepare NmbZones and define the values of all 1-dimensional parameters and sequences afterwards:

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> availablefieldcapacity.shape
(5,)
>>> states.soilmoisture.shape
(5,)

Changing the value of NmbZones later reshapes the affected parameters and sequences and makes it necessary to reset their values:

>>> availablefieldcapacity(2.0)
>>> availablefieldcapacity
availablefieldcapacity(2.0)
>>> nmbzones(3)
>>> availablefieldcapacity
availablefieldcapacity(?)

Re-defining the same value does not delete the already available data:

>>> availablefieldcapacity(2.0)
>>> nmbzones(3)
>>> availablefieldcapacity
availablefieldcapacity(2.0)
NDIM: int = 0
TYPE

alias of int

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (1, None)
name: str = 'nmbzones'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.ZoneArea(subvars: SubParameters)[source]

Bases: LandTypeCompleteParameter

Zone area [m²].

Required by the methods:

Calc_CisternDemand_V1 Calc_CisternInflow_V1

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'zonearea'

Name of the variable in lowercase letters.

unit: str = 'm²'

Unit of the variable.

class hydpy.models.whmod.whmod_control.LandType(subvars: SubParameters)[source]

Bases: NameParameter

Land cover type [-].

Required by the methods:

Calc_ActualRecharge_V1 Calc_Baseflow_V1 Calc_CisternInflow_V1 Calc_InterceptionEvaporation_InterceptedWater_AETModel_V1 Calc_InterceptionEvaporation_InterceptedWater_V1 Calc_LakeEvaporation_AETModel_V1 Calc_LakeEvaporation_V1 Calc_Ponding_V1 Calc_PotentialRecharge_V1 Calc_PotentialRecharge_V2 Calc_PotentialSnowmelt_V1 Calc_RequiredIrrigation_V1 Calc_Snowmelt_Snowpack_V1 Calc_SurfaceRunoff_V1 Calc_Throughfall_InterceptedWater_V1 Calc_TotalEvapotranspiration_V1

constants: Constants = {'CONIFER': 4, 'CORN': 3, 'DECIDUOUS': 2, 'GRASS': 1, 'SEALED': 8, 'SPRINGWHEAT': 5, 'SUGARBEETS': 7, 'WATER': 9, 'WINTERWHEAT': 6}
name: str = 'landtype'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.SoilType(subvars: SubParameters)[source]

Bases: NameParameter

Soil type [-].

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> soiltype(SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, SAND, NONE, NONE)
>>> soiltype
soiltype(SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, SAND, NONE, NONE)
>>> soiltype(SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, NONE, NONE, NONE)
Traceback (most recent call last):
...
ValueError: While trying to set the values of parameter `soiltype` of element `?`, the following error occurred: The soil type of land type(s) SUGARBEETS must not be NONE.
>>> soiltype
soiltype(?)
>>> soiltype(SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, SAND, SAND, SAND)
Traceback (most recent call last):
...
ValueError: While trying to set the values of parameter `soiltype` of element `?`, the following error occurred: The soil type of land type(s) SEALED and WATER must be NONE.
>>> soiltype
soiltype(?)
constants: Constants = {'CLAY': 13, 'LOAM': 12, 'NONE': 16, 'PEAT': 15, 'SAND': 10, 'SAND_COHESIVE': 11, 'SILT': 14}
mask
name: str = 'soiltype'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.CisternSource(subvars: SubParameters)[source]

Bases: LandTypeNonWaterParameter

A flag that indicates whether a zone’s excess water (surface runoff or percolation) is channelled into the cistern [-]..

TYPE

alias of bool

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (False, True)
name: str = 'cisternsource'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.CisternCapacity(subvars: SubParameters)[source]

Bases: Parameter

Maximum water amount that can be collected in the cistern [m³].

Required by the method:

Calc_CisternOverflow_CisternWater_V1

NDIM: int = 0
TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'cisterncapacity'

Name of the variable in lowercase letters.

unit: str = 'm³'

Unit of the variable.

class hydpy.models.whmod.whmod_control.InterceptionCapacity(subvars: SubParameters)[source]

Bases: KeywordParameter2D

Maximum interception storage [mm].

Required by the method:

Calc_Throughfall_InterceptedWater_V1

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
columnnames: tuple[str, ...] = ('jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec')
rownames: tuple[str, ...] = ('grass', 'deciduous', 'corn', 'conifer', 'springwheat', 'winterwheat', 'sugarbeets', 'sealed')
name: str = 'interceptioncapacity'

Name of the variable in lowercase letters.

unit: str = 'mm'

Unit of the variable.

class hydpy.models.whmod.whmod_control.DegreeDayFactor(subvars: SubParameters)[source]

Bases: LandTypeNonWaterParameter

Degree day factor for snow melting [mm/T/K].

Required by the method:

Calc_PotentialSnowmelt_V1

TYPE

alias of float

TIME: bool | None = True
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'degreedayfactor'

Name of the variable in lowercase letters.

unit: str = 'mm/T/K'

Unit of the variable.

class hydpy.models.whmod.whmod_control.AvailableFieldCapacity(subvars: SubParameters)[source]

Bases: SoilTypeParameter

Maximum relative soil moisture content [-].

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'availablefieldcapacity'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.RootingDepth(subvars: SubParameters)[source]

Bases: LandTypeSoilParameter

Maximum rooting depth [m].

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'rootingdepth'

Name of the variable in lowercase letters.

unit: str = 'm'

Unit of the variable.

class hydpy.models.whmod.whmod_control.GroundwaterDepth(subvars: SubParameters)[source]

Bases: SoilTypeParameter

Average groundwater depth [m].

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'groundwaterdepth'

Name of the variable in lowercase letters.

unit: str = 'm'

Unit of the variable.

class hydpy.models.whmod.whmod_control.WithCapillaryRise(subvars: SubParameters)[source]

Bases: Parameter

Flag to turn on/off capillary rise [-].

Required by the methods:

Calc_CapillaryRise_V1 Calc_CapillaryRise_V2

NDIM: int = 0
TYPE

alias of bool

TIME: bool | None = None
name: str = 'withcapillaryrise'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.CapillaryThreshold(subvars: SubParameters)[source]

Bases: SoilTypeParameter

Relative soil moisture where the capillary rise starts [-].

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'capillarythreshold'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.CapillaryLimit(subvars: SubParameters)[source]

Bases: SoilTypeParameter

Relative soil moisture where the capillary rise reaches its maximum [-].

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'capillarylimit'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.IrrigationTrigger(subvars: SubParameters)[source]

Bases: KeywordParameter2D

Relative soil moisture below which irrigation starts [-].

Required by the method:

Calc_RequiredIrrigation_V1

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, 1.0)
columnnames: tuple[str, ...] = ('jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec')
rownames: tuple[str, ...] = ('grass', 'deciduous', 'corn', 'conifer', 'springwheat', 'winterwheat', 'sugarbeets')
trim(lower=None, upper=None) bool[source]

Trim IrrigationTrigger following \(0 \leq IrrigationTrigger \leq IrrigationTarget \leq 1\).

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> trigger = irrigationtrigger
>>> trigger(
...     grass=0.0,
...     deciduous=0.0,
...     corn=[0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 1.3, 0.0, 0.0, 0.0, 0.0],
...     conifer=0.0,
...     springwheat=0.0,
...     winterwheat=0.0,
...     sugarbeets=0.0,
... )
>>> trigger.corn_jun, trigger.corn_jul, trigger.corn_aug
(0.7, 1.0, 1.0)
>>> irrigationtarget.corn_jun = 0.7
>>> irrigationtarget.corn_jul = 0.7
>>> trigger(
...     grass=0.0,
...     deciduous=0.0,
...     corn=[0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 1.0, 1.3, 0.0, 0.0, 0.0, 0.0],
...     conifer=0.0,
...     springwheat=0.0,
...     winterwheat=0.0,
...     sugarbeets=0.0,
... )
>>> trigger = irrigationtrigger
>>> trigger.corn_jun, trigger.corn_jul, trigger.corn_aug
(0.7, 0.7, 1.0)
name: str = 'irrigationtrigger'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.IrrigationTarget(subvars: SubParameters)[source]

Bases: KeywordParameter2D

Relative soil moisture content at which irrigation ends [-].

Required by the method:

Calc_RequiredIrrigation_V1

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, 1.0)
columnnames: tuple[str, ...] = ('jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec')
rownames: tuple[str, ...] = ('grass', 'deciduous', 'corn', 'conifer', 'springwheat', 'winterwheat', 'sugarbeets')
trim(lower=None, upper=None) bool[source]

Trim IrrigationTarget following \(0 \leq IrrigationTrigger \leq IrrigationTarget \leq 1\).

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> target = irrigationtarget
>>> target(
...     grass=0.0,
...     deciduous=0.0,
...     corn=[0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.3, -0.1, 0.0, 0.0, 0.0, 0.0],
...     conifer=0.0,
...     springwheat=0.0,
...     winterwheat=0.0,
...     sugarbeets=0.0,
... )
>>> target.corn_jun, target.corn_jul, target.corn_aug
(0.7, 0.3, 0.0)
>>> irrigationtrigger.corn_jun = 0.7
>>> irrigationtrigger.corn_jul = 0.7
>>> target(
...     grass=0.0,
...     deciduous=0.0,
...     corn=[0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.3, -0.1, 0.0, 0.0, 0.0, 0.0],
...     conifer=0.0,
...     springwheat=0.0,
...     winterwheat=0.0,
...     sugarbeets=0.0,
... )
>>> target = irrigationtarget
>>> target.corn_jun, target.corn_jul, target.corn_aug
(0.7, 0.7, 0.0)
name: str = 'irrigationtarget'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.WithExternalIrrigation(subvars: SubParameters)[source]

Bases: Parameter

Flag to turn on/off external irrigation [-].

Required by the methods:

Calc_ExternalIrrigation_SoilMoisture_V1 Calc_ExternalIrrigation_SoilMoisture_V2

NDIM: int = 0
TYPE

alias of bool

TIME: bool | None = None
name: str = 'withexternalirrigation'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.BaseflowIndex(subvars: SubParameters)[source]

Bases: LandTypeGroundwaterParameter

Baseflow index [-].

Required by the method:

Calc_Baseflow_V1

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, 1.0)
name: str = 'baseflowindex'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_control.RechargeDelay(subvars: SubParameters)[source]

Bases: Parameter

Delay between soil percolation and groundwater recharge [T].

Required by the method:

Calc_DelayedRecharge_DeepWater_V1

NDIM: int = 0
TYPE

alias of float

TIME: bool | None = False
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'rechargedelay'

Name of the variable in lowercase letters.

unit: str = 'T'

Unit of the variable.

Derived parameters

class hydpy.models.whmod.DerivedParameters(master: Parameters, cls_fastaccess: type[FastAccessParameter] | None = None, cymodel: CyModelProtocol | None = None)

Bases: SubParameters

Derived parameters of model whmod.

The following classes are selected:
class hydpy.models.whmod.whmod_derived.MOY(subvars: SubParameters)[source]

Bases: MOYParameter

References the “global” month of the year index array [-].

Required by the methods:

Calc_RequiredIrrigation_V1 Calc_Throughfall_InterceptedWater_V1

name: str = 'moy'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_derived.ZoneRatio(subvars: SubParameters)[source]

Bases: LandTypeCompleteParameter

Relative zone area [-].

Required by the method:

Calc_ActualRecharge_V1

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, 1.0)
update()[source]

Calculate the relative zone areas based on \(ZoneRation = ZoneArea / Area\).

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(3)
>>> landtype(GRASS, WATER, SEALED)
>>> area(100.0)
>>> zonearea(20.0, 30.0, 50.0)
>>> derived.zoneratio.update()
>>> derived.zoneratio
zoneratio(grass=0.2, sealed=0.5, water=0.3)
name: str = 'zoneratio'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_derived.SoilDepth(subvars: SubParameters)[source]

Bases: SoilTypeParameter

Effective soil depth [m].

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
update()[source]

Calculate the effective soil depth

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(4)
>>> landtype(GRASS, DECIDUOUS, CONIFER, WATER)
>>> soiltype(SAND, SILT, CLAY, NONE)
>>> groundwaterdepth(1.0)
>>> rootingdepth(0.5, 1.0, 1.5, 2.0)
>>> derived.soildepth.update()
>>> derived.soildepth
soildepth(clay=1.0, sand=0.5, silt=1.0)
name: str = 'soildepth'

Name of the variable in lowercase letters.

unit: str = 'm'

Unit of the variable.

class hydpy.models.whmod.whmod_derived.MaxSoilWater(subvars: SubParameters)[source]

Bases: SoilTypeParameter

Maximum water content of the considered soil column [mm].

Required by the methods:

Calc_RelativeSoilMoisture_V1 Calc_RequiredIrrigation_V1 Calc_SoilMoisture_V1

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
update()[source]

Calculate the maximum soil water content based on \(1000 \cdot AvailableFieldCapacity \cdot max(SoilDepth, \, 0.3)\)

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(7)
>>> landtype(GRASS, GRASS, GRASS, GRASS, GRASS, GRASS, SEALED)
>>> soiltype(SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, NONE)
>>> availablefieldcapacity(0.2)
>>> derived.soildepth(
...     sand=0.0, sand_cohesive=0.2, loam=0.3, clay=0.4, silt=1.0, peat=1.0
... )
>>> derived.maxsoilwater.update()
>>> derived.maxsoilwater
maxsoilwater(clay=80.0, loam=60.0, peat=200.0, sand=60.0,
             sand_cohesive=60.0, silt=200.0)
name: str = 'maxsoilwater'

Name of the variable in lowercase letters.

unit: str = 'mm'

Unit of the variable.

class hydpy.models.whmod.whmod_derived.Beta(subvars: SubParameters)[source]

Bases: SoilTypeParameter

Nonlinearity parameter for calculating percolation [-].

Required by the method:

Calc_Percolation_V1

TYPE

alias of float

TIME: bool | None = None
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
update()[source]

Calculate Beta based on \(1 + \frac{6}{1 + (MaxSoilWater / 118.25)^{-6.5}}\) (Armbruster, 2002).

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(7)
>>> landtype(GRASS, GRASS, GRASS, GRASS, GRASS, GRASS, SEALED)
>>> soiltype(SAND, SAND_COHESIVE, LOAM, CLAY, SILT, PEAT, NONE)
>>> derived.maxsoilwater(
...     sand=0.0, sand_cohesive=50.0, loam=100.0, clay=150.0, silt=200.0,
...     peat=250.0
... )
>>> derived.beta.update()
>>> derived.beta
beta(clay=5.945944, loam=2.510161, peat=6.954142, sand=1.0,
     sand_cohesive=1.022215, silt=6.809179)
>>> nmbzones(2)
>>> landtype(WATER, SEALED)
>>> soiltype(NONE)
>>> derived.maxsoilwater(100.0)
>>> derived.beta.update()
>>> derived.beta
beta(nan)
name: str = 'beta'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

class hydpy.models.whmod.whmod_derived.PotentialCapillaryRise(subvars: SubParameters)[source]

Bases: SoilTypeParameter

Potential capillary rise [mm/T].

Required by the methods:

Calc_CapillaryRise_V1 Calc_CapillaryRise_V2

TYPE

alias of float

TIME: bool | None = True
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
update()[source]

Calculate the potential capillary rise based on \(5 \cdot Days \cdot \frac{(GroundwaterDepth - SoilDepth) - CapillaryThreshold} {CapillaryLimit - CapillaryThreshold}\).

>>> from hydpy.models.whmod import *
>>> simulationstep("1h")
>>> parameterstep("1d")
>>> nmbzones(7)
>>> landtype(GRASS, GRASS, GRASS, GRASS, GRASS, GRASS, SEALED)
>>> soiltype(SAND, SAND, SAND, SAND, SAND, SAND, NONE)
>>> capillarythreshold(sand=0.8)
>>> capillarylimit(sand=0.4)
>>> derived.soildepth(sand=1.0)
>>> groundwaterdepth(1.2, 1.4, 1.6, 1.8, 2.0, nan, nan)
>>> derived.potentialcapillaryrise.update()
>>> derived.potentialcapillaryrise
potentialcapillaryrise(5.0, 5.0, 2.5, 0.0, 0.0, nan, nan)
>>> from hydpy import print_vector
>>> print_vector(derived.potentialcapillaryrise.values)
0.208333, 0.208333, 0.104167, 0.0, 0.0, nan, nan
>>> capillarythreshold(sand=0.6)
>>> capillarylimit(sand=0.6)
>>> derived.potentialcapillaryrise.update()
>>> derived.potentialcapillaryrise
potentialcapillaryrise(5.0, 5.0, 0.0, 0.0, 0.0, nan, nan)
name: str = 'potentialcapillaryrise'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

Sequence Features

Sequence tools

class hydpy.models.whmod.whmod_sequences.Mixin1DSequence(subvars: SubVariables)[source]

Bases: Sequence_

Mixin class for all 1-dimensional sequences.

NDIM: int = 1
NUMERIC: bool = False
property refweights

Reference to the associated instance of ZoneRatio for calculating areal mean values.

name: str = 'mixin1dsequence'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_sequences.Factor1DSoilSequence(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Mixin1DSequence, FactorSequence

Base class for 1-dimensional factors sequences relevant to all soil zones.

We take class RelativeSoilMoisture as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
>>> area(sum(zonearea))
>>> derived.zoneratio.update()
>>> factors.relativesoilmoisture = 1.0, 3.0, 1.5, 3.5, 2.0, 2.5, 0.5, nan, nan
>>> from hydpy import round_
>>> round_(factors.relativesoilmoisture.average_values())
1.928571
mask
name: str = 'factor1dsoilsequence'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_sequences.Flux1DCompleteSequence(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Mixin1DSequence, FluxSequence

Base class for 1-dimensional flux sequences relevant to all zones.

We take class TotalEvapotranspiration as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
>>> area(sum(zonearea))
>>> derived.zoneratio.update()
>>> fluxes.totalevapotranspiration = 1.0, 3.0, 1.5, 3.5, 2.0, 2.5, 0.5, 0.0, 5.0
>>> from hydpy import round_
>>> round_(fluxes.totalevapotranspiration.average_values())
2.2
mask
name: str = 'flux1dcompletesequence'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_sequences.FluxSequence1DWaterSequence(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Mixin1DSequence, FluxSequence

Base class for 1-dimensional flux sequences relevant to all water zones.

We take class LakeEvaporation as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> nmbzones(10)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER, WATER)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 27.0)
>>> area(sum(zonearea))
>>> derived.zoneratio.update()
>>> fluxes.lakeevaporation = nan, nan, nan, nan, nan, nan, nan, nan, 2.0, 4.0
>>> from hydpy import round_
>>> round_(fluxes.lakeevaporation.average_values())
3.5
mask
name: str = 'fluxsequence1dwatersequence'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_sequences.Flux1DNonWaterSequence(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Mixin1DSequence, FluxSequence

Base class for 1-dimensional flux sequences relevant to all land zones.

We take class Throughfall as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
>>> area(sum(zonearea))
>>> derived.zoneratio.update()
>>> fluxes.throughfall = 1.0, 3.0, 1.5, 3.5, 2.0, 2.5, 0.5, 0.0, nan
>>> from hydpy import round_
>>> round_(fluxes.throughfall.average_values())
1.5
mask
name: str = 'flux1dnonwatersequence'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_sequences.Flux1DSoilSequence(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Mixin1DSequence, FluxSequence

Base class for 1-dimensional flux sequences relevant to all soil zones.

We take class Percolation as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
>>> area(sum(zonearea))
>>> derived.zoneratio.update()
>>> fluxes.percolation = 1.0, 3.0, 1.5, 3.5, 2.0, 2.5, 0.5, nan, nan
>>> from hydpy import round_
>>> round_(fluxes.percolation.average_values())
1.928571
mask
name: str = 'flux1dsoilsequence'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_sequences.Flux1DGroundwaterSequence(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Mixin1DSequence, FluxSequence

Base class for 1-dimensional flux sequences relevant to all groundwater zones.

We take class Baseflow as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
>>> area(sum(zonearea))
>>> derived.zoneratio.update()
>>> fluxes.baseflow = 1.0, 3.0, 1.5, 3.5, 2.0, 2.5, 0.5, nan, 5.0
>>> from hydpy import round_
>>> round_(fluxes.baseflow.average_values())
2.675676
mask
name: str = 'flux1dgroundwatersequence'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_sequences.State1DNonWaterSequence(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Mixin1DSequence, StateSequence

Base class for 1-dimensional state sequences relevant to all land zones.

We take class InterceptedWater as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
>>> area(sum(zonearea))
>>> derived.zoneratio.update()
>>> states.interceptedwater = 1.0, 3.0, 1.5, 3.5, 2.0, 2.5, 0.5, 0.0, nan
>>> from hydpy import round_
>>> round_(states.interceptedwater.average_values())
1.5
mask
name: str = 'state1dnonwatersequence'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

class hydpy.models.whmod.whmod_sequences.State1DSoilSequence(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Mixin1DSequence, StateSequence

Base class for 1-dimensional state sequences relevant to all soil zones.

We take class SoilMoisture as an example:

>>> from hydpy.models.whmod import *
>>> parameterstep("1d")
>>> nmbzones(9)
>>> landtype(GRASS, DECIDUOUS, CORN, CONIFER, SPRINGWHEAT, WINTERWHEAT, SUGARBEETS,
...          SEALED, WATER)
>>> zonearea(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
>>> area(sum(zonearea))
>>> derived.zoneratio.update()
>>> states.soilmoisture = 1.0, 3.0, 1.5, 3.5, 2.0, 2.5, 0.5, nan, nan
>>> from hydpy import round_
>>> round_(states.soilmoisture.average_values())
1.928571
mask
name: str = 'state1dsoilsequence'

Name of the variable in lowercase letters.

unit: str = '?'

Unit of the variable.

Input sequences

class hydpy.models.whmod.InputSequences(master: Sequences, cls_fastaccess: type[TypeFastAccess_co] | None = None, cymodel: CyModelProtocol | None = None)

Bases: InputSequences

Input sequences of model whmod.

The following classes are selected:
class hydpy.models.whmod.whmod_inputs.Precipitation(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: InputSequence

Precipitation [mm/T].

Required by the methods:

Calc_PotentialRecharge_V1 Calc_PotentialRecharge_V2 Calc_Throughfall_InterceptedWater_V1 Get_Precipitation_V1

NDIM: int = 0
NUMERIC: bool = False
name: str = 'precipitation'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_inputs.Temperature(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: InputSequence

Air temperature [°C].

Required by the methods:

Calc_Ponding_V1 Calc_PotentialSnowmelt_V1 Calc_Snowmelt_Snowpack_V1 Get_MeanTemperature_V1 Get_Temperature_V1

NDIM: int = 0
NUMERIC: bool = False
name: str = 'temperature'

Name of the variable in lowercase letters.

unit: str = '°C'

Unit of the variable.

Factor sequences

class hydpy.models.whmod.FactorSequences(master: Sequences, cls_fastaccess: type[TypeFastAccess_co] | None = None, cymodel: CyModelProtocol | None = None)

Bases: FactorSequences

Factor sequences of model whmod.

The following classes are selected:
class hydpy.models.whmod.whmod_factors.RelativeSoilMoisture(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Factor1DSoilSequence

Crop-available relative soil water content [-].

Calculated by the method:

Calc_RelativeSoilMoisture_V1

Required by the methods:

Calc_CapillaryRise_V1 Calc_CapillaryRise_V2 Calc_Percolation_V1 Calc_RequiredIrrigation_V1

SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, 1.0)
name: str = 'relativesoilmoisture'

Name of the variable in lowercase letters.

unit: str = '-'

Unit of the variable.

Flux sequences

class hydpy.models.whmod.FluxSequences(master: Sequences, cls_fastaccess: type[TypeFastAccess_co] | None = None, cymodel: CyModelProtocol | None = None)

Bases: FluxSequences

Flux sequences of model whmod.

The following classes are selected:
class hydpy.models.whmod.whmod_fluxes.InterceptionEvaporation(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DNonWaterSequence

Evaporation from the interception storage [mm/T].

Calculated by the methods:

Calc_InterceptionEvaporation_InterceptedWater_AETModel_V1 Calc_InterceptionEvaporation_InterceptedWater_V1

Required by the method:

Calc_TotalEvapotranspiration_V1

name: str = 'interceptionevaporation'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.Throughfall(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DNonWaterSequence

Precipitation, passing the interception storage [mm/T].

Calculated by the method:

Calc_Throughfall_InterceptedWater_V1

Required by the methods:

Calc_Ponding_V1 Calc_Snowmelt_Snowpack_V1

name: str = 'throughfall'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.PotentialSnowmelt(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DNonWaterSequence

Potential snowmelt [mm/T].

Calculated by the method:

Calc_PotentialSnowmelt_V1

Required by the method:

Calc_Snowmelt_Snowpack_V1

name: str = 'potentialsnowmelt'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.Snowmelt(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DNonWaterSequence

Actual snowmelt [mm/T].

Calculated by the method:

Calc_Snowmelt_Snowpack_V1

Required by the method:

Calc_Ponding_V1

name: str = 'snowmelt'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.Ponding(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DNonWaterSequence

Ponding on land surfaces [mm/T].

Calculated by the method:

Calc_Ponding_V1

Required by the methods:

Calc_Percolation_V1 Calc_SoilMoisture_V1 Calc_SurfaceRunoff_V1

name: str = 'ponding'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.SurfaceRunoff(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DNonWaterSequence

Surface runoff [mm/T].

Calculated by the method:

Calc_SurfaceRunoff_V1

Required by the method:

Calc_CisternInflow_V1

name: str = 'surfacerunoff'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.Percolation(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DSoilSequence

Percolation out of the soil storage [mm/T].

Calculated by the method:

Calc_Percolation_V1

Required by the methods:

Calc_CisternInflow_V1 Calc_PotentialRecharge_V1 Calc_PotentialRecharge_V2 Calc_SoilMoisture_V1

name: str = 'percolation'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.SoilEvapotranspiration(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DSoilSequence

Evapotranspiration from the soil storage [mm/T].

Calculated by the methods:

Calc_SoilEvapotranspiration_AETModel_V1 Calc_SoilEvapotranspiration_V1

Required by the methods:

Calc_SoilMoisture_V1 Calc_TotalEvapotranspiration_V1

name: str = 'soilevapotranspiration'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.LakeEvaporation(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: FluxSequence1DWaterSequence

Evaporation from water areas [mm/T].

Calculated by the methods:

Calc_LakeEvaporation_AETModel_V1 Calc_LakeEvaporation_V1

Required by the methods:

Calc_PotentialRecharge_V1 Calc_PotentialRecharge_V2 Calc_TotalEvapotranspiration_V1

name: str = 'lakeevaporation'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.TotalEvapotranspiration(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DCompleteSequence

Total evapotranspiration [mm/T].

Calculated by the method:

Calc_TotalEvapotranspiration_V1

name: str = 'totalevapotranspiration'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.CapillaryRise(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DSoilSequence

Capillary rise [mm/T].

Calculated by the methods:

Calc_CapillaryRise_V1 Calc_CapillaryRise_V2

Required by the methods:

Calc_PotentialRecharge_V1 Calc_PotentialRecharge_V2 Calc_SoilMoisture_V1

name: str = 'capillaryrise'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.RequiredIrrigation(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DSoilSequence

Required irrigation [mm/T].

Calculated by the method:

Calc_RequiredIrrigation_V1

Required by the methods:

Calc_CisternDemand_V1 Calc_ExternalIrrigation_SoilMoisture_V1 Calc_ExternalIrrigation_SoilMoisture_V2 Calc_InternalIrrigation_SoilMoisture_V1

name: str = 'requiredirrigation'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.CisternInflow(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: FluxSequence

Inflow into the cistern [m³/T].

Calculated by the method:

Calc_CisternInflow_V1

Required by the method:

Calc_CisternOverflow_CisternWater_V1

NDIM: int = 0
TYPE

alias of float

NUMERIC: bool = False
name: str = 'cisterninflow'

Name of the variable in lowercase letters.

unit: str = 'm³/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.CisternOverflow(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: FluxSequence

Overflow of the cistern due to limited storage capacity [m³/T].

Calculated by the method:

Calc_CisternOverflow_CisternWater_V1

NDIM: int = 0
TYPE

alias of float

NUMERIC: bool = False
name: str = 'cisternoverflow'

Name of the variable in lowercase letters.

unit: str = 'm³/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.CisternDemand(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: FluxSequence

Irrigation water damanded from the cistern [m³/T].

Calculated by the method:

Calc_CisternDemand_V1

Required by the methods:

Calc_CisternExtraction_CisternWater_V1 Calc_InternalIrrigation_SoilMoisture_V1

NDIM: int = 0
TYPE

alias of float

NUMERIC: bool = False
name: str = 'cisterndemand'

Name of the variable in lowercase letters.

unit: str = 'm³/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.CisternExtraction(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: FluxSequence

Actual irrigation extraction from the cistern [m³/T].

Calculated by the method:

Calc_CisternExtraction_CisternWater_V1

Required by the method:

Calc_InternalIrrigation_SoilMoisture_V1

NDIM: int = 0
TYPE

alias of float

NUMERIC: bool = False
name: str = 'cisternextraction'

Name of the variable in lowercase letters.

unit: str = 'm³/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.InternalIrrigation(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DSoilSequence

Actual internal irrigation from the cistern [mm/T].

Calculated by the method:

Calc_InternalIrrigation_SoilMoisture_V1

Required by the method:

Calc_ExternalIrrigation_SoilMoisture_V2

name: str = 'internalirrigation'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.ExternalIrrigation(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DSoilSequence

Actual irrigation from external sources [mm/T].

Calculated by the methods:

Calc_ExternalIrrigation_SoilMoisture_V1 Calc_ExternalIrrigation_SoilMoisture_V2

name: str = 'externalirrigation'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.PotentialRecharge(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DGroundwaterSequence

Potential recharge [mm/T].

Calculated by the methods:

Calc_PotentialRecharge_V1 Calc_PotentialRecharge_V2

Required by the methods:

Calc_ActualRecharge_V1 Calc_Baseflow_V1

name: str = 'potentialrecharge'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.Baseflow(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: Flux1DGroundwaterSequence

Baseflow [mm/T].

Calculated by the method:

Calc_Baseflow_V1

Required by the method:

Calc_ActualRecharge_V1

name: str = 'baseflow'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.ActualRecharge(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: FluxSequence

Actual recharge [mm/T].

Calculated by the method:

Calc_ActualRecharge_V1

Required by the method:

Calc_DelayedRecharge_DeepWater_V1

NDIM: int = 0
NUMERIC: bool = False
name: str = 'actualrecharge'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

class hydpy.models.whmod.whmod_fluxes.DelayedRecharge(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: FluxSequence

Delayed recharge [mm/T].

Calculated by the method:

Calc_DelayedRecharge_DeepWater_V1

NDIM: int = 0
NUMERIC: bool = False
name: str = 'delayedrecharge'

Name of the variable in lowercase letters.

unit: str = 'mm/T'

Unit of the variable.

State sequences

class hydpy.models.whmod.StateSequences(master: Sequences, cls_fastaccess: type[TypeFastAccess_co] | None = None, cymodel: CyModelProtocol | None = None)

Bases: StateSequences

State sequences of model whmod.

The following classes are selected:
class hydpy.models.whmod.whmod_states.InterceptedWater(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: State1DNonWaterSequence

Interception storage water content [mm].

Updated by the methods:

Calc_InterceptionEvaporation_InterceptedWater_AETModel_V1 Calc_InterceptionEvaporation_InterceptedWater_V1 Calc_Throughfall_InterceptedWater_V1

Required by the method:

Get_InterceptedWater_V1

SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'interceptedwater'

Name of the variable in lowercase letters.

unit: str = 'mm'

Unit of the variable.

class hydpy.models.whmod.whmod_states.Snowpack(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: State1DNonWaterSequence

Snow layer’s total water content [mm].

Updated by the method:

Calc_Snowmelt_Snowpack_V1

Required by the method:

Get_SnowCover_V1

SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
name: str = 'snowpack'

Name of the variable in lowercase letters.

unit: str = 'mm'

Unit of the variable.

class hydpy.models.whmod.whmod_states.SoilMoisture(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: State1DSoilSequence

Crop-available soil water content [mm].

Updated by the methods:

Calc_ExternalIrrigation_SoilMoisture_V1 Calc_ExternalIrrigation_SoilMoisture_V2 Calc_InternalIrrigation_SoilMoisture_V1 Calc_SoilMoisture_V1

Required by the methods:

Calc_RelativeSoilMoisture_V1 Get_SoilWater_V1

SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
trim(lower=None, upper=None) bool[source]

Trim SoilMoisture following \(0 \leq SoilMoisture \leq MaxSoilWater\).

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> nmbzones(5)
>>> derived.maxsoilwater(200.0)
>>> states.soilmoisture(-100.0, 0.0, 100.0, 200.0, 300.0)
>>> states.soilmoisture
soilmoisture(0.0, 0.0, 100.0, 200.0, 200.0)
name: str = 'soilmoisture'

Name of the variable in lowercase letters.

unit: str = 'mm'

Unit of the variable.

class hydpy.models.whmod.whmod_states.CisternWater(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: StateSequence

Amount of water that is collected in the cistern [m³].

Updated by the methods:

Calc_CisternExtraction_CisternWater_V1 Calc_CisternOverflow_CisternWater_V1

NDIM: int = 0
NUMERIC: bool = False
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (0.0, None)
trim(lower=None, upper=None) bool[source]

Trim CisternWater following \(0 \leq CisternWater \leq CisternCapacity\).

>>> from hydpy.models.whmod import *
>>> parameterstep()
>>> control.cisterncapacity(5.0)
>>> states.cisternwater(3.0)
>>> states.cisternwater
cisternwater(3.0)
>>> states.cisternwater(5.0)
>>> states.cisternwater
cisternwater(5.0)
>>> states.cisternwater(7.0)
>>> states.cisternwater
cisternwater(5.0)
name: str = 'cisternwater'

Name of the variable in lowercase letters.

unit: str = 'm³'

Unit of the variable.

class hydpy.models.whmod.whmod_states.DeepWater(subvars: ModelSequences[ModelSequence, FastAccess])[source]

Bases: StateSequence

Amount of water that is (still) percolating through the vadose zone [mm].

Updated by the method:

Calc_DelayedRecharge_DeepWater_V1

NDIM: int = 0
NUMERIC: bool = False
SPAN: tuple[int | float | bool | None, int | float | bool | None] = (None, None)
name: str = 'deepwater'

Name of the variable in lowercase letters.

unit: str = 'mm'

Unit of the variable.

Auxiliary Features

Masks

class hydpy.models.whmod.Masks[source]

Bases: Masks

Masks of HydPy-WHMod (base model).

The following classes are selected:
class hydpy.models.whmod.whmod_masks.LandTypeBase(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: IndexMask

Base class for all land type-specific masks.

static get_refindices(variable)[source]

Reference to the associated instance of LandType.

name: str = 'landtypebase'
class hydpy.models.whmod.whmod_masks.LandTypeComplete(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes all land use types.

relevant: tuple[int, ...] = (1, 2, 3, 4, 5, 6, 7, 8, 9)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypecomplete'
class hydpy.models.whmod.whmod_masks.LandTypeNonWater(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that excludes water areas.

relevant: tuple[int, ...] = (1, 2, 3, 4, 5, 6, 7, 8)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypenonwater'
class hydpy.models.whmod.whmod_masks.LandTypeGroundwater(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes all areas with groundwater recharge.

relevant: tuple[int, ...] = (1, 2, 3, 4, 5, 6, 7, 9)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypegroundwater'
class hydpy.models.whmod.whmod_masks.LandTypeSoil(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes areas with soils.

relevant: tuple[int, ...] = (1, 2, 3, 4, 5, 6, 7)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypesoil'
class hydpy.models.whmod.whmod_masks.LandTypeGras(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes only grassland.

relevant: tuple[int, ...] = (1,)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypegras'
class hydpy.models.whmod.whmod_masks.LandTypeDeciduous(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes only decidious forests.

relevant: tuple[int, ...] = (2,)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypedeciduous'
class hydpy.models.whmod.whmod_masks.LandTypeCorn(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes only corn fields.

relevant: tuple[int, ...] = (3,)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypecorn'
class hydpy.models.whmod.whmod_masks.LandTypeConifer(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes only conifer forests.

relevant: tuple[int, ...] = (4,)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypeconifer'
class hydpy.models.whmod.whmod_masks.LandTypeSpringWheat(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes only spring wheat fields.

relevant: tuple[int, ...] = (5,)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypespringwheat'
class hydpy.models.whmod.whmod_masks.LandTypeWinterWheat(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes only winter wheat fields.

relevant: tuple[int, ...] = (6,)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypewinterwheat'
class hydpy.models.whmod.whmod_masks.LandTypeSugarbeets(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes only sugar beet fields.

relevant: tuple[int, ...] = (7,)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypesugarbeets'
class hydpy.models.whmod.whmod_masks.LandTypeSealed(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes only sealed areas.

relevant: tuple[int, ...] = (8,)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypesealed'
class hydpy.models.whmod.whmod_masks.LandTypeWater(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: LandTypeBase

Mask that includes only water areas.

relevant: tuple[int, ...] = (9,)

The integer values that are relevant to the referenced index parameter.

name: str = 'landtypewater'
class hydpy.models.whmod.whmod_masks.SoilTypeBase(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: IndexMask

Base class for all soil type-specific masks.

static get_refindices(variable)[source]

Reference to the associated instance of SoilType.

name: str = 'soiltypebase'
class hydpy.models.whmod.whmod_masks.SoilTypeComplete(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: SoilTypeBase

Mask that includes all soil types.

relevant: tuple[int, ...] = (10, 11, 12, 13, 14, 15)

The integer values that are relevant to the referenced index parameter.

name: str = 'soiltypecomplete'
class hydpy.models.whmod.whmod_masks.SoilTypeSand(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: SoilTypeBase

Mask that includes only sand soils.

relevant: tuple[int, ...] = (10,)

The integer values that are relevant to the referenced index parameter.

name: str = 'soiltypesand'
class hydpy.models.whmod.whmod_masks.SoilTypeSandCohesive(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: SoilTypeBase

Mask that includes only cohesive sand soils.

relevant: tuple[int, ...] = (11,)

The integer values that are relevant to the referenced index parameter.

name: str = 'soiltypesandcohesive'
class hydpy.models.whmod.whmod_masks.SoilTypeLoam(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: SoilTypeBase

Mask that includes only loam soils.

relevant: tuple[int, ...] = (12,)

The integer values that are relevant to the referenced index parameter.

name: str = 'soiltypeloam'
class hydpy.models.whmod.whmod_masks.SoilTypeClay(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: SoilTypeBase

Mask that includes only clay soils.

relevant: tuple[int, ...] = (13,)

The integer values that are relevant to the referenced index parameter.

name: str = 'soiltypeclay'
class hydpy.models.whmod.whmod_masks.SoilTypeSilt(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: SoilTypeBase

Mask that includes only silt soils.

relevant: tuple[int, ...] = (14,)

The integer values that are relevant to the referenced index parameter.

name: str = 'soiltypesilt'
class hydpy.models.whmod.whmod_masks.SoilTypePeat(variable: variabletools.Variable | None = None, doc: str | None = None, **kwargs)[source]

Bases: SoilTypeBase

Mask that includes only peat soils.

relevant: tuple[int, ...] = (15,)

The integer values that are relevant to the referenced index parameter.

name: str = 'soiltypepeat'
class hydpy.models.whmod.ControlParameters(master: Parameters, cls_fastaccess: type[FastAccessParameter] | None = None, cymodel: CyModelProtocol | None = None)

Bases: SubParameters

Control parameters of model whmod.

The following classes are selected:
class hydpy.models.whmod.DerivedParameters(master: Parameters, cls_fastaccess: type[FastAccessParameter] | None = None, cymodel: CyModelProtocol | None = None)

Bases: SubParameters

Derived parameters of model whmod.

The following classes are selected:
class hydpy.models.whmod.FactorSequences(master: Sequences, cls_fastaccess: type[TypeFastAccess_co] | None = None, cymodel: CyModelProtocol | None = None)

Bases: FactorSequences

Factor sequences of model whmod.

The following classes are selected:
class hydpy.models.whmod.FluxSequences(master: Sequences, cls_fastaccess: type[TypeFastAccess_co] | None = None, cymodel: CyModelProtocol | None = None)

Bases: FluxSequences

Flux sequences of model whmod.

The following classes are selected:
class hydpy.models.whmod.InputSequences(master: Sequences, cls_fastaccess: type[TypeFastAccess_co] | None = None, cymodel: CyModelProtocol | None = None)

Bases: InputSequences

Input sequences of model whmod.

The following classes are selected:
class hydpy.models.whmod.StateSequences(master: Sequences, cls_fastaccess: type[TypeFastAccess_co] | None = None, cymodel: CyModelProtocol | None = None)

Bases: StateSequences

State sequences of model whmod.

The following classes are selected: