-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcapstan_holding_force.html
117 lines (83 loc) · 4.12 KB
/
capstan_holding_force.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<title>Capstan Holding Force</title>
<link rel="shortcut icon" type="image/png" href="../favicon.png" />
<link rel="apple-touch-icon-precomposed" href="../apple-touch-icon-60x60.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../apple-touch-icon-76x76.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../apple-touch-icon-152x152.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../apple-touch-icon-120x120.png">
<meta content="width=device-width, minimum-scale=1, maximum-scale=1" name="viewport">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="script/mdj.math.library.js"></script>
<script type="text/javascript" src="script/capstan_force_calcs.js"></script>
<script type="text/javascript">$(document).bind("mobileinit", function () {$.mobile.ajaxEnabled = false;});</script>
<script type="text/javascript" src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<!-- ########################
##### HOLD PAGE #####
######################## -->
<div data-role="page" id="hold_page">
<script type="text/javascript">
LoadNavPanel("#hold_page");
$(document).on('pageinit', '#hold_page', function () {
calculateHold();
$("#calcKind").val("hold");
});
$(document).on('change', "#hold, #friction, #wraps, #calcKind, #load", function(){calculateHold();});
$(document).on('change', "#calcKind", function(){
changeKind(this.value);
calculateHold();
});
$(".calculated_values").prop("readonly",true);
</script>
<!-- ##### Panel ##### -->
<div data-role="panel" id="navpanel" class="navpanel" data-display="reveal" data-position="left">
<ul data-role="listview" id="navigation_links" data-theme="f">
</ul>
</div> <!-- Panel -->
<!-- ##### Header ##### -->
<div data-role="header" data-position="fixed" data-theme="b">
<a href="#navpanel" data-role="button" data-icon="bars" data-iconpos="notext">Navigation</a>
<h1>Capstan Holding Force</h1>
</div> <!-- header -->
<!-- ##### Content ##### -->
<div role="main" class="ui-content">
<label for="calcKind">Calculate for:</label>
<select name="calcKind" id="calcKind" data-mini="true">
<option value="Calculate_null" disabled>Calculate for:</option>
<option value="hold" >Holding Force</option>
<option value="load">Load Force</option>
</select>
<label for="load">Load:</label>
<input class="user_values" type="number" data-clear-btn="true" id="load" value="500" step="10" min="1" maxlength="10" />
<label for="wraps">Wraps:</label>
<input class="user_values" type="number" data-clear-btn="true" id="wraps" value="0.5" step="0.25" min="0" maxlength="3" />
<label for="friction">Coef. frict:</label>
<input class="user_values" type="number" data-clear-btn="true" id="friction" value="0.3" step="0.01" min="0" maxlength="3" />
<label for="hold">Req'd Hold Force:</label>
<input class="calculated_values" type="number" data-clear-btn="true" id="hold" min="0"/>
</div> <!-- Content -->
<!-- ##### Footer ##### -->
<div data-role="footer" data-position="fixed" data-theme="b">
<div data-role="controlgroup" data-type="horizontal" align="center">
<a href="https://formulae.scenic-shop.com/forces/capstan_holding_force/" data-role="button" id="formula" data-icon="gear">Formulas</a>
<a href="#diagram" data-role="button" id="capstan_diagram" data-icon="info">Diagram</a>
<a href="disclaimer.html" data-role="button" data-rel="dialog">Disclaimer</a>
</div>
</div> <!-- Footer -->
</div> <!-- Page -->
<!-- ##### DIAGRAM ##### -->
<div data-role="page" id="diagram" data-dialog="true">
<div data-role="header" data-position="fixed" data-theme="b">
<h1>Capstan Diagram</h1>
</div><!-- /header -->
<div data-role="content">
<h1> <img class="centered" src="image/capstan_hold.jpg" alt="Diagram" /> </h1>
</div>
</div> <!-- Page -->
</body>
</html>