mirror of
https://github.com/jomjol/AI-on-the-edge-device-docs.git
synced 2025-12-09 21:17:09 +03:00
@@ -1,5 +1,5 @@
|
|||||||
# Parameter `<NUMBER>.MaxRateType`
|
# Parameter `<NUMBER>.MaxRateType`
|
||||||
Default Value: `AbsoluteChange`
|
Default Value: `AbsoluteChange`
|
||||||
|
|
||||||
Defines if the **Change Rate** compared to the previous value is calculated as absolute change (`AbsoluteChange`) or
|
Defines if the **Change Rate** is calculated as the difference between the last two readings (`AbsoluteChange` = difference) or
|
||||||
as rate normalized to the interval (`RateChange` = change/minute).
|
as the difference normalized to the interval (`RateChange` = difference per minute).
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
# Parameter `<NUMBER>.MaxRateValue`
|
# Parameter `<NUMBER>.MaxRateValue`
|
||||||
Default Value: `0.05`
|
Default Value: `0,05`
|
||||||
|
|
||||||
Maximum change of a reading.
|
Maximum allowed change between two readings, if exceeded the last reading will be rejected. Depending on the settings of `<NUMBER>.MaxRateType` the `MaxRateValue` is either treated as the difference between the two measurements (`AbsoluteChange` = difference) not taking the set time interval into account or as the difference normalized to the interval (`RateChange` = difference per minute).
|
||||||
Depending on the settings of `<NUMBER>.MaxRateType` it is either treated as `absolute` or `relative`!
|
|
||||||
|
If negative rate is disallowed and no maximum rate value is set, one false high reading will lead to a period of missing measurements until the measurement reaches the previous false high reading. E.g. if the counter is at `600,00` and it's read incorrectly as` 610,00`, all measurements will be skipped until the counter reaches `610,00`. Setting the MaxRateValue to `0,05` leads to a rejection of all readings with a difference `> 0,05`, in this case `610,00`. The rejection also applies to correct readings with a difference `> 0,05`!
|
||||||
|
|||||||
Reference in New Issue
Block a user