-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (47 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4U HSC Q16(b)</title>
<link rel="stylesheet" href="index.css">
<!-- github.com/abu-co - Copyright 2022 - All Rights Reserved. -->
</head>
<body>
<main>
<div style="text-align: center;">
<canvas id="main-canvas" width="800" height="500"></canvas>
</div>
<hr>
<form class="params" id="params">
<label for="t">Target Time of Flight (in seconds): </label>
<input type="number" id="t" name="t" min="0" step="any" value="7">
<br>
<label for="dt">Step Precision (Δt in seconds): </label>
<input type="number" id="dt" name="dt" min="0" max="1" step="any" value="0.001">
<br>
<label for="steps-per-tick">Steps Per Rendering Tick: </label>
<input type="number" id="steps-per-tick" name="steps-per-tick" min="1" step="1" value="100">
<br>
<label for="max-v-range">Initial <i>v<sub>0</sub></i> Value (in ms<sup>-1</sup>): </label>
<input type="number" id="v-init" name="v-init" min="0" max="100" step="any" value="36">
<br>
<label for="max-v-range">Stop When Uncertainty of <i>v<sub>0</sub></i> ≤ ±</label>
<input type="number" id="max-v-range" name="max-v-range" min="0" step="0.0005" value="0.001">
<br>
<label for="initial-leap">Initial Trial-And-Error Leap: </label>
<input type="number" id="initial-leap" name="initial-leap" min="0" step="any" value="10">
<br>
<label for="leap-factor">Leap Reduction Factor: </label>
<input type="number" id="leap-factor" , name="leap-factor" min="0.05" max="0.95" step="any" value="0.5">
<br>
<button type="submit" id="start">Start!</button>
</form>
<hr>
<pre id="output" class="output"></pre>
</main>
<footer>Made by <a href="https://github.com/abu-co" target="_blank">@abu-co</a> 2022.</footer>
<script type="module" src="js/main.js" defer></script>
</body>
</html>