PAB - ZONES

From wiki.netio-products.com
Revision as of 14:40, 16 November 2021 by Djestrab (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Zone-based evaluation. 1 or more zones can be set. Zones are divided using the values specified in the thresholds variable. Monitored value must be present in defined interval for amount of time defined here. The PAB condition is evaluated as a number (integer) equal to the interval order.

Eg. At two specified intervals, the PAB value can be 0, 1, or 2.

Description

  • Source
  • Parameters
  • Outputs

Structure

Variable Value Description
type ZONE PAB type
source OUTPUTS/x/(LOAD/CURRENT/POWER)
INPUTS/x/STATE
The monitored variable. x indicates input / output number.
timeHysteresis int [s] Monitored value must be present in defined interval for amount of time defined here.

Eg: If the time hysteresis is equal to 5, monitored value must be within a defined interval for at least 5s. Only then it will be evaluated.

thresholds list[int] lower-bounds of individual zones intervals

Examples

The condition is evaluated according to the specified zones when the current value is in one of the zones for 10s.

Eg: If the current is 130mA for at least 10s, the condition is evaluated as 2 (zone number).

{
  "type": "ZONES",
  "source": "OUTPUTS/2/CURRENT",
  "thresholds": [
    50,
    100,
    150,
    200
  ],
  "timeHysteresis": 10
}