Power factor measurement


Closed Thread
Results 1 to 21 of 21

Hybrid View

  1. #1
    Join Date
    Oct 2011
    Posts
    4


    Did you find this post helpful? Yes | No

    Default Re: Power factor measurement

    There are three routes you can take:

    1) Use a chip that measures the real and apparent power. You can probably get Vrms and Irms as well. SPI or I2C communications are likely necessary, but the chip will likely also generate a pulse for each unit of energy (example: 1 Watt x Sec) and a direction. Direction is which way power is flowing (to or from load). Increment or decrement the pulse sum depending on the direction. A highly reactive load will generate lots of energy pulses, but the direction will cause most of them to be averaged out. A resistive load will always have the same direction.

    Divide Ptrue by Papparent to get Power Factor.

    2) Write code to take lots of V and I measurements across a single cycle. Interleave the V and I measurements. Think >16 pairs of V and I measurements per cycle.
    (This is a good point to measure frequency.)

    2A) Compute the RMS values for V and I across a cycle. Here's how:
    Square each V and I, add to sum for one second (Vsum, Isum).
    At end of second, compute the square root of Vsum and Isum to get the RMS values Vrms and Irms.
    Multiply Vrms anf Irms to get apparent power (Papparent).
    (Vrms and Irms can be reported as the voltage and current measurements that a meter would indicate.)

    2B) For each pair of V and I measurements, multiply them to get instantaneous power (I can be negative in reactive loads, so power may be negative). Sum instantanious powers across a cycle to get true power (Ptrue).

    Divide Ptrue by Papparent to get Power Factor.

    3) Hack a Kill-A-Watt. This may be very similar to #1 above.

    P.S. I wrote "AN220 - Watt-Hour Meter using PIC16C923 and CS5460"

  2. #2
    Join Date
    Jan 2009
    Location
    California, USA
    Posts
    323


    Did you find this post helpful? Yes | No

    Default Re: Power factor measurement

    Quote Originally Posted by brettcgb View Post

    P.S. I wrote "AN220 - Watt-Hour Meter using PIC16C923 and CS5460"
    Ahhhh... do we have a Microchip engineer lurking in our midst?

    Greetings Brett!

    AN220 looks like a good read. Thanks!
    (Hmmm... I think I've seen your name on other Microcips AN's as well)

  3. #3
    Join Date
    Oct 2011
    Posts
    4


    Did you find this post helpful? Yes | No

    Default Re: Power factor measurement

    Former applications engineer with Microchip. I've since moved on.

    I've written a few apnotes, not as many as would have liked. I'd heavily revise my oscillator apnote, but the testing section is accurate.

  4. #4


    Did you find this post helpful? Yes | No

    Default Re: Power factor measurement

    I can't thank enough for the knowledge you have shared.

    I would like to know how useful this thing will be to learn more and put my next step forward: http://www.microchipdirect.com/ProductSearch.aspx?Keywords=MCP3905RD-PM1

    I
    am really relying on this forum to complete this challenge. I thank once again for the inputs. More questions will be on the way soon.
    ___________________
    WHY things get boring when they work just fine?

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts