-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathearth.html
More file actions
132 lines (132 loc) · 5.54 KB
/
Copy pathearth.html
File metadata and controls
132 lines (132 loc) · 5.54 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE HTML>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5QF2LGP');</script>
<!-- End Google Tag Manager -->
<html>
<head>
<title>Earthing Calculation Tools</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="Earthing Calculation Tools" />
<meta name="keywords" content="Earthing Calculation Tools" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" href="css/main-style.css"/>
<script defer src="js/init.js"></script>
<link rel="stylesheet" href="css/ext/katex.min.css">
<script defer src="js/ext/katex.min.js"></script>
<script defer src="js/ext/auto-render.min.js" onload="renderMathInElement(document.body);"></script>
<script defer src="js/earthing.js"></script>
</head>
<body class="left-sidebar">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5QF2LGP"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Header -->
<div id="header">
<div class="topnav" id="myTopnav"></div>
<!-- Logo -->
<div id="logo">
<h1><a href="#">Earthing Calculation Tools</a></h1>
</div>
</div>
<!-- Main -->
<div id="main" class="container">
<div class="row 50%">
<div>
<!-- Content -->
<div id="content">
<header>
<h1>EPR and Fault Current Split</h1>
</header>
<div class="row 50%">
<section class="box">
<form>
Earth Impedance (Ω)<input type="number" id="ER" value="2" />
Return Impedance (Ω)<input type="number" id="RR" value="0.18"/>
Parallel Impedance (Ω)<span id="PR" class="label "></span>
</form>
</section>
<section class="box">
<form>
Fault Current (kA)<input type="number" id="FC" value="8"/>
Return Current (kA)<span id="IR" class="label "></span>
Ground Return Current (kA)<span id="IG" class="label "></span>
</form>
</section>
<section class="box">
<form>
Earth Potential Rise (EPR)<span id="EPR" class="label"></span>
Return Current (%)<span id="IRp" class="label "></span>
Ground Return Current (%)<span id="IGp" class="label "></span>
</form>
</section>
</div>
<header>
<h1>Earth Grid Calculations</h1>
</header>
<div class="row 50%">
<section class="box">
<form>
Ground Resistivity \(\rho\) (mΩ)<input type="number" id="P"/>
\(Area\) (m<sup>2</sup>)<input type="number" id="AREA"/>
Radius of Circular Plate<br> of Same Area as Grid \(r\) (m)<span id="R" class="label "></span>
$$ r = \sqrt{Area \over \pi} $$
</form>
</section>
<section class="box">
<form>
Tape Depth \(h\) (m)<input type="number" id="H"/>
Total Tape Length \(L\) (m)<input type="number" id="L"/>
<!--Simplest Formula for <br>Earth Resistance \(R_e\) (Ω):-->
<style>#RE {display: none}</style>
<span hidden id="RE" class="label "></span> <br>
Rod Factor \(K_R\)<span id="KR" class="label "></span>
$$ K_R= 1 + {{n_R \times {l_R}^2} \over {10r^2}} $$
</form>
</section>
<section class="box">
<form>
Rod Number \(n_R\) <input type="number" id="NR"/>
Rod Length \(l_R\) (m)<input type="number" id="LR"/>
Earth Resistance Calculated <br>with Rods \(R_G\) (Ω):
<span id="RG" class="label "></span>
<!--$$ R_e = {\rho \over 4r} + {\rho \over {1 + n_R \times l_R}} $$<br>-->
\[R_G=\rho {\left({1+ {\left(r \over {r+2.5h}\right)} \over 8r \times K_R}+{1 \over L}\right)}\]
</form>
</section>
</div>
<header>
<h1>Ground Resistivity Correction</h1>
</header>
<div class="row 50%">
<section class="box">
<form>
Earth Resistance \(R\) (Ω)<input type="number" id="ERA"/>
</form>
</section>
<section class="box">
<form>
Corrected Resistivity \(\rho_A\) (mΩ)<span id="PA" class="label "></span>
</form>
</section>
<section class="box">
<form>
<p>$$ \rho_A = {R \times \rho \over R_G} $$</p>
</form>
</section>
</div>
</div>
</div>
</div>
</div>
<div id="copyright">
<ul>
<li>© Hans Juneby</li>
</ul>
</div>
</body>
</html>