-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Motor Comparison Table</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Motor Comparison Table</h1>
<div id="filters">
<!-- Filters will be generated dynamically -->
</div>
<table id="motor-table">
<thead>
<tr>
<th>Name</th>
<th>Cooling</th>
<th>Rated Voltage (V)</th>
<th>Continuous Torque (Nm)</th>
<th>Peak Torque (Nm)</th>
<th>Max Rotation Speed (rpm)</th>
<th>Pole Pairs</th>
<th>Rotor Inertia (kg·cm²)</th>
<th>Diameter (mm)</th>
<th>Length (mm)</th>
<th>Weight (g)</th>
<th>Rotor Inner Diameter (mm)</th>
</tr>
</thead>
<tbody>
<!-- Motor data will be inserted here -->
</tbody>
</table>
<script src="script.js"></script>
</body>
</html>