-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (107 loc) · 5.39 KB
/
index.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
<!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="3D Physics Simulations Of A-Level Physics Concepts. Simulate collisions, Snell's Law and projectile motion using SUVAT equations. Simulations in some cases also include downloadable data which can be manipulated further in spreadsheet software."
/>
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://fontlibrary.org/en/face/cmu-serif"/>
<link rel="stylesheet" href="https://use.typekit.net/fxw2jrd.css">
<link rel="stylesheet" href="https://www.physicsim.co.uk/styles/styles.css">
<link rel="stylesheet" href="https://www.physicsim.co.uk/styles/index-styles.css">
<title>Physicsim</title>
</head>
<body>
<nav class="nav-wrapper">
<a href="/">
<img class="nav-logo" src="assets/physicsim-logo-dark-transparent.png">
</a>
</nav>
<div class="landing-wrapper">
<h1 class="landing-title">Physicsim</h1>
<h2 class="landing-caption">3D Physics Simulations Of A-Level Physics Concepts</h2>
</div>
<div class="catalog-wrapper">
<div class="catalog-container">
<div class="catalog-item">
<h2 class="catalog-title">
Collisions
</h2>
<img class="catalog-img" src="assets/collisions-screenshot.png">
<p class="catalog-caption">
Discover the Principle of Conservation of Momentum in a 3D environment allowing control of position, mass and velocity.
</p>
<a class="catalog-btn" href="https://sim.physicsim.co.uk/collisions">Run</a>
</div>
<div class="catalog-item">
<h2 class="catalog-title">
Circular Motion
</h2>
<img class="catalog-img" src="assets/circular-motion-screenshot.png">
<p class="catalog-caption">
Experiment with circular motion and see how it links with simple harmonic motion equations.
</p>
<a class="catalog-btn" href="https://sim.physicsim.co.uk/circular-motion">Run</a>
</div>
<div class="catalog-item">
<h2 class="catalog-title">
Projectile Motion
</h2>
<img class="catalog-img" src="assets/projectile-motion-screenshot.png">
<p class="catalog-caption">
View how acceleration due to gravity applies and see how it impacts movement in different directions.
</p>
<a class="catalog-btn" href="https://sim.physicsim.co.uk/projectile-motion">Run</a>
</div>
<div class="catalog-item">
<h2 class="catalog-title">
Snell's Law
</h2>
<img class="catalog-img" src="assets/snells-law-screenshot.png">
<p class="catalog-caption">
See how Snell's Law of Refraction works in 3D and how light refracts at different refractive indexes.
</p>
<a class="catalog-btn" href="https://sim.physicsim.co.uk/snells-law">Run</a>
</div>
<div class="catalog-item">
<h2 class="catalog-title">
Cyclotron
</h2>
<img class="catalog-img" src="assets/cyclotron-screenshot.png">
<p class="catalog-caption">
Observe a Cyclotron slowed down and experiment with getting high accelerations. This simulation does not account for relativistic effects.
</p>
<a class="catalog-btn" href="https://sim.physicsim.co.uk/cyclotron">Run</a>
</div>
<div class="catalog-item">
<h2 class="catalog-title">
Alpha Particle Scattering
</h2>
<img class="catalog-img" src="assets/alpha-scattering-screenshot.png">
<p class="catalog-caption">
View Rutherford's famous alpha particle scattering experiment in 3D. Observe how increased velocity and/or increasing the charge changes deflection.
</p>
<a class="catalog-btn" href="https://sim.physicsim.co.uk/alpha-scattering">Run</a>
</div>
</div>
</div>
<p class="oldsite-wrapper">Looking for the old site? <a class="footer-link" href="https://legacy.physicsim.co.uk">Find it here!</a></p>
<footer class="footer-wrapper">
<div class="footer-container">
<p class="footer-txt--emphasis">
Copyright (©) 2024 Isaac Barker.
</p>
<p class="footer-txt--light">
<a class="footer-link" href="mailto:enquiries@physicsim.co.uk">enquiries@physicsim.co.uk</a> | <a class="footer-link" target="_blank" href="https://github.com/physic-sim">@physic-sim</a>
</p>
</div>
<div class="footer-container">
<a href="/" class="footer-link"><img class="footer-img--physicsim" src="assets/physicsim-logo-dark-transparent.png"></a>
<a href="https://www.isaacbarker.net"target="_"><img class="footer-img--ib-logo" src="assets/ib-logo.png"></a>
</div>
</footer>
</body>
</html>