Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

R1 : Only status points with a Pivot ID that appear in at least one of the operations are processed.

R2 : Read the value of the status point received and convert it internally as follow based on the operation type, this is later called the operation input value :

  • OR:
    • For simple point data type, operation input value = status point value unchanged.
    • For double point data type, operation input value = 1 if the status point value is "on", else 0.

R3 : List all operations using the received status point as input and apply the following for each of them.

R3.1 : Use the values of all operation inputs to compute the operation result based on the operation type:

  • OR: Compute the logical OR of all inputs defined as "0 if all inputs are 0, else 1".

R3.2 : If one of the inputs was never received, assume its value is 0.

R3.3 : Create a new PIVOT object for the output status point and copy to it all fields from the received input status point (convert if needed the <PivotType> section to match the type of the output status point).

R3.4 : Set the following values on the PIVOT object based on the operation type :

  • OR:
    • PIVOT.GTIS.Identifier = Pivot ID of the output status point
    • If output is a simple point data type: PIVOT.GTIS.<PivotType>.stVal = operation result.
    • If output is a double point data type: PIVOT.GTIS.<PivotType>.stVal = "on" if operation result is 1, else "off".
    • PIVOT.GTIS.<PivotType>.q.Source = "substituted".

R4 : If any of the mandatory PIVOT fields necessary to identify or compute the operation is missing in the received reading, no output reading is generated for the operation.

R5 R3 : If the input status point received is also the output status point and an output reading was generated with no error, delete the reading of the input status point, else the input reading is forwarded unchanged.

...

  • PIVOT.GTIS.SpsTyp.stVal => input value in bool format [0-1]
  • PIVOT.GTIS.DpsTyp.stVal => input value in enum format ("intermediate-state" | "off" | "on" | "bad-state")

Output

The input datapoint is forwarded unchanged or deleted based on rule R3.

The value of the status point received is converted internally as follow based on the operation type to become the operation input value :

  • OR:
    • For simple point data type, operation input value = value unchanged.
    • For double point data type, operation input value = 1 if the value is "on", else 0.

The operation result is computed as follow based on the operation type:

  • OR: Compute the logical OR of all inputs defined as "0 if all inputs are 0, else 1".

If one of the inputs was never received, assume its value is 0.

A new output data points is generated with The generated output data points have the following format:

  • For a simple point data type :
    • PIVOT.GTIS.* = copy from input PIVOT.GITS.*

    • PIVOT.GTIS.Identifier = output status point pivot ID
    • PIVOT.GTIS.SpsTyp.* = copy from input PIVOT.GITS.<PivotType>.*
    • PIVOT.GTIS.SpsTyp.stVal = operation result
    • PIVOT.GTIS.SpsTyp.q.Source = "substituted"
  • For a double point data type :
    • PIVOT.GTIS.* = copy from input PIVOT.GITS.*
    • PIVOT.GTIS.Identifier = output status point pivot ID
    • PIVOT.GTIS.DpsTyp.* = copy from input PIVOT.GITS.<PivotType>.*
    • PIVOT.GTIS.DpsTyp.stVal"on" if operation result is 1, else "off"
    • PIVOT.GTIS.DpsTyp.q.Source = "substituted"

...