ArtsAutosBooksBusinessEducationEntertainmentFamilyFashionFoodGamesGenderHealthHolidaysHomeHubPagesPersonal FinancePetsPoliticsReligionSportsTechnologyTravel

How To Analyze More Complex Series Parallel Circuits

Updated on October 5, 2014
Circuits with parallel and series elements are very common.
Circuits with parallel and series elements are very common. | Source

Theory

In the last Hub, we talked about how to figure out the equivalent resistance of resistors in parallel, and in the Hub before that, we learned how to deal with resistors in series. In this Hub, we'll combine those techniques to deal with circuits that have both series and parallel combinations of resistors, whether they be series of parallel resistors, parallel combinations of series of resistors, or multiple combinations of the two. This can be done, as we'll see, through repeated application of Ohm's Law.

One method of working your way through the finding of the voltage across and current through each resistor in a complex circuit is to work your way "out" from the innermost series or parallel parts of the circuit, substituting equivalent resistances as you go, until you have simplified the circuit into a single resistor. Now using Ohm's Law, you can find the total current draw IT of the circuit. Then, use IT and the circuit as it looked with the equivalent resistances right before you simplified it to just a single resistor, and so on until you've worked the circuit in full. It helps to reduce the amount of recalculation you have to do by using a spreadsheet program. Having a spreadsheet is great because you can change any resistor's value and all the currents and voltages will be automatically recalculated. I'll show an example of using this technique to solve a circuit now.

An Example Circuit

Shown below is an example of a circuit with series and parallel elements. R1 and R2 form a series, as do R3 and R4. These two series are in parallel with each other, and this parallel subcircuit is in series with resistors R5 and R6.

A sample circuit with series and parallel elements.
A sample circuit with series and parallel elements. | Source

If you've got a spreadsheet program on your computer, I encourage you to follow along. Learning by doing is usually better than just passive reading!

This circuit has six resistors and one voltage source. Let's put labels for the resistors R1-R6 in cells A1-A6 of the spreadsheet, leave cells B1-B6 for those values, put a label for the voltage source V in C1, and leave D1 for the actual voltage value. You can put in some random numbers for the resistance and voltage values (you can always change them later) so that when we set other cells for equivalent resistances and currents and voltages with formulas dependent upon these cells, we see some numbers instead of just ### or whatever your spreadsheet program shows when it can't resolve a cell's value. Shown below is my spreadsheet so far.

Spreadsheet with values for R1-R6 and V.
Spreadsheet with values for R1-R6 and V. | Source

Now let's analyze the schematic. Resistors R1 and R2 are in series, so a single resistor called, say, Ra could be substituted where those two resistors are and it would have a resistance value equal to R1 + R2. So let's put at cell A7 the label RA and in cell B7 let's type in the equation '=B1+B2' (without the quotes, of course).

Similarly, looking at the schematic, we could simplify R3 and R4 to a single resistor called Rb with value R3 + R4. We put RB at cell A8 and '=B3+B4' at cell B8. Now the spreadsheet looks something like the image below.

Cells B7 and B8 have equations computing their values from A1,A2 and A3,A4, respectively.
Cells B7 and B8 have equations computing their values from A1,A2 and A3,A4, respectively. | Source

Now we can picture the two single resistors Ra and Rb in parallel with each other. What value, say we labeled it Rc, would a single resistor representing the two resistors in parallel have? If you remember from the last Hub, the formula for the equivalent resistance of two resistors in parallel is the product over the sum. So we could let cell A9 have the label RC and let cell B9 have the formula '=(B7*B8) / (B7 + B8)'. Now the spreadsheet looks like this:

RC has now simplified R1-R4 in the original schematic into a single resistor.
RC has now simplified R1-R4 in the original schematic into a single resistor. | Source

Now Rc is just in series with resistors R5 and R6, so we can create a cell labeled RD at A10 and its value '=B9+B5+B6' at B10, which would look like this:

Circuit simplified to a single resistor with the value of RD.
Circuit simplified to a single resistor with the value of RD. | Source

Work Back Down For The Currents

Now that we've found the total resistance of the circuit, we can work backwards to find the currents in each branch. First, let's find out the total current IT drawn from the battery. Using Ohm's Law, we divide voltage V by resistance Rd. Since this is the current flowing through hypothetical equivalent resistor Rd, we can label the current Id, place the label ID in cell C10, and place the value '=D1/B10' in cell D10, giving the following:

Current ID = V (D1) / RD (B10)
Current ID = V (D1) / RD (B10) | Source

To find out how much current is flowing through the branch of Ra and how much is flowing through the branch of Rb, we can use a principle known as Kirchhoff's Current Law (KCL), discovered by German physicist Gustav Kirchhoff, which effectively states that the net current through a node is zero. In other words, what goes in must come out, and what comes out, must have come in. If X amps go out of the node through branch D, then the sum of currents coming into the node through branches A and B must be X.

How is Id divvied up into Ia and Ib? With a two-branch setup like we have, if we want to know how much current is flowing through branch A, i.e., Ia, we divide Rb by the sum of Ra and Rb and multiply the quotient by the total current Id. To find the current Ib flowing through branch B, we perform the same operation but with Ra in the numerator where Rb was used before.

So for IA we give the value '=(B8/(B7+B8))*D10' and for IB we give the value '=(B7/(B7+B8))*D10' as shown below:


