-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (83 loc) · 3.67 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width">
<link href="saikyo.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="saikyo.js"></script>
<title>光のスペクトルの不確かさを求めます</title>
</head>
<body>
<h1>光のスペクトルの不確かさを求めます!!</h1>
<h3>
基礎科学実験A(以下、謁見)で不確かさを求めるのはめんどくさい!!
<br/>
ということで、ここでは謁見の光のスペクトルの分野の不確かさを求めてくれるぜ!!
<br/>
<select id="selbox" onchange="change();">
<option value="0">--None--</option>
<option value="1">Na発行時の回折角から格子定数dの逆数Nの不確かさを求めたい!!</option>
<option value="2">波長とその不確かさを求めたい!!</option>
</select>
</h3>
<div id="input1" style="display:none;">
<form>
<h4>
回折角:
<input type="number" name="do1" id="do1" min="0" max="180"/>度
<input type="number" name="fun1" id="fun1" step="0.1" min="0" max="60"/>分
<br/>
格子定数dの逆数N:
<input type="number" name="koushi1" id="koushi1" step="0.1" min="599.0" max="601.0"/> mm<sup>-1</sup>
<br/>
波の種類:
<form id="lambda1">
<input type="radio" id="d1" name="lambda"/>D1 <input type="radio" id="d2" name="lambda"/>D2
</form>
</h4>
<button id="button1">計算する</button>
<h3>
sin θ:
<output type="text" id="result1-0"></output>
<br/>
Nの不確かさ:
<output type="text" id="result1-1"></output>[mm<sup>-1</sup>]
</h3>
</form>
</div>
<div id="input2" style="display:none;">
<h4>
回折角:
<input type="number" name="do2" id="do2" min="0" max="180">度
<input type="number" name="fun2" id="fun2" step="0.1" min="0" max="60"/>分
<br/>
次数:
<input type="number" name="zisu" id="zisu" min="0" max="5"/>次
<br/>
格子定数の逆数Nの平均:
<input type="number" name="koushiava" id="koushiava" step="0.1"/> mm<sup>-1</sup>
<br/>
Nの不確かさ:
<input name="koushi2" id="koushi2"/> mm<sup>-1</sup>
</h4>
<button id="button2">計算する</button>
<h3>
sin θ:
<output type="text" id="result2-0"></output>
<br/>
波長:
<output type="text" id="result2-1"></output>[nm]
<br/>
波長の不確かさ:
<output type="text" id="result2-2"></output>[nm]
</h3>
</div>
<video preload src="d-tou_bomb.mp4" id="d-tou_bomb" controles="false" playsinline poster="d-tou.jpg">
<h4>D棟を爆破する素質がありません。</h4>
</video>
<h4>
<small>© 2022 へるくん</small>
</h4>
</body>
</html>