Source code for hydpy.models.conv.conv_fluxes
# pylint: disable=missing-module-docstring
from hydpy.core import sequencetools
from hydpy.core.typingtools import *
[docs]
class ActualConstant(sequencetools.FluxSequence):
"""The actual value for the constant of the linear regression model [?]."""
NDIM: Final[Literal[0]] = 0
[docs]
class ActualFactor(sequencetools.FluxSequence):
"""The actual value for the factor of the linear regression model [?]."""
NDIM: Final[Literal[0]] = 0
[docs]
class OutputPredictions(sequencetools.FluxSequence):
"""The values of the output nodes predicted by a regression model [?]."""
NDIM: Final[Literal[1]] = 1
[docs]
class OutputResiduals(sequencetools.FluxSequence):
"""The guessed residuals of a regression model interpolated for the input nodes
[?]."""
NDIM: Final[Literal[1]] = 1
[docs]
class Outputs(sequencetools.FluxSequence):
"""The final interpolation results estimated for the output nodes [?]."""
NDIM: Final[Literal[1]] = 1