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.178 -- Release Build+52bde36e42c7b2f52d1e2cc6bb29e593f446f07c
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