-
Notifications
You must be signed in to change notification settings - Fork 0
/
rbs.html
60 lines (59 loc) · 2.11 KB
/
rbs.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
<!DOCTYPE html>
<html>
<head>
<title>Ring-Based Solar Cost Analysis</title>
<!-- Load the Google Charts API-->
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<!-- load highcharts -->
<script src="js/highcharts.src.js"></script>
<script src="js/sankey.src.js"></script>
<!-- load our files -->
<script src="js/rbs.js"></script>
<link rel="stylesheet" href="css/solar-comparison-styles.css" />
</head>
<body>
<div class="solar-charts">
<div class="outputs">Ring-Based Solar Cost Analysis<br /></div>
<div class="outputs-new">
<div class="outputs-new-inner" id="RBScostsOutput">
<div class="output-item">
<div class="output-item-top">
<b id="RBSoverallSystemEfficiency" class="big-number"></b>
<span class="unit">%</span>
</div>
<div class="label">Overall System Efficiency</div>
</div>
<div class="output-item">
<div class="output-item-top">
<b id="RBScapitalCost" class="big-number"></b>
<span class="unit">B USD</span>
</div>
<div class="label">Capital Cost</div>
</div>
<div class="output-item">
<div class="output-item-top">
<b id="RBScostOfEnergy" class="big-number"></b>
<span class="unit">USD/kWh</span>
</div>
<div class="label">Cost Of Energy</div>
</div>
<div class="output-item">
<div class="output-item-top">
<b id="RBSrelativeCost" class="big-number"></b>
</div>
<div class="label">times wholesale price in the US ($0.05/kWh)</div>
</div>
</div>
<div id="output"></div>
</div>
<div class="row">
<div class="chart" id="RBSlossesSankey"></div>
<div class="table" id="RBSlossesTable"></div>
</div>
<div class="row">
<div class="chart" id="RBScostsSankey"></div>
<div class="table" id="RBScostsTable"></div>
</div>
</div>
</body>
</html>