Click or drag to resize

DataValueType Enumeration

Data value type defines how one value is interpreted in time. Numerically same as in TSObject ItemValueType

Namespace:  DHI.Generic.MikeZero.DFS
Assembly:  DHI.Generic.MIKEZero.DFS (in DHI.Generic.MIKEZero.DFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax
public enum DataValueType
Members
  Member nameValueDescription
Instantaneous0 Value at current point in time, current time step.

dfs enum: F_INSTANTANEOUS (=0)

Accumulated1 Value accumulated from start of time series to current time step.

dfs enum: F_ACCUMULATED (=1)

StepAccumulated2 Value accumulated since last time step to current time step.

dfs enum: F_STEP_ACCUMULATED (=2)

MeanStepBackward3 Mean value from previous to current time step. Also called: mean step accumulated.

dfs enum: F_MEAN_STEP_ACCUMULATED (=3)

MeanStepForward4 Mean value from current to next time step. Also called: reverse mean step accumulated

dfs enum: F_REV_MEAN_STEP_ACCUMULATED (=4)

See Also