StatisticsType#

module wntr.epanet.util

class StatisticsType[source]#

Bases: Enum

EPANET time series statistics processing.

Enum Members

none

Do no processing, provide instantaneous values on output at time t.

Average

Average the value across the report period ending at time t.

Minimum

Provide the minimum value across all complete reporting periods.

Maximum

Provide the maximum value across all complete reporting periods.

Range

Provide the range (max - min) across all complete reporting periods.


__init__(val)[source]#
Average = 1#
Maximum = 3#
Minimum = 2#
Range = 4#
none = 0#