TsItemValueType Enumeration |
Enumeration defining the meaning of the value in the time series.
Namespace:
DHI.Mike1D.Generic.TimeSeries
Assembly:
DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public enum TsItemValueType
Members
| Member name | Value | Description |
---|
| Instantaneous | 0 |
The values are representative at one precise instance of time.
|
| BackwardStep | 1 |
The values are representative of the average value
over one time step, from the previous time step to this time step.
|
| ForwardStep | 2 |
The values are representative of the average value
over one time step, from the this time step to the next time step.
|
| Accumulated | 3 |
The values are representative of successive accumulation of
values since the start of the timeseries. First values in the
timeseries must be zero.
|
| StepAccumulated | 4 |
The values are representative of accumulation over one time step.
|
See Also