Electronic – how to compute the average power from AC generator

generatorpower

I would like to monitor the power produced by an AC generator in a wind turbine. The goal is to monitor how the produced power varies with wind conditions. I connected the power resistor to AC generator to burn out the power. The voltage sensor measures the voltage across the resistor, and the current sensor measures the current flowing into the load resistor.

For computing average power, I rectified the output from the AC generator and use the DC voltage and current to compute the average power using $$1/N\sum_{i=1}^{N}V_{DC}(i)I_{DC}(i)$$
I thought that if I rectified the output, I can compute the average power more reliably. However, I observed that there is lots of variability in the computed average power. In other words, even for the same wind condition, the computed average power changes for different experiments (wind tunnel).

As an alternative, can I use non-rectified AC voltage and the current to compute the average power? Just computing the root mean square of the power time series would results in an sufficiently accurate result? The RPM of the generator is about 500, and the sampling frequency of measuring the voltage and the current is about 1000Hz.

Best Answer

As an alternative, can I use non-rectified AC voltage and the current to compute the average power?

If you want an accurate number for power this is the only sensible way to do it because any other method will be only accurate if the voltage supply is sinusoidal and the current drawn has no harmonics.

Take high-speed simultaneous samples of voltage and current waveforms. Multiply i and v samples. Average over a period to suit you (best and most accurate if taken over integer numbers of AC cycles). This is proper average power.

If the current or voltage has harmonics then you need to sample sufficiently high enough to be able to ignore aliasing effects.

EDIT showing voltage and current waveforms multiplied together. V is blue, I is red and magenta is power: -

enter image description here

Related Topic