-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflow.html
More file actions
46 lines (45 loc) · 1.67 KB
/
Copy pathflow.html
File metadata and controls
46 lines (45 loc) · 1.67 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
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Friction Losses</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h2>Friction Losses for Flow through Pipe</h2><hr color="white">
<form>
<div class="form-group">
<label for="ewt">Weight of empty Bucket</label>
<input type="text" class="form-control" id="ewt" aria-describedby="">
</div>
<div class="form-group">
<label for="Rm">Manometric Reading (Rm)</label>
<input type="text" class="form-control" id="Rm" aria-describedby="">
</div>
<div class="form-group">
<label for="wt">Weight of water + bucket (kg)</label>
<input type="text" class="form-control" id="wt">
</div>
<div class="form-group">
<label for="time">Collection Time</label>
<input type="text" class="form-control" id="time">
</div>
<button type="submit" class="btn btn-primary" id="btn">Get Data</button>
</form>
<br><br><br>
<h5 id="new">Values Used:</h5>
<ol>
<li>Density of Water: 1000 kg/m<sup>3</sup></li>
<li>Diameter of pipe: 1.3 cm</li>
<li>Diameter of particle: 1.3 cm </li>
<li>Length between the pressure taps: 2 m</li>
<li>Viscosity of liquid: 0.001 kg/(ms)</li>
<li>Acceleration due to gravity: 9.81m/s<sup>2</sup></li>
<li>Density of CCl4: 1590 kg/m<sup>3</sup></li>
</ol>
<script src="js/flow.js">
</script>
</body>
</html>