Key Features |
 |
|
|
Example calculations
- Longitudinal acceleration
LONG-G= smooth(derive(WSPD),1000)
- Combined G
COMBINED-G= hypot(LONG_G, LAT_G)
- Corner Radius
RADIUS = (WHEELSPEED^2) / LAT_G
Conditional calculations
Example: Wheel speed calculation to eliminate dropout from a single inside front wheel lockup event.
WHEEL_SPEED_CAL = IF(abs(WSPD1 - WSPD2) > 5, max(WSPD1, WSPD2), (WSPD1 + WSPD2) / 2)
|
|
|
^ square
+ add
/ divide
- subtract
* multiply
% modulus
|
|
> greater than
< less than
= equal
\ integer divide
( ) parentheses
! factorial
|
|
|
|
|
|
|
log, ln
log10
max
min
sinh
tanh
cosh
atan
sqrt, |
sqr
rnd
abs
acos
asin
ceil
not
xor
sin |
tan
cos
sum
average
int
exp
and
or |
|
|
Each calculation produces a single channel of new data. Where multiple channels need to be created then a number of individual calculations can be gathered into a single Batch calculation. |
Each calculation can be manually applied to the required data or where the calculation is consistently require then DataPro can be configured to automatically apply a single calculation or a batch calculation immediately the data has been downloaded. |
Calculations that require the results from other calculations will cause all donor calculations to execute in the required order.
|
|
|