kitControl-NumericBitXor

This component performs a logical XOR on the bit equivalent of the StatusNumeric In value against the bit equivalent of its StatusNumeric mask slot value. It may be useful in cases where boolean information is mapped into integer values.

NumericBitXor is available in the Util folder of the kitControl palette, along with the closely-related NumericBitAnd and NumericBitOr.

As an example, some manufacturers multiplex binary data into a single numerical point by converting the bits from hexadecimal to decimal format. To obtain the status of the individual binary data, the number must be converted back from decimal to hex format. Each digit of the hex number represents a particular binary state (0 = false, 1 = true). The NumericBitXor object converts a StatusNumeric input to hex value and compares it against the mask value. Each digit is analyzed using exclusive OR (XOR) logic, setting the corresponding digit value to either a 1 or 0.

Figure 1. NumericBitXor example


In this example:

  • Input decimal 65553 converts to a hex value of 10011.

  • Mask decimal 65536 converts to a hex value of 10000.

  • The resulting hex value is 00011.

Figure 2. NumericBitOr properties


PropertyValueDescription
FacetsConfig Facets window (defaults to null units, a single decimal place, minimum=negative infinity, maximum=positive infinity, and radix=16)

Selects units and configures how the value displays:

units defines the unit of measure fromacceleration to volumetric flow.

precision defines the number of decimal places.

min defines the lowest value allowed.

max defines the highest value allowed.

radix defines the base of the numeration system. Radix 16 is hexidecimal.

This definition applies to the Out property value for this component.

Outread-only number (defaults to zero (0))Displays the result of the comparison.
Innumber (defaults to zero (0)) and null definitionDefines the bit to compare with the Mask.
Masknumber (defaults to zero (0)) and null definitionDefines what to compare with the In property.