Calculation examples

Example 1: Calculate wind speed in km/h from input value measured in m/s.

1m/s = 3.6km/h.

  1. Set Constant Factor to: 3.6.
  2. Add Addition operation and select your input value (wind speed in m/s).

Example 2: Calculate energy (kWh) from current input value measured in amperes (A).

Energy is calculated as integration of power:

E(kWh) = Int(U*I)dt * 1/3600 / 1000

  1. Set Calculus to: Integral.
  2. Voltage (U) can be set as a constant (e.g. 230V). In this case Constant Factor is: 230 * 1/3600 / 1000 = 6,3e-5.
  3. Add Addition operation and select current input value in amperes.
  4. Use Value output in tasks or make a Double user interface control for it. A Run Function control linked to the Reset function can be used to enable resetting of the counter value.

Example 3: Count the number of ON switching

  1. Create a counter variable (Devices->Variables->Integer).
  2. Add Addition operation and select your counter variable.
  3. Add Addition operation and set Constant Factor to 1.
  4. Create a Program task. Set a trigger (i.e. device is turned ON). Add a Run command and link it to the Calculate function.
  5. Use Reset function to enable resetting of the counter value.