-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnodes.html
43 lines (41 loc) · 2.3 KB
/
nodes.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8>
<title>Kerbal Ion Node Calculator</title>
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,700italic,400italic,900,900italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Numans' rel='stylesheet' type='text/css'>
<link href='css/css.css' rel='stylesheet' type='text/css'>
<style type="text/css">
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/jquery.cookie.js"></script>
<script src="js/js.js"></script>
<script src="js/tabler.js"></script>
</head>
<body class="node-tool">
<section class="wrap">
<form class="calc-form">
<fieldset>
<legend>Vectors</legend>
<label for="timeUT"><img src="img/alarm.png" width="25" height="25"> <input type="number" step="any" name="timeUT" id="timeUT" value="100000" /> Target Time (UT)</label><br/>
<label for="prograde-val"> <img src="img/Prograde.svg" width="25" height="25"/> <input type="number" step="any" name="prograde-val" id="prograde-val" value="0" /> Prograde (Δ m/s)</label><br/>
<label for="normal-val"> <img src="img/Normal.svg" width="25" height="25"/> <input type="number" step="any" name="normal-val" id="normal-val" value="0" /> Normal (Δ m/s)</label><br/>
<label for="radial-val"> <img src="img/Radial-in.svg" width="25" height="25"/> <input type="number" step="any" name="radial-val" id="radial-val" value="0" /> Radial (Δ m/s)</label>
</fieldset>
<fieldset>
<legend>Maneuver Constraints</legend>
<label for="delta-avail"><input type="number" step="any" name="delta-avail" id="delta-avail" value="300" /> Δ (m/s) per Maneuver</label><br/>
<label for="time-burn"><input type="number" step="any" name="time-burn" id="time-burn" value="1" /> Burn Time (Minutes)</label><br/>
<label for="time-recharge"><input type="number" step="any" name="time-recharge" id="time-recharge" value="30" /> Recharge Time (Minutes)</label>
</fieldset>
<button>Calculate</button>
</form>
<noscript type="text/html"><p id="no-js-msg">JavaScript is Required</p></noscript>
</section>
<section class="table-output"></section>
<script type="text/javascript" src="js/nodeinit.js"></script>
<!-- quick science grid test -->
<!-- <script src="js/quick.test.js"></script> -->
</body>
</html>