Spaces:
Sleeping
Sleeping
Update static/index.html
Browse files- static/index.html +27 -18
static/index.html
CHANGED
@@ -4,34 +4,43 @@
|
|
4 |
<head>
|
5 |
<meta charset="UTF-8">
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
-
<title>3D
|
8 |
<link rel="stylesheet" href="/static/styles.css">
|
9 |
</head>
|
10 |
<body>
|
11 |
<div id="container">
|
12 |
<div id="controls">
|
13 |
-
<h1>3D
|
14 |
-
<p>Adjust the masses
|
15 |
<div class="sphere-controls">
|
16 |
-
<h3>
|
17 |
-
<label>Mass: <input type="range" id="
|
18 |
-
<label>X: <input type="range" id="
|
19 |
-
<label>Y: <input type="range" id="
|
20 |
-
<label>Z: <input type="range" id="
|
21 |
</div>
|
22 |
<div class="sphere-controls">
|
23 |
-
<h3>
|
24 |
-
<label>Mass: <input type="range" id="
|
25 |
-
<label>X: <input type="range" id="
|
26 |
-
<label>Y: <input type="range" id="
|
27 |
-
<label>Z: <input type="range" id="
|
|
|
|
|
28 |
</div>
|
29 |
<div class="sphere-controls">
|
30 |
-
<h3>
|
31 |
-
<label>Mass: <input type="range" id="
|
32 |
-
<label>X: <input type="range" id="
|
33 |
-
<label>Y: <input type="range" id="
|
34 |
-
<label>Z: <input type="range" id="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
</div>
|
36 |
<button id="start-btn">Start Simulation</button>
|
37 |
<button id="reset-btn">Reset Simulation</button>
|
|
|
4 |
<head>
|
5 |
<meta charset="UTF-8">
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
+
<title>3D Solar System Fluid Simulator</title>
|
8 |
<link rel="stylesheet" href="/static/styles.css">
|
9 |
</head>
|
10 |
<body>
|
11 |
<div id="container">
|
12 |
<div id="controls">
|
13 |
+
<h1>3D Solar System Fluid Simulator</h1>
|
14 |
+
<p>Adjust the masses, positions, orbital velocities, and fluid interactions, then click "Start Simulation".</p>
|
15 |
<div class="sphere-controls">
|
16 |
+
<h3>Sun</h3>
|
17 |
+
<label>Mass (x10^26 kg): <input type="range" id="sun-mass" min="1" max="3" step="0.1" value="1.989"></label>
|
18 |
+
<label>X: <input type="range" id="sun-x" min="-10" max="10" value="0"></label>
|
19 |
+
<label>Y: <input type="range" id="sun-y" min="-10" max="10" value="0"></label>
|
20 |
+
<label>Z: <input type="range" id="sun-z" min="-10" max="10" value="0"></label>
|
21 |
</div>
|
22 |
<div class="sphere-controls">
|
23 |
+
<h3>Earth</h3>
|
24 |
+
<label>Mass (x10^26 kg): <input type="range" id="earth-mass" min="0.01" max="0.1" step="0.001" value="0.05972"></label>
|
25 |
+
<label>X: <input type="range" id="earth-x" min="-20" max="20" value="10"></label>
|
26 |
+
<label>Y: <input type="range" id="earth-y" min="-20" max="20" value="0"></label>
|
27 |
+
<label>Z: <input type="range" id="earth-z" min="-20" max="20" value="0"></label>
|
28 |
+
<label>Orbital Velocity (km/s): <input type="range" id="earth-orbital-velocity" min="0" max="0.05" step="0.001" value="0.0298"></label>
|
29 |
+
<label>Centripetal Force Scale: <input type="range" id="earth-centripetal" min="0.5" max="2" step="0.1" value="1"></label>
|
30 |
</div>
|
31 |
<div class="sphere-controls">
|
32 |
+
<h3>Mars</h3>
|
33 |
+
<label>Mass (x10^26 kg): <input type="range" id="mars-mass" min="0.001" max="0.01" step="0.0001" value="0.006417"></label>
|
34 |
+
<label>X: <input type="range" id="mars-x" min="-20" max="20" value="15"></label>
|
35 |
+
<label>Y: <input type="range" id="mars-y" min="-20" max="20" value="0"></label>
|
36 |
+
<label>Z: <input type="range" id="mars-z" min="-20" max="20" value="0"></label>
|
37 |
+
<label>Orbital Velocity (km/s): <input type="range" id="mars-orbital-velocity" min="0" max="0.05" step="0.001" value="0.0241"></label>
|
38 |
+
<label>Centripetal Force Scale: <input type="range" id="mars-centripetal" min="0.5" max="2" step="0.1" value="1"></label>
|
39 |
+
</div>
|
40 |
+
<div class="fluid-controls">
|
41 |
+
<h3>Fluid Interactions</h3>
|
42 |
+
<label>Friction (0-1): <input type="range" id="fluid-friction" min="0" max="1" step="0.01" value="0.9"></label>
|
43 |
+
<label>Deflection Strength: <input type="range" id="fluid-deflection" min="0" max="0.5" step="0.01" value="0.1"></label>
|
44 |
</div>
|
45 |
<button id="start-btn">Start Simulation</button>
|
46 |
<button id="reset-btn">Reset Simulation</button>
|