Skip to content

RPICT Fundamentals

We will cover some of the basic fundamentals used by the RPICT series below.

Signal Flow

Bloack diagram of signal flow in RPICT hat

Each signal whether if it's a current or voltage line is first conditioned to obtain the desired range. We perform this either by simply adjusting the burden resistor or by fitting voltage divider or amplifier. This is an important step to condition the sensor range to the ADC range. Sensors may output anything but the ADC requires an input between 0 and Vref*.

The ADC converts a physical analogue signal into something a computer can process. This is where the conversion from real world to digital word happens.

The microcontroller collect raw data from the ADC and computes values such as RMS RealPower PowerFactor etc. It also send the final computation to the Raspberrypi using serial Uart. Note that on some RPICT the ADC is part of the microcontroller.

\* For what follows we sometimes refer to Vref/2. Vref is a reference voltage given to the ADC defining its range. Depending on the type of boards this is either 3.3V or 4.096V. As AC signals are waveform (positive and negative) the signal must be centred on half the range which is Vref/2.

Signal Conditioning

Current

Burden Resistor

Connecting a current transformer with a burden resistor

Most RPICT series CT range are adjusted using the burden resistor. It is connected directly to the ADC and Vref/2.

The burden resistor can be calculated with the formulae below.

R = (Vref * Nturns) / (2√2 * Irms)

R: Burden resistor value in Ohm Vref: ADC max voltage range Nturns: Number of CT sensor turns (see specs). Irms: Max current to be read in Ampere (rms) More about this here.

This page has a table with all resistor values for each CT sensor.

The case for RPICT7V1 RPICT8 RPICT4V3 Version 4

Connecting a current transformer with an OP amp

RPICT7V1 RPICT8 RPICT4V3 Version 4 are a special design that incorporate an amplifier between the burden resistor and the ADC. These have a much higher cost due to the complexity of components involved.

Refer to this page for the components table information.

Voltage

Connecting a voltage transformer with an amplifier

The voltage line has both a divider and an amplifier.

When using a ac/ac adaptor the amplifier gain is set to 1 and the divider is used to reduced the signal amplitude.

When using the ZMPT module the divider ratio is set to 1 (a plain wire) and the amplifier is used to raise the signal level.

Computed Values

RPICT boards mainly read 2 types of waveform. One is current and the other is voltage. Each of them have an instantaneous value at a given time k. Respectively I[k] and V[k].

We will only consider these signals in the discrete time domain as this is how they are exploited by the ADC. Hence k being the iterative time sample.

Instantaneous values I[k] and V[k] are rarely used as they are and it is commonly adopted to use their Root Mean Square (RMS) value instead. You might have heard your country to run on 230V or 120V. These are RMS values.

RMS Signal

Given that the ADC access directly instantaneous values such as I[k] and V[k] the RMS value is given by these formulas below.

Math formulae for current root mean square

N being the number of sample acquired by the ADC. The microcontroller perform these computation using the RPICTlib library.

Estimated Power

Some applications without a voltage sensor can estimate power based on Irms only. For this the user has to provide Vest which is an estimated value for the voltage. Vest would be either 230V or 120V usually.

Math formulae for voltage root mean square

This is not calculated in RPICTlib but usually done within the Arduino sketch once Irms has been computed.

Active Power

This is also called Real Power. Technically we compute the average Real Power using the formulae below. Note it requires the use of instantaneous values of I and V like the RMS calculation. Nevertheless this is not a RMS but an average of instantaneous power over time.

Math formulae for estimated power

RPICTlib does this computation internally.

Apparent Power

Apparent is noted S and is just the product of Irms and Vrms.

Math formulae for apparent power

This calculation is made in the Arduino sketch.

Power Factor

Power factor is also called the cos phi. This is the ratio between Real Power and Apparent Power.

Math formulae for Power Factor

This calculation is made in the Arduino sketch.

Reactive Power

Reactive Power commonly noted Q is calculated using Active Power and Apparent Power like below.

Math formulae for Reactive Power

This calculation is made in the Arduino sketch.

More about it

If you need about details about all this we recommend the two articles below on Wikipedia. AC Power Root Mean Square