\[ \begin{align}\begin{aligned}\newcommand\blank{~\underline{\hspace{1.2cm}}~}\\% Bold symbols (vectors) \newcommand\bs[1]{\mathbf{#1}}\\% Poor man's siunitx \newcommand\unit[1]{\mathrm{#1}} \newcommand\num[1]{#1} \newcommand\qty[2]{#1~\unit{#2}}\\\newcommand\per{/} \newcommand\squared{{}^2} \newcommand\cubed{{}^3} % % Scale \newcommand\milli{\unit{m}} \newcommand\centi{\unit{c}} \newcommand\kilo{\unit{k}} \newcommand\mega{\unit{M}} % % Percent \newcommand\percent{\unit{\%}} % % Angle \newcommand\radian{\unit{rad}} \newcommand\degree{\unit{{}^\circ}} % % Time \newcommand\second{\unit{s}} \newcommand\s{\second} \newcommand\minute{\unit{min}} \newcommand\hour{\unit{h}} % % Distance \newcommand\meter{\unit{m}} \newcommand\m{\meter} \newcommand\inch{\unit{in}} \newcommand\foot{\unit{ft}} % % Force \newcommand\newton{\unit{N}} \newcommand\kip{\unit{kip}} % kilopound in "freedom" units - edit made by Sri % % Mass \newcommand\gram{\unit{g}} \newcommand\g{\gram} \newcommand\kilogram{\unit{kg}} \newcommand\kg{\kilogram} \newcommand\grain{\unit{grain}} \newcommand\ounce{\unit{oz}} % % Temperature \newcommand\kelvin{\unit{K}} \newcommand\K{\kelvin} \newcommand\celsius{\unit{{}^\circ C}} \newcommand\C{\celsius} \newcommand\fahrenheit{\unit{{}^\circ F}} \newcommand\F{\fahrenheit} % % Area \newcommand\sqft{\unit{sq\,\foot}} % square foot % % Volume \newcommand\liter{\unit{L}} \newcommand\gallon{\unit{gal}} % % Frequency \newcommand\hertz{\unit{Hz}} \newcommand\rpm{\unit{rpm}} % % Voltage \newcommand\volt{\unit{V}} \newcommand\V{\volt} \newcommand\millivolt{\milli\volt} \newcommand\mV{\milli\volt} \newcommand\kilovolt{\kilo\volt} \newcommand\kV{\kilo\volt} % % Current \newcommand\ampere{\unit{A}} \newcommand\A{\ampere} \newcommand\milliampereA{\milli\ampere} \newcommand\mA{\milli\ampere} \newcommand\kiloampereA{\kilo\ampere} \newcommand\kA{\kilo\ampere} % % Resistance \newcommand\ohm{\Omega} \newcommand\milliohm{\milli\ohm} \newcommand\kiloohm{\kilo\ohm} % correct SI spelling \newcommand\kilohm{\kilo\ohm} % "American" spelling used in siunitx \newcommand\megaohm{\mega\ohm} % correct SI spelling \newcommand\megohm{\mega\ohm} % "American" spelling used in siunitx % % Inductance \newcommand\henry{\unit{H}} \newcommand\H{\henry} \newcommand\millihenry{\milli\henry} \newcommand\mH{\milli\henry} % % Power \newcommand\watt{\unit{W}} \newcommand\W{\watt} \newcommand\milliwatt{\milli\watt} \newcommand\mW{\milli\watt} \newcommand\kilowatt{\kilo\watt} \newcommand\kW{\kilo\watt} % % Energy \newcommand\joule{\unit{J}} \newcommand\J{\joule} % % Composite units % % Torque \newcommand\ozin{\unit{\ounce}\,\unit{in}} \newcommand\newtonmeter{\unit{\newton\,\meter}} % % Pressure \newcommand\psf{\unit{psf}} % pounds per square foot \newcommand\pcf{\unit{pcf}} % pounds per cubic foot \newcommand\pascal{\unit{Pa}} \newcommand\Pa{\pascal} \newcommand\ksi{\unit{ksi}} % kilopound per square inch \newcommand\bar{\unit{bar}} \end{aligned}\end{align} \]

Oct 24, 2024 | 467 words | 5 min read

5.3.2. Task 2#

Learning Objectives#

Create and execute simple scripts comprised of basic Python concepts; Output data from a script to the screen in Python; Apply this course’s programming standards in development of Python scripts; Modularize and comment code in Python for readability and reusability.

Task Instructions#

You may recall from your high school physics class that a resistor is an electrical component that reduces the current across a circuit. Most generally, a resistor turns electrical current into a different type of energy, such as noise, light, or heat. Anything that draws current from the circuit, such as a light, can be modeled as having a resistance value R (with unit Ohm [\(\Omega\)]), and the equivalent resistance of a circuit can be calculated using the individual resistances of all components drawing current in the circuit.

There are two types of electrical circuits: series and parallel. For each of the network types one can calculate a total resistance for the entire network, but the two types are calculated differently. The following equations show how one can calculate total resistance for series and parallel circuits:

(5.4)#\[R_{total} = R_{1}+R_{2}+...+R_{n} \text{ (Series circuit)}\]
(5.5)#\[\frac{1}{R_{total}} = \frac{1}{R_{1}}+\frac{1}{R_2}+...+\frac{1}{R_n} \text{ (Parallel circuit)}\]

It is useful to calculate the total resistance for a circuit, as given some voltage (such as from a battery), the total current draw of the circuit can be easily calculated.

For this assignment, you will need to write a Python script (filename: py1_ind_2_username.py) using the ENGR133_Python_Template.py to calculate the total resistance of resistors arranged in series or in parallel. The program should output the results for both series AND parallel calculations. You have been given a test case to illustrate the computation which you can use to test if your program outputs correct values.

Table 5.9 The following table is test cases only and should not be included in your program.#

Type of Circuit

Resistance of Resistor 1

Resistance of Resistor 2

Total Resistance

Parallel

30.0 \(\Omega\)

10.0 \(\Omega\)

7.5 \(\Omega\)

Series

30.0 \(\Omega\)

10.0 \(\Omega\)

40.0 \(\Omega\)

Next, you must demonstrate the correctness of your program by applying it to the test case where the first resistance value is an input from the user and the second resistance value is \(e^2\sqrt[]{7} \text{ } \Omega\). Note that here, \(e\) is Euler’s number. Do not use the input() function except to get the first resistance from the user. To better display your logic, create a flowchart and save it in a PDF file named py1_ind_2_username.pdf.

Sample Output#

Use the values in Table 5.10 below to test your program.

Table 5.10 Test Cases#

Case

Resistor 1

1

10

2

30

Ensure your program’s output matches the provided samples exactly. This includes all characters, white space, and punctuation. In the samples, user input is highlighted like this for clarity, but your program should not highlight user input in this way.

Case 1 Sample Output

$ python3 py1_ind_2_username.py Input the resistance of the first resistor [Ω]: 10 Type First Second Total Resistance Parallel 10.0 Ω 19.5 Ω 6.6 Ω Series 10.0 Ω 19.5 Ω 29.5 Ω

Case 2 Sample Output

$ python3 py1_ind_2_username.py Input the resistance of the first resistor [Ω]: 30 Type First Second Total Resistance Parallel 30.0 Ω 19.5 Ω 11.8 Ω Series 30.0 Ω 19.5 Ω 49.5 Ω