-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCircle.html
More file actions
40 lines (30 loc) · 1.88 KB
/
Circle.html
File metadata and controls
40 lines (30 loc) · 1.88 KB
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
<html>
<head>
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="extends.css">
</head>
<body class="w3-light-blue">
<div class="w3-light-green w3-bar w3-leftbar w3-container w3-border-green w3-padding">
<button class="w3-button w3-teal w3-xlarge w3-right" onclick="w3_open()">☰</button>
<h1><b>Simple Harmonic Motion - Introduction</b></h1>
</div>
<br>
<!--p>ตรงนี้<p-->
<div class="w3-container w3-animate-opacity">
การหาปริมาณต่างๆ ที่เกี่ยวข้องกับการเคลื่อนที่แบบซิมเปิ้ลฮาร์โมนิก เช่น การกระจัด ความเร็ว และความเร่งของนุภาค ณ ตำแหน่งต่างๆ เมื่อเวลาผ่านไป t ทั้งในแนวระดับและในแนวดิ่ง สามารถหาได้โดยใช้ความรู้เกี่ยวกับการเคลื่อนที่ในแนววงกลม
<br>เมื่อเวลาผ่านไป t ให้อนุภาคเคลื่อนที่ในแนวเฉพาะส่วนโค้งของวงกลมจากตำแหน่ง A ไปอยู่ตำแหน่ง B ทำมุมที่จุดศูนย์กลาง ซึ่งเท่ากับ ดังรูป
</div>
<script>
function w3_open() {
/*document.getElementById("mySidebar").style.width = "100%";
document.getElementById("mySidebar").style.display = "block";*/
window.location = "Selection.html";
}
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
}
w3_close();
</script>
</script>
</body>
</html>