-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVogel.html
103 lines (95 loc) · 4.14 KB
/
Vogel.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
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<!-- Plotly.js -->
<script src="ploty.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Construct IPR with Vogel Method</title>
</head>
<body>
<div id="sidebar">
<div class="toggle-btn" onclick="show()">
<span></span>
<span></span>
<span></span>
</div>
<ul>
<li><a href="Vogel.html">Vogel Method</a></li>
<li><a href="Standing.html">Standing Method</a></li>
</ul>
</div>
<div class="container" id="container">
<h2 class="title">IPR Curve Using Vogel Method</h2> <br>
<div class="row">
<div class="col-md-6">
<h4 class="sub-title">Reservoir Data</h4>
<div class="row">
<div class="col-md-6">
<label>Average Reservoir Pressure:</label>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Type Average Reservoir Pressure.." aria-label="Recipient's username" aria-describedby="basic-addon2" id="Pr">
<div class="input-group-append">
<span class="input-group-text" id="basic-addon2">psig</span>
</div>
</div>
</div>
<div class="col-md-6">
<label>Bubble Point Pressure Pressure:</label>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Type Bubble Point Pressure Pressure" aria-label="Recipient's username" aria-describedby="basic-addon2" id="Pb">
<div class="input-group-append">
<span class="input-group-text" id="basic-addon2">psig</span>
</div>
</div>
</div>
</div>
<h4 class="sub-title">Test Point:</h4>
<div class="row">
<div class="col-md-6">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Flow Rate" aria-label="Recipient's username" aria-describedby="basic-addon2" id="qTest">
<div class="input-group-append">
<span class="input-group-text" id="basic-addon2">STB/Day</span>
</div>
</div>
</div>
<div class="col-md-6">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Bottom hole flowing pressure" aria-label="Recipient's username" aria-describedby="basic-addon2" id="pTest">
<div class="input-group-append">
<span class="input-group-text" id="basic-addon2">psig</span>
</div>
</div>
</div>
</div>
<div class="row">
<button id="calc" class="btn btn-primary">Construct IPR</button>
</div>
<div class="row">
<h5 id="results"></h5>
</div>
<div class="row">
<div class="col-md-6"><input type="number" id="value-interval" class="form-control" placeholder="Value Interval"></div>
<button id="valueBtn" class="btn btn-success">Create Value Table</button>
</div>
<div class="row">
<table id="table" class="table table-striped">
</table>
</div>
</div>
<div class="col-md-6">
<div id="myDiv" class=""></div>
</div>
</div>
</div>
</div>
<p id="copyright">Developed by: <a href="https://www.facebook.com/almersawi" target="_blank">Islam Almersawi</a></p>
<p id="copyright2">Supervised By: <a href="https://www.facebook.com/Aagawish" target="_blank">Dr. Ahmed Gawish</a></p>
<script type="text/javascript" src="animation.js"></script>
<script type="text/javascript" src="main.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>