Branch Currents IA and IB. IA = (RB / (RA + RB)) * ID and IB = (RA / (RA + RB)) * ID.
Branch Currents IA and IB. IA = (RB / (RA + RB)) * ID and IB = (RA / (RA + RB)) * ID. | Source

Voltage = Current * Resistance

Now that we have the branch currents for all the real branches in the circuit and the resistance of each resistor, we can use Ohm's Law in voltage solution mode (V = I * R) to find the voltage across each resistor.

R1 is on branch a with current Ia, so V1 = R1 * IA. V2 = R1 * IA. V3 = R3 * IB. V4 = R4 * IB. R5 and R6 are on the branch with current Id, so V5 = R5 * ID and V6 = R6 * ID. This is shown on the spreadsheet below:

Voltages of all the resistors.
Voltages of all the resistors. | Source

Notice that the net voltages in any closed loop through the circuit add up to zero. For instance, starting at the positive terminal of the battery with voltage V and dropping the voltages of V1 and V2 and V5 and V6, or in other words, we have V - V1 - V2 - V5 - V6 = 0. If we loop using the other branch, we get V - V2 - V3 - V5 - V6 = 0. This is known as Kirchhoff's Voltage Law. I encourage you to learn more about that! In my next Hub, we'll look at interesting circuits that can't be broken down using only series and parallel techniques. Thanks for reading!

working

This website uses cookies

As a user in the EEA, your approval is needed on a few things. To provide a better website experience, hubpages.com uses cookies (and other similar technologies) and may collect, process, and share personal data. Please choose which areas of our service you consent to our doing so.

For more information on managing or withdrawing consents and how we handle data, visit our Privacy Policy at: https://corp.maven.io/privacy-policy

Show Details
Necessary
HubPages Device IDThis is used to identify particular browsers or devices when the access the service, and is used for security reasons.
LoginThis is necessary to sign in to the HubPages Service.
Google RecaptchaThis is used to prevent bots and spam. (Privacy Policy)
AkismetThis is used to detect comment spam. (Privacy Policy)
HubPages Google AnalyticsThis is used to provide data on traffic to our website, all personally identifyable data is anonymized. (Privacy Policy)
HubPages Traffic PixelThis is used to collect data on traffic to articles and other pages on our site. Unless you are signed in to a HubPages account, all personally identifiable information is anonymized.
Amazon Web ServicesThis is a cloud services platform that we used to host our service. (Privacy Policy)
CloudflareThis is a cloud CDN service that we use to efficiently deliver files required for our service to operate such as javascript, cascading style sheets, images, and videos. (Privacy Policy)
Google Hosted LibrariesJavascript software libraries such as jQuery are loaded at endpoints on the googleapis.com or gstatic.com domains, for performance and efficiency reasons. (Privacy Policy)
Features
Google Custom SearchThis is feature allows you to search the site. (Privacy Policy)
Google MapsSome articles have Google Maps embedded in them. (Privacy Policy)
Google ChartsThis is used to display charts and graphs on articles and the author center. (Privacy Policy)
Google AdSense Host APIThis service allows you to sign up for or associate a Google AdSense account with HubPages, so that you can earn money from ads on your articles. No data is shared unless you engage with this feature. (Privacy Policy)
Google YouTubeSome articles have YouTube videos embedded in them. (Privacy Policy)
VimeoSome articles have Vimeo videos embedded in them. (Privacy Policy)
PaypalThis is used for a registered author who enrolls in the HubPages Earnings program and requests to be paid via PayPal. No data is shared with Paypal unless you engage with this feature. (Privacy Policy)
Facebook LoginYou can use this to streamline signing up for, or signing in to your Hubpages account. No data is shared with Facebook unless you engage with this feature. (Privacy Policy)
MavenThis supports the Maven widget and search functionality. (Privacy Policy)
Marketing
Google AdSenseThis is an ad network. (Privacy Policy)
Google DoubleClickGoogle provides ad serving technology and runs an ad network. (Privacy Policy)
Index ExchangeThis is an ad network. (Privacy Policy)
SovrnThis is an ad network. (Privacy Policy)
Facebook AdsThis is an ad network. (Privacy Policy)
Amazon Unified Ad MarketplaceThis is an ad network. (Privacy Policy)
AppNexusThis is an ad network. (Privacy Policy)
OpenxThis is an ad network. (Privacy Policy)
Rubicon ProjectThis is an ad network. (Privacy Policy)
TripleLiftThis is an ad network. (Privacy Policy)
Say MediaWe partner with Say Media to deliver ad campaigns on our sites. (Privacy Policy)
Remarketing PixelsWe may use remarketing pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to advertise the HubPages Service to people that have visited our sites.
Conversion Tracking PixelsWe may use conversion tracking pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to identify when an advertisement has successfully resulted in the desired action, such as signing up for the HubPages Service or publishing an article on the HubPages Service.
Statistics
Author Google AnalyticsThis is used to provide traffic data and reports to the authors of articles on the HubPages Service. (Privacy Policy)
ComscoreComScore is a media measurement and analytics company providing marketing data and analytics to enterprises, media and advertising agencies, and publishers. Non-consent will result in ComScore only processing obfuscated personal data. (Privacy Policy)
Amazon Tracking PixelSome articles display amazon products as part of the Amazon Affiliate program, this pixel provides traffic statistics for those products (Privacy Policy)
ClickscoThis is a data management platform studying reader behavior (Privacy Policy)