2

Using step-down/isolation transformers, I am sampling the phase-to-phase voltages of a 3-phase, 3-wire industrial utility system in the US (208Vrms, 60Hz). Additionally, I am sampling the line currents using current transformers. From there I can calculate true RMS values for phase voltage and line current within reasonable tolerances.

I'm now looking to take this a step further, to calculate both real and apparent power for the whole system, and if possible, for the individual 3 legs as well.

We must assume the load is arbitrary, unbalanced, and variable - in reality, for this application it's some piece of machine equipment comprised of robots/controllers, switched mode power supplies, PLCs, motor starters, etc.

According to this site, in a single-phase system I can determine both real and apparent power very easily from average, and RMS calculations, respectively. However, I'm not sure what I need to do differently considering I'm measuring the phase-to-phase voltage rather than the phase-to-neutral voltage as one would do in a 120Vrms single-phase US "household" system.

I am familiar with this formula: $$\require{enclose}V_{AN}={V_{AB}\over\enclose{radical}{3}}\enclose{phasorangle}{\mp30}$$ but does this formula still apply for an unbalanced system? If it does, do I just sum up the power values for all 3 phases to get the total system power? (It seems too easy that way.)

Page 36, Section 4D3 of this document shows a formula that is allegedly agnostic to the 3-phase load being balanced/unbalanced and also agnostic to it being wired delta/wye: $$P_T={1\over\enclose{radical}{3}}V_L[I_Acos(\theta_{L-A/CA}-30^o)+I_Bcos(\theta_{L-B/AB}-30^o)+I_Ccos(\theta_{L-C/BC}-30^o)]$$

I'm a little hesitant to move forward writing code based off this formula, as I haven't seen anything similar anywhere else other than this one document. Additionally, I don't have a great way to determine the phase angle shifts considering we're not talking about an ideal sinusoidal signal but rather a sampled signal where (especially for the current, considering switched mode power supplies and the like) it is NOT going to be perfectly sinusoidal.

I know there must be a method to measure real and apparent power, considering there are off-the-shelf devices out there that do this, unless those devices are making some pretty big assumptions about the load.

1 Answers1

1

The reason you're having trouble is because you don't know what reactive power really is. It is the quantity of real power that flows from source to load that has an equivalent quantity of real power that flows from load to source, thus producing no work. It's just the quantity power circulating back and forth doing no work and not getting dissipated. But it is all just real power.

See illustrated example here:

How does power factor show itself in this data from sensor readings?

Knowing that, you should realize you no longer need to know anything but V and I. No RMS, no \$\sqrt 3\$, no wye vs. delta, no balanced vs unbalanced, no lin-to-neutral vs lin-to-line. You just do everything numerically:

  1. Each instantaneous voltage and instantaneous current sample taken at the same time are multiplied together to produce an instantaneous power point and a power waveform is constructed.

  2. The time average of the power waveform is the real power (that is, the net power, since it summed up all positive and negative power points) that is flowing from source-to-load, or load-to-source, depending in the sign of the result. This is performed on-the-fly by numerically integrating the power and dividing by the integration interval.

  3. Reactive power is the smaller value between the time average of all positive power points and time average of negative power points. Why? The smaller value gets swamped out by the larger value cancelling out which is reactive power.

  4. Apparent power is a bit meaningless when you have all this data so if you want it you jut construct it using Pythagoras on the real and reactive powers calculated. Or you can use numerically integration to calculate RMS of the voltage and current waveforms and multiply the values together.

    $$\text{RMS}=\sqrt{\frac{1}{T}\int_0^T{x^2 dt}}$$ (If you did not know, this is how you calculate RMS for anything. This is what you should have been using to get RMS values from real world measurements of arbitrary signals since only uses measurements and makes no assumptions)

    You can then calculate PF.

You don't need either apparent power or PF if you actually know the real power running in both directions. They are just abstractions that exist to model the values you get when you take voltage and current measurements independently thus losing all timing/phase information.

As for the integration interval, you can try to make it one period if you know it or can detect it, but if you don't/can't then you can make it a time much longer than one period (a hundred or a thousand times). The integral sum of all the whole cycles makes the contribution of the last cycle infinitesmal so it does not matter where the last cycle gets truncated due to timing imprecision.

Regardless of whether you have a wye or delta, if you have instrumentation measuring the phase voltage (not necessarily the line-to-line voltage specially for the wye) and if you are measuring the phase currents (not necessarily the same as line currents specially for the delta) then you can simply use the method above as is to calculate the instantaneous power of each phase and sum them. That will give you the real power of the three-phase system.

However, if you want to treat the load is unknown things get a bit trickier since now you only have measurements taken from outside the load: line-to-line voltages and line currents. That means that the phase voltage is obscured for wyes and the phase currents are obscured for deltas. It is not immediately obvious how to separate line currents into phase currents for a delta, nor is it obvious how to separate line-to-line voltages into phase voltages for a wye. Things like nodal analysis don't work and give you infinite solutions.

In this case, use Blondel's thereom:

\$p(t) = v_{ab}(t)i_a(t) + v_{cb}(t)i_c(t)\$

This is basically a clever way to use superposition since it expands out to be: \$p(t) = v_a(t)v_a(t) + v_b(t)v_b(t) + v_c(t)v_c(t)\$

