Home / Week 5 Exercises / Circuits in Python: Resistor Combinations

Circuits in Python: Resistor Combinations

The questions below are due on Sunday March 10, 2019; 11:00:00 PM.
 
You are not logged in.

If you are a current student, please Log In for full access to this page.
Music for this Problem
 

In this question, we will develop Python functions to represent series and parallel connections of resistors, and use these functions to represent equivalent resistances in specific circuits. Next week, we will generalize this idea to include series and parallel combinations of arbitrary components.

1) Parallel Combination

Write a Python function r_parallel, which should take two numbers representing resistances (in ohms), and should return the equivalent resistance of the parallel combination of resistors with those resistances.

2) Series Combination

Now write a Python function r_series, which should take two numbers representing resistances (in ohms), and should return the equivalent resistance of the series combination of resistors with those resistances.

3) Specific Combinations

In this section, we will use the pieces from the earlier sections to find equivalent resistances in particular circuits.

3.1) Circuit 1

Note that we will test your code using random numbers for the resistance values. You may wish to develop some simpler test cases of your own to help you debug..

Use the functions you defined above to find the equivalent resistance between the points labeled A and B in the circuit above, and to store the result in the variable equivalent_resistance. Your code can depend on r_parallel, r_series, r1, r2, r3, and r4. Feel free to define auxilliary variables if that is helpful.

3.2) Circuit 2

Use the functions you defined above to find the equivalent resistance between the points labeled A and C in the circuit above, and to store the result in the variable equivalent_resistance. Your code can depend on r_parallel, r_series, r1, r2, r3, r4, and r5. Feel free to define auxilliary variables if that is helpful.

Use the functions you defined above to find the equivalent resistance between the points labeled A and B in the circuit above, and to store the result in the variable equivalent_resistance. Your code can depend on r_parallel, r_series, r1, r2, r3, r4, and r5. Feel free to define auxilliary variables if that is helpful.

Use the functions you defined above to find the equivalent resistance between the points labeled C and D in the circuit above, and to store the result in the variable equivalent_resistance. Your code can depend on r_parallel, r_series, r1, r2, r3, r4, and r5. Feel free to define auxilliary variables if that is helpful.