-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (32 loc) · 1.6 KB
/
index.html
File metadata and controls
40 lines (32 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Physics Simulations - Ultraphysics</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i&display=swap&subset=greek,greek-ext,latin-ext" rel="stylesheet">
<link href="style.css" type="text/css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
</head>
<body>
<div class="centrecolumn">
<h1>Physics Simulations</h1>
<div class="simulationlist">
<div class="simulation">
<h3>The Three-Body Problem</h3>
<a href="three-body-problem/" title="The Three-Body Problem"> <img src="three-body-problem/preview2.png" /></a>
<p>
The three-body problem considers three or more massive objects that interact gravitationally
according to Newton's Law of Gravitation. The problem cannot be solved analytically, and must be solved by
computation.</p>
</div>
<div class="simulation">
<h3>Single Pendulum</h3>
<a href="single-pendulum/" title="Single Pendulum"> <img src="single-pendulum/preview1.png" /></a>
<p>
This simulation considers a single pendulum moving under gravity. Rather than simply model the motion using a sine function, this simulation calculates the forces acting on the pendulum, and determines the changes to the kinematic variables based on those.
</p>
</div>
</div>
</div>
</body>
</html>