-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzn-br-battery-works.html
More file actions
147 lines (138 loc) · 5.27 KB
/
zn-br-battery-works.html
File metadata and controls
147 lines (138 loc) · 5.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Simple explanation of zinc bromide batteries for beginners.">
<title>How a Zinc Bromide Battery Works</title>
<style>
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 80px;
background-color: #2F4F4F;
color: white;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
.header a {
color: white;
text-decoration: none;
margin-left: 20px;
}
.header a:hover {
text-decoration: underline;
}
body {
font-family: Cambria, Georgia, serif;
background-color: #F0F8FF;
color: #556B2F;
text-align: left;
margin: 0;
font-size: 20px;
padding: 100px;
line-height:1.5;
}
a {
color: #8FBC8F;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1 {
font-family: "Times New Roman", Times, serif;
font-size: 1.5rem;
text-align: center;
margin-top: 0;
}
h2 {
font-size: 1.3rem;
text-align: center;
}
@media (max-width: 768px) {
body {
padding: 20px;
}
}
.license {
font-size: 0.9em;
margin-top: 20px;
color: #777;
}
</style>
</head>
<body>
<div class="header">
<div class="logo">
<a href="index.html" style="font-weight: bold;">RailVault</a>
</div>
</div>
<h1>How a Zinc Bromide Battery Works</h1>
<p>
Imagine a battery as a <strong>rechargeable tank of energy</strong>. A zinc bromide battery is like a system with
<strong>two tanks of liquid</strong> connected to a machine that stores and releases energy when needed.
</p>
<h2>How It Works</h2>
<h3>The Tanks</h3>
<p>
There are two tanks of liquid. Let’s call them "Tank A" and "Tank B." These tanks hold a special salty water mix
that’s really good at carrying energy.
</p>
<h3>The Energy Machine</h3>
<p>
In between the tanks, there’s a part we’ll call the "energy machine." This is where the magic happens—it takes
energy in and sends energy out.
</p>
<h3>Charging (Storing Energy)</h3>
<p>
When you <strong>charge the battery</strong> (like plugging it into solar panels or the grid):
<ul>
<li>Tank A gets filled with "zinc coins" (pretend these are made of energy).</li>
<li>Tank B gets filled with a different kind of "energy juice" (bromine).</li>
</ul>
So now, Tank A has stored energy (the zinc coins), and Tank B has its part ready too.
</p>
<h3>Discharging (Using Energy)</h3>
<p>
When you <strong>need energy</strong> (like turning on a light):
<ul>
<li>The machine takes the "zinc coins" from Tank A and combines them with the juice from Tank B to release electricity.</li>
<li>As this happens, the zinc coins dissolve back into the salty water, ready to be charged again.</li>
</ul>
</p>
<h2>Why It’s Cool</h2>
<p>
Zinc bromide batteries are:
<ul>
<li><strong>Refillable:</strong> You can keep storing and using energy over and over.</li>
<li><strong>Scalable:</strong> Need more energy? Just make the tanks bigger!</li>
<li><strong>Eco-Friendly:</strong> Great for renewable energy storage like wind and solar.</li>
</ul>
</p>
<h2>Real-Life Use</h2>
<p>
Imagine you have solar panels on your house. During the day, the sun charges the battery (fills Tank A with zinc coins).
At night, when the sun is gone, the battery gives you electricity to keep your lights on. It’s like having a reusable
energy piggy bank!
</p>
<h2>Additional Resources</h2>
<ul>
<li><a href="https://pv-magazine-usa.com/2023/06/05/redflow-to-build-20-mwh-redox-flow-battery-in-california/" target="_blank">Largest Zinc Bromide Battery in California - PV Magazine USA</a></li>
<li><a href="https://diysolarforum.com/threads/my-adventures-building-a-zinc-bromine-battery.11910/" target="_blank">DIY Zinc Bromide Battery - DIY Solar Forum</a></li>
<li><a href="https://www.youtube.com/watch?v=qOOu-XhbfPg" target="_blank">DIY Zinc Bromide Battery - YouTube Video</a></li>
</ul>
<footer class="license">
<p>
<strong>License:</strong> This work is licensed under the <a href="https://creativecommons.org/publicdomain/zero/1.0/" target="_blank">Creative Commons CC0</a>
(Public Domain Dedication). You are free to copy, modify, distribute, and use this work, even for commercial purposes, without asking permission.
</p>
</footer>
</body>
</html>