-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (56 loc) · 2.36 KB
/
index.html
File metadata and controls
64 lines (56 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wave Visualizations</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
max-width: 800px;
margin: 2em auto;
line-height: 1.6;
background-color: #fcfcfc;
padding: 0 1em;
}
h1, h2 {
text-align: center;
}
.visualization {
margin-top: 2em;
padding: 1em;
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
a {
text-decoration: none;
color: #007acc;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Wave Visualizations</h1>
<p>Welcome! This project offers a growing collection of interactive visualizations to explore the principles of wave mechanics and interference. It is designed to support teaching, self-study, and experimentation through intuitive and engaging simulations.</p>
<h2>Included Visualizations</h2>
<div class="visualization">
<h3><a href="phase-displacement.html">🌊 Phase Displacement in Traveling Waves</a></h3>
<p>An animated visualization showing how the phase of a traveling wave depends on both <strong>position</strong> and <strong>time</strong>. Includes a circular motion analogy to illustrate how different points along the wave oscillate with varying phases.</p>
</div>
<div class="visualization">
<h3><a href="interference.html">🌈 Double-Slit Interference Simulation</a></h3>
<p>An interactive simulation of the classic double-slit experiment. Modify parameters such as wall distance, slit separation, wave amplitude, and frequency, and observe how the interference pattern evolves in real-time.</p>
</div>
<div class="visualization">
<h3><a href="interference-space.html">🌌 Coherent Wave Source Interference</a></h3>
<p>An interactive visualization demonstrating wave interference from two coherent sources. Adjust parameters like wavelength, source distance, phase shift, and amplitude ratio to explore how they affect the resulting wave patterns.</p>
</div>
<footer style="margin-top: 3em; text-align: center; font-size: 0.9em; color: #666;">
© 2025 Salvador Fandiño. Licensed under the GNU General Public License (GPL).
</footer>
</body>
</html>