Circuits in Python: Resistor Combinations
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..
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
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.
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.
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.