Register validation rules
The following validation rules apply to register data:
Delta High Limit / Delta Low Limit
The Delta High or Low Limit rules calculate the absolute difference between each register read and the previous register read. These rules use historical data, but not reference data. If the delta value is above or below the specified thresholds, these rules warn or fail.
Use these rules to help detect unusual consumption patterns or mis-reads of a meter.
These validation checks operate on the last register data that is currently saved or will be saved after the current import. Any data that will be eclipsed (written over) by the current import is not used in the comparison. The meter multiplier is applied to the delta value, and the result is compared to the threshold which is in the register's unit of measure.
These checks use the meter multiplier that is on the register channel when the read is validated. The checks automatically handle meter multiplier changes by checking at each register reading for the correct multiplier to use.
Delta High Limit Per Diff / Delta Low Limit Per Diff
The Delta High or Low Limit Percent Difference Checks calculate the absolute percentage difference between each register read and the previous register read. These rules use historical data, but not reference data. If the delta value is above or below the specified thresholds, these rules warn or fail.
Use these rules to help detect unusual consumption patterns or misreads of the meter.
These rules compute a percentage difference in the delta of the last register values using the following formula:
100.00 * Math.Abs((adjCurrentUsage - adjPreviousUsage) / (adjCurrentUsage))
In the above formula, adjusted current and previous usage are calculated. Adjusted current and previous usage is calculated as a difference real from the UTC time to the end time of current/previous register reading end time. These rules compare that result to the threshold.
Delta High Limit Ratio Per Diff / Delta Low Limit Ratio Per Diff
The Delta High or Low Limit Ratio Percent Difference Checks calculate the absolute ratio percentage difference between each register read and the previous register read. These rules use historical data, but not reference data. If the delta value is above or below the specified threshold, the rules warn or fail.
Use these rules to help detect unusual consumption patterns or misreads of the meter.
The Overflow Check detects register reads where the register value exceeds the allowed number of dials configured for the register. This rule does not use historical or reference data. This rule does not require any parameters. It fails any register read exceeding the number of allowed dials.
Use this rule to detect incorrect dial configurations for register channels. You can also use this to detect misreads of the meter.
The check marks the interval with an OVERFLOW status.
The Register Gap Check looks for register reads that should exist based on the register channel configuration in IEE, but that do not exist (missing register reads) or that have a value of zero (invalid register reads). This check always results in a FAIL if a register read is not present for the time of day that is specified in the rule.
Use this rule to find gaps in data, particularly if there are no interval channels configured for the meter. If estimation is enabled and a register estimation routine is enabled in the service point's estimation set, IEE attempts to create accurate estimated register reads to replace reads that failed the Register Gap Check.
For example, the following scenarios typically result in gaps:
-
A system that sends the data may lose a file.
-
A changed telephone number for which the paperwork has not yet been completed.
-
An intermittent communication issue may exist within a fixed network or AMI network.
Because data gaps prevent billing accuracy and can lead to revenue lost or disputes with customers, the causes for repeated occurrences in the same service point register channel should be pinpointed and resolved as quickly as possible. Gaps in register data can also affect the accuracy of scaling and use of the data set with other estimations.
Register High Limit / Register Low Limit
The High Limit or Low Limit Checks compare the register reading values to high or low threshold parameters. These rules do not use any historical or reference data. If the value is above or below the specified thresholds, these rules warn or fail.
Use these rules to alert you to unusually high or low measurements. These rules are most relevant in the case of a register that measures demand to detect when the peak demand goes over the specified limit. You can also use these rules to detect other register values, such as temperature or the results of a TOU register formula.
These rules do not check the unit of measure first to determine if the check is relevant for the type of data being measured. Therefore, ensure that you establish thresholds in the register's unit of measure that correspond appropriately to the service point channels that are capturing the data.
Detects meter rollover and fails or warns as specified by the user. Meters that record register data usually have a specified number of dials, which determines the maximum value that can be recorded. The number of dials is specified on the Register Channel entity as an integer. The maximum reading that can be represented by a meter with a non-zero number of dials is just under 10^number of dials. For example, a meter with Number of Dials =2 can record just under 102 or 100, effectively, rolling over after it hits 99.
Example: A typical meter read sequence is [10, 56, 89, 12, 35]. In this example, the meter has rolled over from 89 to 12. The deltas between the reads specify the consumption between two register reads and must be modified when rollover occurs. It is usually the difference between two consecutive reads and in this example would be: [56-10, 89-56, 12-89, 35-12] = [46, 33, -77, 23]. The negative consumption is due to rollover of the meter. The actual consumption is obtained by adding the maximum value the meter can register to the negative consumption: -77 + 100, to get the actual consumption of 23.
IEE skips this rule in the following scenarios:
-
Formula channels
-
The number of dials is configured as zero
-
There is no previous reading to check against