Skip to content

Commit e791a20

Browse files
Mary-0165pre-commit-ci[bot]tianyizheng02
authored
Capacitor equivalence algorithm (TheAlgorithms#9814)
* capacitor equivalence algorithm * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Apply suggestions from code review * Update capacitor_equivalence.py --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Tianyi Zheng <[email protected]>
1 parent e5a6a97 commit e791a20

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

electronics/capacitor_equivalence.py

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# https://farside.ph.utexas.edu/teaching/316/lectures/node46.html
2+
3+
from __future__ import annotations
4+
5+
6+
def capacitor_parallel(capacitors: list[float]) -> float:
7+
"""
8+
Ceq = C1 + C2 + ... + Cn
9+
Calculate the equivalent resistance for any number of capacitors in parallel.
10+
>>> capacitor_parallel([5.71389, 12, 3])
11+
20.71389
12+
>>> capacitor_parallel([5.71389, 12, -3])
13+
Traceback (most recent call last):
14+
...
15+
ValueError: Capacitor at index 2 has a negative value!
16+
"""
17+
sum_c = 0.0
18+
for index, capacitor in enumerate(capacitors):
19+
if capacitor < 0:
20+
msg = f"Capacitor at index {index} has a negative value!"
21+
raise ValueError(msg)
22+
sum_c += capacitor
23+
return sum_c
24+
25+
26+
def capacitor_series(capacitors: list[float]) -> float:
27+
"""
28+
Ceq = 1/ (1/C1 + 1/C2 + ... + 1/Cn)
29+
>>> capacitor_series([5.71389, 12, 3])
30+
1.6901062252507735
31+
>>> capacitor_series([5.71389, 12, -3])
32+
Traceback (most recent call last):
33+
...
34+
ValueError: Capacitor at index 2 has a negative or zero value!
35+
>>> capacitor_series([5.71389, 12, 0.000])
36+
Traceback (most recent call last):
37+
...
38+
ValueError: Capacitor at index 2 has a negative or zero value!
39+
"""
40+
41+
first_sum = 0.0
42+
for index, capacitor in enumerate(capacitors):
43+
if capacitor <= 0:
44+
msg = f"Capacitor at index {index} has a negative or zero value!"
45+
raise ValueError(msg)
46+
first_sum += 1 / capacitor
47+
return 1 / first_sum
48+
49+
50+
if __name__ == "__main__":
51+
import doctest
52+
53+
doctest.testmod()

0 commit comments

Comments
 (0)