-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (82 loc) · 3.28 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>Geothermal | jonathanpezzino.com</title>
<analytics-tag></analytics-tag>
<script src="./lib/jquery-3.7.0.min.js"></script>
<link href="./lib/mui.min.css" rel="stylesheet" type="text/css"/>
<script src="./lib/mui.min.js"></script>
<script type='text/javascript'>
$(document).ready(function () {
/* break us out of any containing iframes */
if (top !== self) {
top.location.replace(self.location.href);
}
$('#domain-breadcrumb').html(`<a href="${location.origin}">${location.hostname}</a>`)
})
</script>
<style>
#domain-breadcrumb {
font-size: 15px;
opacity: 0.5;
}
.resource-images {
max-width: 66%;
}
.resource-images img {
max-width: 100%;
}
</style>
</head>
<body>
<div class="mui-container-fluid" style="max-width: 66%;">
<div class="mui-panel">
<h1 class="mui--text-title">
<span id="domain-breadcrumb" role="navigation"></span>
<div class="mui-divider"></div>
<br/>
Geothermal
</h1>
<div class="mui--text-body1">
<div>
<h2 class="mui--text-subhead">Tools</h2>
<ul>
<li><a href='https://gtp.scientificwebservices.com/geophires'>GEOPHIRES</a></li>
<li><a href='https://gtp.scientificwebservices.com/hip-ra'>HIP-RA</a></li>
<li><a href='./explorer'>Direct-Use Heat Explorer</a></li>
</ul>
</div>
<div>
<h2 class="mui--text-subhead">Resources</h2>
<ul>
<li>
<a href="https://liftoff.energy.gov/next-generation-geothermal-power/" target="_blank">
DOE Next-Generation Geothermal Power Commercial Liftoff Report (2024; energy.gov)
</a>
</li>
<li>
<a href="https://www.nrel.gov/geothermal/techno-economic-analysis.html" target="_blank">NREL
Geothermal Data and Tools (nrel.gov)</a>
</li>
<li><a href="https://energy.utexas.edu/research/geothermal-texas" target="_blank">The Future of
Geothermal in Texas (2023; utexas.edu)</a></li>
<li>
<a href="https://www.scirp.org/pdf/ojg_2024021914022700.pdf" target="_blank">
Conventional Geothermal Systems and
Unconventional Geothermal Developments: An
Overview</a>. Khodayar, M. and Björnsson, S. (2024).
</li>
</ul>
<div class="resource-images">
<img src="geothermal-energy-abundance.png"/>
<img src="global-geothermal-energy-2050.png"/>
</div>
</div>
</div>
</div>
</div>
</body>
</html>