AlarmHysteresis Property

Gets or sets the hysteresis used when clearing alarms. This value is only relevant in greater than (or equal) and less than (or equal) operations.

Definition

Namespace: Gemstone.Timeseries
Assembly: Gemstone.Timeseries (in Gemstone.Timeseries.dll) Version: 1.0.128 -- Release Build+e2476c52e94864f123f37e60764c948e49eb89eb
public double? Hysteresis { get; set; }

Property Value

NullableDouble

Remarks

The hysteresis is an offset that provides padding between the point at which the alarm is raised and the point at which the alarm is cleared. For example, in the case of the GreaterOrEqual operation:

  • Raised: value >= SetPoint
  • Cleared: value < SetPoint - Hysteresis

The direction of the offset depends on whether the operation is greater than (or equal) or less than (or equal). The hysteresis must be greater than zero.

See Also