-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Diploma</title>
<script type="text/javascript" src="js/lib/plotly-latest.min.js"></script>
<script type="text/javascript" src="js/lib/jquery.min.js"></script>
<script type="text/javascript" src="js/classes/contour.js"></script>
<script type="text/javascript" src="js/classes/method.js"></script>
<script type="text/javascript" src="js/classes/gauss.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body>
<div id="condition">
Кількість вузлів: <input type="text" name="n-count" id="n-count" value="110"><br>
Початок графіку, х: <input type="text" name="a-x" id="a-x" value="0.5"><br>
Початок графіку, y: <input type="text" name="a-y" id="a-y" value="0.9"><br>
Кінець графіку, х: <input type="text" name="b-x" id="b-x" value="4"><br>
Кінець графіку, y: <input type="text" name="b-y" id="b-y" value="3.8"><br>
Параметр a: <input type="text" name="model-a" id="model-a" value="1"><br>
Параметр alpha: <input type="text" name="model-alpha" id="model-alpha" value="0.5"><br>
Параметр delta: <input type="text" name="model-delta" id="model-delta" value="0.1"><br>
Радіус: <input type="text" name="model-radius" id="model-radius" value="1"><br>
Початок фігури, x: <input type="text" name="contour-x" id="contour-x" value="1"><br>
Початок фігури, y: <input type="text" name="contour-y" id="contour-y" value="3"><br>
Циркуляція: <input type="text" name="gamma-inf" id="gamma-inf" value="0"><br>
Швидкість тяги, x: <input type="text" name="v-inf-x" id="v-inf-x" value="1"><br>
Швидкість тяги, y: <input type="text" name="v-inf-y" id="v-inf-y" value="0"><br>
<!--Гафіка через 500 шагів: <input type="checkbox" name="forceCalc" id="forceCalc" /><br>-->
<input type="button" id="eval" value="Рахувати!">
</div>
<div id="solution" style="display: none">
<div id="view-controls">
<input name="view" class="view" type="radio" value="speed">Напрям швидкостей<br>
<input name="view" class="view" type="radio" value="speedConcentration">Розподіл швидості<br>
<input name="view" class="view" type="radio" value="pressure">Тиск<br>
<input name="view" class="view" type="radio" value="flowLines">Лінії току<br>
</div>
<br>
<br>
<input type="number" name="n-next" id="n-next" value="1">
<input type="button" id="next" value="Наступні n кроків">
<br>
<input type="button" id="auto" value="Автоматично">
<div id="graph"></div>
</div>
</body>
</html>