-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapacitors.html
More file actions
76 lines (71 loc) · 2.57 KB
/
Copy pathcapacitors.html
File metadata and controls
76 lines (71 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Capacitors | easysynth</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>⚡ Capacitors</h1>
<p class="subtitle">Holding charge, shaping time</p>
</header>
<main>
<section>
<p>Capacitors are the breath between pulses. They store energy, release it in rhythm, and shape the contours of voltage over time. In synthesis, they define decay, filter frequencies, and create movement from stillness.</p>
</section>
<section>
<h2 data-icon="🔍">What Is a Capacitor?</h2>
<p>A capacitor stores electrical energy in an electric field. It’s defined by its capacitance, measured in farads (F), and interacts with voltage and time: <code>I = C × dV/dt</code>.</p>
<table>
<thead>
<tr>
<th>Type</th>
<th>Description</th>
<th>Synth Use</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ceramic</td>
<td>Small, stable, non-polarized</td>
<td>Decoupling, filtering</td>
</tr>
<tr>
<td>Electrolytic</td>
<td>High capacitance, polarized</td>
<td>Power smoothing, timing circuits</td>
</tr>
<tr>
<td>Film</td>
<td>Stable, low ESR</td>
<td>Audio signal paths</td>
</tr>
<tr>
<td>Tantalum</td>
<td>Compact, reliable</td>
<td>Precision filtering</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2 data-icon="🎛️">Capacitors in Modular Synthesis</h2>
<ul>
<li><strong>RC Filters</strong>: Shape frequency response with resistors.</li>
<li><strong>Envelope Generators</strong>: Define attack, decay, sustain, release.</li>
<li><strong>Coupling</strong>: Block DC, pass AC in audio paths.</li>
<li><strong>Timing Circuits</strong>: Set delays and oscillation rates.</li>
</ul>
</section>
<section>
<h2 data-icon="🧩">Philosophical Footnote</h2>
<p>Capacitors teach us patience. They hold, release, and shape time itself. In a world of instant reaction, they remind us that delay can be design — that rhythm is born from restraint.</p>
</section>
</main>
<footer>
<p>© 2025 <a href="https://easysynth.co.uk">easysynth.co.uk</a> · <a href="index.html">Return to homepage</a></p>
</footer>
</body>
</html>