Compute Energy used using a RPICT
We will introduce how Energy can be calculated using a RPICT board. The widely known kWh - Kilo-Watt-hour. Our example will use a RPICT3T1 but this can easily apply to other models.
RPICT being a sensor interface board it does not compute energy for performances reason. We consider this sort of computation to be the duty of the recording platform and not the acquisition unit.
With Emoncms you will find this computation readily available. We refer to the Emoncms website for more details about this. This is also possible in Grafana where you can use an integral function to estimate energy from power data source.
Here we will cover the computation of energy using a small Python program.
How energy relates to power
Power is expressed in Watt (W) and energy is expressed in Watt-hour (Wh).
One single Watt-hour is obtained when a device uses 1W of power during a 1 hour period of time. The energy is graphically represented as the area below the power curve as shown below. In other words energy is the integral of power.
Computing energy from power readings
With the RPICT board power is measured on a given time interval Δt. Every 5 seconds for example.
Between 2 power readings (say P0 and P1) the energy can be calculated using the formulae below.
E = Δt * (P0 + p1) / 2