Thread: Equivalent Resistance Calculations

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #10
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    This is an easy task.

    For all series-parallel circuits do the parallel portion first. This effectively turns the parallel portion into a series portion or turns many resistors into one with a corresponding resistance value.

    Once you have this then you can plug the values into Ohm's law and figure out the rest of the circuit.

    Parallel: Total = 1/R1 + 1/R2 + 1/R3 + .... 1/Rn
    Series: Total = R1 + R2 + R3 + ... + Rn

    Ohm's law: E = IR - E = voltage, I = amperage, R = resistance

    I highly recommend RIEP charts (P(ower)=I * E) to figure circuits out. You can implement this in code as well. Using RIEP charts you can figure out any circuit with little trouble.

    Most of that question is a 'trick' question. Regardless of how the resistors in a circuit are arranged they always follow the fundamental parallel or series rules. If you have parallel portions, you must figure those out first.

    Also remember this:

    Series
    Amperage is constant - hence you get voltage drops across the resistors

    Parallel
    Voltage is constant - hence you can figure out how many amps are flowing through each resistor in a parallel circuit
    Last edited by VirtualAce; 11-09-2007 at 06:00 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Pointer equivalent to array notation
    By bekkilyn in forum C Programming
    Replies: 4
    Last Post: 12-06-2006, 08:22 PM
  2. Air Resistance?
    By Muphin in forum C++ Programming
    Replies: 5
    Last Post: 09-05-2005, 04:35 PM
  3. Replies: 10
    Last Post: 08-17-2005, 11:17 PM
  4. Header File Question(s)
    By AQWst in forum C++ Programming
    Replies: 10
    Last Post: 12-23-2004, 11:31 PM
  5. How do I get these calculations correct?
    By nadeni0119 in forum C++ Programming
    Replies: 10
    Last Post: 04-07-2003, 11:09 AM