-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
162 lines (148 loc) · 8.58 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Classical Mechanics Lab</title>
<meta name="description" content="Mechanics experiments" />
<meta name="author" content="Matías Micheletto" />
<meta property="og:title" content="Mechanichs Experiments">
<meta property="og:type" content="website">
<meta property="og:url" content="physics-experiments.herokuapp.com">
<meta property="og:description" content="Classical 3D mechanics experiments with ThreeJS">
<meta property="og:image" content="img/screenshot.png">
<link rel="icon" href="experiments/favicon.ico">
<link rel="stylesheet" href="css/icons.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<a class="navbar-brand" style="cursor: pointer;"><img width="50" height="50" src="img/logo.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto" style="width:100%; flex-direction: row-reverse;">
<li class="nav-item">
<a class="nav-link" title="Source code" href="https://github.com/matiasmicheletto/physics-experiments"
target="_blank">
<i class="material-icons">developer_mode</i></a></li>
<li class="nav-item"><a class="nav-link" title="About" data-toggle="modal" data-target="#about-modal"
style="cursor:pointer;"><i class="material-icons">info</i></a></li>
</ul>
</div>
</nav>
<div class="container">
<h2>Classical mechanics experiments</h2>
<div class="card-group">
<div class="card hoverable shadow">
<img src="img/screenshots/spring_mass.png" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Spring-mass system</h5>
<p class="card-text">A simple spring-mass system on a frictional surface.</p>
<a href="experiments/spring_mass.html" class="btn btn-sm btn-secondary">Run this experiment</a>
</div>
</div>
<div class="card hoverable shadow">
<img src="img/screenshots/ball_on_table.png" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Ball on table</h5>
<p class="card-text">A ball on a table attached to a box through a hole in the middle of the table.
</p>
<a href="experiments/ball_on_table.html" class="btn btn-sm btn-secondary">Run this experiment</a>
</div>
</div>
<div class="card hoverable shadow">
<img src="img/screenshots/gravitation.png" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Gravitation</h5>
<p class="card-text">A simulation of the movement of the moon around the earth.</p>
<a href="experiments/gravitation.html" class="btn btn-sm btn-secondary">Run this experiment</a>
</div>
</div>
</div>
<div class="card-group">
<div class="card hoverable shadow">
<img src="img/screenshots/inclined_plane.png" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Inclined plane</h5>
<p class="card-text">A sliding box over an inclined frictional surface.</p>
<a href="experiments/inclined_plane.html" class="btn btn-sm btn-secondary">Run this experiment</a>
</div>
</div>
<div class="card hoverable shadow">
<img src="img/screenshots/double_inclined_plane.png" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Double inclined plane</h5>
<p class="card-text">A pair of boxes sliding on different inclined planes and attached between each
other with a string.</p>
<a href="experiments/double_inclined_plane.html" class="btn btn-sm btn-secondary">Run this
experiment</a>
</div>
</div>
<div class="card hoverable shadow">
<img src="img/screenshots/ramp.png" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Ramp</h5>
<p class="card-text">A box sliding in a frictionless skate ramp with a short rough surface and
colliding with a spring.</p>
<a href="experiments/ramp.html" class="btn btn-sm btn-secondary">Run this experiment</a>
</div>
</div>
<div class="card hoverable shadow">
<img src="img/screenshots/pendulum_waves.png" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Pendulum waves</h5>
<p class="card-text">A set of pendulums of different lengths that create a wave effect.</p>
<a href="experiments/pendulum_waves.html" class="btn btn-sm btn-secondary">Run this experiment</a>
</div>
</div>
</div>
</div>
<div class="modal fade" id="about-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h4>About this software</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p style="font-size: 150%; line-height: 100%;">This is a small compendium of javascript 3D animations that allows you to perform mechanics
experiments with bodies and systems. Each experiment has a small control panel where you can adjust the different parameters and control the simulation.</p>
<br>
<div style="font-size: small;">
<h5>Design and implementation</h5>
Dr. Matías J. Micheletto <a
href="http://matiasmicheletto.github.io/">http://matiasmicheletto.github.io/</a>
<br>
Email: <a
href="mailto:matias.micheletto@uns.edu.ar?Subject=Ref.%20SimCirJM">matias.micheletto@uns.edu.ar</a>
<br>
Doc: <a
href="https://github.com/matiasmicheletto/physics-experiments">https://github.com/matiasmicheletto/physics-experiments</a>
</p>
<br><br>
<h5>Terms and conditions</h5>
<p>This program is free software: you can redistribute it and/or modify it under the terms of the
GNU General Public License as published by the Free Software Foundation, either version 3 of the
License.</p>
<p>This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details. You should have received a copy of the GNU General
Public License along with this program. If not, see http://www.gnu.org/licenses.</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-dark" data-dismiss="modal">Ok</button>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>