-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimations.html
312 lines (260 loc) · 16.8 KB
/
animations.html
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link href="my_style.css" rel="stylesheet">
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<title>Animations</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon_package/apple-touch-icon.png">
<!-- <link rel="icon" type="image/png" sizes="32x32" href="favicon_package/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_package/favicon-16x16.png"> -->
<link rel="manifest" href="favicon_package/site.webmanifest">
<link rel="icon" href="favicon_package/favicon.svg" type="image/svg+xml">
<link rel="icon" href="favicon_package/favicon.ico"> <!-- 32×32 -->
<!-- <meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff"> -->
</head>
<body>
<header class="header">
<div class="header-background-2">
<div id="nav" class="sticky-nav">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<!-- <a class="navbar-brand" href="#">Photon Sphere</a> -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
<span></span>
<span></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 justify-content-between">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="animations.html">Animations</a>
</li>
<li class="nav-item">
<a class="nav-link" href="files/CV.pdf">CV</a>
</li>
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Dropdown
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul> -->
</li>
</ul>
<ul class="navbar-nav mc-auto mb-2 mb-rg-0">
<li class="nav-item">
<a class="nav-link" href="https://www.youtube.com/channel/UC9Z75QRT3_Fx6StcORx2n4g">
<div class="nav-link-wrapper-yt">
<img src="logos/SVG/photon_sphere-02.svg" class="yt-red">
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://twitter.com/Photon_Sphere">
<div class="nav-link-wrapper-twitter">
<img src="logos/SVG/photon_sphere-01.svg" class="twitter-blue">
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.reddit.com/user/Photon-Sphere">
<div class="nav-link-wrapper-reddit">
<img src="logos/SVG/photon_sphere-05.svg" class="reddit-orange">
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/in/oliver-schoen">
<div class="nav-link-wrapper-linkedin">
<img src="logos/SVG/photon_sphere-06.svg" class="linkedin-blue">
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/PhotonSpheres">
<div class="nav-link-wrapper-github">
<img src="logos/SVG/photon_sphere-11.svg" class="github-white">
</div>
</a>
</li>
</ul>
<!-- <form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form> -->
</div>
</div>
</nav>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md column-left">
<div class="ratio ratio-16x9 mx-auto my-auto">
<iframe src="https://www.youtube.com/embed/HDZP64N8t-Q?version=3&loop=1&playlist=HDZP64N8t-Q&rel=0" allowfullscreen>
</iframe>
</div>
</div>
<div class="col-md column-right my-auto">
<div class="text-field mx-auto bg-dark bg-darken-3 rounded">
<h1 class="section-title">Visuals in Special Relativity</h1>
<p class="paragraph">
This animation illustrates how a forward-moving cube with various speeds looks to a static observer.
We see that at half the speed of light the cube already looks tilted, however, the back remains invisible to the observer.
At 90% of the speed of light, the backside gets visible to the observer since the cube is moving faster than the
component of the light ray pointing to the observer, hence the path is free quick enough.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md column-left">
<div class="ratio ratio-16x9 mx-auto my-auto">
<iframe src="https://www.youtube.com/embed/No61BiolceY?version=3&loop=1&playlist=No61BiolceY&rel=0" allowfullscreen>
</iframe>
</div>
</div>
<div class="col-md column-right my-auto">
<div class="text-field mx-auto bg-dark bg-darken-3 rounded">
<h1 class="section-title">Mnemonic to convert between Celsius °C and Fahrenheit °F</h1>
<p class="paragraph">
Between 0°C and 100°C are 180°F. This allows for a nice mnemonic to convert between those units using an angle as a guide for °F.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md column-left">
<div class="ratio mx-auto my-auto ratio-16x9">
<iframe src="https://www.youtube.com/embed/lfa_I6QbFc4?version=3&loop=1&playlist=lfa_I6QbFc4&rel=0" allowfullscreen>
</iframe>
</div>
</div>
<div class="col-md column-right my-auto">
<div class="text-field mx-auto bg-dark bg-darken-3 rounded">
<h1 class="section-title">Bohmian Mechanics</h1>
<p class="paragraph">
Bohmian Mechanics is a popular Interpretation of Quantum Mechanics among Mathematical Physicists.
The reason might be the axiomatic nature of the theory: The Schrödinger Equation is accompanied by a system of ODEs,
more specifically equations of motion for every particle. Those are constructed via the wave function.
The animation above shows the Bohmian trajectories of electrons in a double split experiment.
The result is a quite known interference pattern.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md column-left">
<div class="ratio ratio-16x9 mx-auto my-auto">
<iframe src="https://www.youtube.com/embed/uKrSCXCrz7c?version=3&loop=1&playlist=uKrSCXCrz7c&rel=0" allowfullscreen>
</iframe>
</div>
</div>
<div class="col-md column-right my-auto">
<div class="text-field mx-auto bg-dark bg-darken-3 rounded">
<h1 class="section-title">How far until the horizon?</h1>
<p class="paragraph">
Assuming a non-flat earth, how far can you look until you catch up to the horizon?
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md column-left">
<div class="ratio mx-auto my-auto ratio-16x9">
<iframe src="https://www.youtube.com/embed/jmb9hEyI_Oc?version=3&loop=1&playlist=jmb9hEyI_Oc&rel=0" allowfullscreen>
</iframe>
</div>
</div>
<div class="col-md column-right my-auto">
<div class="text-field mx-auto bg-dark bg-darken-3 rounded">
<h1 class="section-title">Slope without Derivative / Limits?!</h1>
<p class="paragraph">
Since the introduction to limits in calculus might be confusing, especially the concept of limits to calculate
the slope of a function, it is a nice treat to see that the same formula can be obtained in other ways.
Here is an example of how one can get the same formula for the derivative of a parabola utilizing
the convex/concave property that the tangent will never intersect the function again! I find this really useful
in education and teaching!
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md column-left">
<div class="ratio ratio-16x9 mx-auto my-auto">
<iframe src="https://www.youtube.com/embed/gco59n5tfrY?version=3&loop=1&playlist=gco59n5tfrY&rel=0" allowfullscreen>
</iframe>
</div>
</div>
<div class="col-md column-right my-auto">
<div class="text-field mx-auto bg-dark bg-darken-3 rounded">
<h1 class="section-title">Closed Knight's tour Mnemonic!</h1>
<p class="paragraph">
This is one of 26,534,728,821,064 closed, directed knight's tours (Hamiltonian Path), that is,
the knight visits every square once and only once. Remembering the four colored figures allows
you to complete a tour from any square of the board!
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md column-left">
<div class="ratio ratio-16x9 mx-auto my-auto">
<iframe src="https://www.youtube.com/embed/VstlL31toFQ?version=3&loop=1&playlist=VstlL31toFQ&rel=0" allowfullscreen>
</iframe>
</div>
</div>
<div class="col-md column-right my-auto">
<div class="text-field mx-auto bg-dark bg-darken-3 rounded">
<h1 class="section-title">Riemann Sum Animation!</h1>
<p class="paragraph">
A small animation of a middle Riemann sum to integrate a function. In this example, one can see the error
becoming lower with each increase of partitions!
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md column-left">
<div class="ratio ratio-16x9 mx-auto my-auto">
<iframe src="https://www.youtube.com/embed/VMxZhtEppjM?version=3&loop=1&playlist=VMxZhtEppjM&rel=0" allowfullscreen>
</iframe>
</div>
</div>
<div class="col-md column-right my-auto">
<div class="text-field mx-auto bg-dark bg-darken-3 rounded">
<h1 class="section-title">Mathematical Valentine's Day!</h1>
<p class="paragraph">
Happy Valentines Day! Two functions merge to one heart with a very special area.
</p>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-KsvD1yqQ1/1+IA7gi3P0tyJcT3vR+NdBTt13hSJ2lnve8agRGXTTyNaBYmCR/Nwi" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-nsg8ua9HAw1y0W1btsyWgBklPnCUAFLuTMS2G72MMONqmOymq585AcH49TLBQObG" crossorigin="anonymous"></script>
-->
</body>
</html>