You can verify yourself by modelling it as a wye and using:

\$i_a(t)+i_b(t)+i_c(t) = 0\$

\$v_{\phi}(t) = v_{\phi} - v_{{\phi}n}\$, where '\$\phi\$' is phase A, B, or C, and 'n' is the neutral

\$v_{x}(t) = v_{y} - v_{x-y}\$, where 'x' and 'y' are Phases A, B, or C

It's about five simple lines long and if you think about it as a wye, it basically calculates the power of the phases A and B (where currents are being measured through normally). However, in Phase C, where the measured currents merge, the power here is calculated through superposition of powers via superposition of the currents without actually needing to separate the line-to-line voltages of the wye into distinct phase voltages. However because of this, Blondel's Thereom only tells you overall real power and not the power in individual phases.

Beyond that, for power such as in individual phases or power factors, etc you need PQ Theory which I have only just become aware of with complications trying to answer this question and it is a lot more complicated and I am only just reading on it now.

Though, this equation does exist for imaginary power outside of PQ Theory but I only became aware of it reading about PQ theory: \$q(t) = \frac{1}{\sqrt(3)}[v_{ab}(t)i_c(t) + v_{bc}(t)i_a(t) +v_{ca}(t)i_b(t)]\$

DKNguyen
  • 54,733
  • 4
  • 67
  • 153
  • 1
    Thank you for the thorough answer, this definitely clears up a lot, especially with reactive power. One thing I'm still a little unsure about is the phase voltages V_AB, V_BC, V_CA. P=IV where I is the current through a load, and V is the voltage drop of the load. With a 3-phase unknown load, we don't know if 100% of the current is flowing from line A to line B, in order to use the formula P_A = I_A * V_AB; rather, a portion of that current will flow from line A to line C as well. But does the fact that we know all 3 "input" currents at any given time allow us to ignore that? – tkawolfpack Feb 19 '22 at 15:45
  • 1
    Oh wait, I think I see what you mean. You might have a case where you have 3 different instantaneous line current values so you don't know which line-to-line voltage it should go with? Is that what you mean? That's a really good question. It should still follow nodal analysis so I think you need an intermediary step before P=IV where work out the currents running through each equivalent delta phase prior to calculation. I would need to verify in Falstad, I need to do so anyways. It's coming up at work. Thanks for bringing to my attention. – DKNguyen Feb 19 '22 at 19:20
  • Similarly, if there is a neutral line then that current needs to be measured and taken into account during the nodal current calculations. – DKNguyen Feb 19 '22 at 19:24
  • Yes - I think we're on the same page. So if I assume the load is delta, without neutral, if I do KCL analysis at each "point" of the delta then I get 3 equations with 3 unknowns - so I need to then do nodal analysis using the instantaneous voltage & current readings to determine the current flowing from phase-to-phase? Since I have those instantaneous readings, can I assume the loads in the delta are resistors when doing nodal (when in reality they probably have non-resistive impedance)? – tkawolfpack Feb 22 '22 at 00:17
  • @tkawolfpack You don't need to do anything with the voltage when figuring out the currents. You are already measuring the line-to-line voltage directly. You just use KCL to figure out what currents end up in what delta phase which also doesn't assume that the delta are resistors. It's not even full KCL analysis really since you are only looking at the summation of currents. You shouldn't need to involve the voltages at all in this step. You also aren't assuming anything when you go P=VI with instantaneous values because that holds for everything. – DKNguyen Feb 22 '22 at 00:23
  • So I made an example where I_A=3, I_B=4, I_C=-7 (where positive I flows INTO the delta). I made I_AB=1.5, I_BC=5.5, I_CA=-1.5. If I use the nodal equations for the 3 delta points, with the phase-to-phase currents as unknowns, and put them into a 3-unknown calculator (http://www.1728.org/unknwn3.htm) I get "NaN" as the result for each of the phase-to-phase currents (i.e. infinite solutions - this was a good refresher on systems of equations). Which makes sense, I could also make I_AB=2, I_BC=6, I_CA=-1 and the system still holds. I think we need to involve more than just the currents. – tkawolfpack Feb 22 '22 at 00:59
  • @tkawolfpack Hmm yeah. I get the same. I think the infinite solutions is because the delta nodal equations can have circulating currents inside of any value which cancel out and are invisible from the outside. I am going to try assuming a wye with a neutral instead since there are no circulating currents there and we can set In=0. Might have better luck trying to figure out the phase voltages from line-to-line measurements in the wye than phase currents in the delta. Though it seems like there should be a way to assume a delta but I can't seem to figure it out. – DKNguyen Feb 23 '22 at 22:36
  • @tkawolfpack Blonde's THereom here: http://www.faadooengineers.com/online-study/post/eee/electrical-measurements-and-measuring-instruments/634/blondel-s-theorem The equations with measurements taken magically simplify down to if you just measured the phase voltage and currents directly. The link is a Wye derivation but a delta derivation can also be found. It uses two meters. I still don't know how you would do it with three meters though unless you had a wye-with-neutral on either source or load side. Then you measure where the wye-with-neutral is. – DKNguyen Feb 24 '22 at 02:04