| Reply #1
EmfDev
    
2415 Posts |
Posted - 05/19/2026 : 11:38:17
|
It is how fast the device calculates CPM (Counts Per Minute). 5 seconds means that it only uses the last 5 seconds of data to estimate the CPM. CPM is used to convert to µSv/h. Less Fast Estimate Settings would mean the device will react faster for a sudden rise or fall but will be a little more jumpy. 60 second estimate will be more stable but reacts slower. Dynamic automatically adjusts the window. Adaptive uses the formula below: Using Exponential Moving Average (EMA) CPM_fast = a*CPM_instant + (1-a)*CPM_fast_old
Adaptive-Fast CPM_instant = 60.0*last_second_count; if (CPM_instant < LOW_CPM_THRESHOLD) a = 0.08; else if (CPM_instant > HIGH_CPM_THRESHOLD) a = 0.40; else a = 0.15;
Adaptive-Stable a = 0.1 CPM_instant = (5_second_count*12)
|
 |
|