-
Notifications
You must be signed in to change notification settings - Fork 1
/
info.html
113 lines (94 loc) · 3.06 KB
/
info.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<link href="nv.d3.min.css" rel="stylesheet" type="text/css">
<link href="viz-exp.css" rel="stylesheet" type="text/css">
<script src="d3.v3.js"></script>
<script src="nv.d3.min.js"></script>
<script src="info.js"></script>
<style type="text/css">
text {
font-size: 11px;
pointer-events: none;
}
text.parent {
/* fill: #1f77b4; */
fill: purple;
}
circle {
fill: #ccc;
stroke: #999;
pointer-events: all;
}
circle.parent {
fill: #1f77b4;
stroke: steelblue;
}
circle.parent:hover {
stroke: #ff7f0e;
stroke-width: .5px;
}
circle.child {
pointer-events: none;
}
</style>
</head>
<body onload="getTypeOrg();">
<div class="heading">
<div class="intro" id="waste">
<h1>Radioactive Waste from Fuel Cycles</h1>
These figures show the amount of spent nuclear fuel generated by
different nuclear fuel cycles, categorized by where the waste is
located:
<ol>
<li>Wet Storage: Spent fuel that is stored in cooling pools at reactor
sites.</li>
<li>Dry Storage: Spent fuel that is stored above ground at reactor sites.</li>
<li>Repository: Spent fuel that is stored in a centralized geologic repository.</li>
<li>Reprocessed: Spent fuel that has been reprocessed for use in other reactors.</li>
</ol>
</div>
<div class="intro" id="cost">
<h1>Fuel Cycle Costs</h1>
These figures show the cost of different fuel cycle options, broken down
into the following categories:
<ol>
<li>Capital Costs: The costs to construct all the nuclear reactors that are
operating in the fuel cycle.</li>
<li>Operating Costs: The costs to operate all the nuclear reactors that are
operating in the fuel cycle.</li>
<li>Fuel Cycle Costs: All the costs involved in the management of nuclear
fuel except dispotal.</li>
<li>Disposal Costs: The costs to dispose of all the waste material from
the nuclear fuel cycle.</li>
</ol>
</div>
<div class="logo">
<div id="mit">
<img src="http://cloudtimes.org/wp-content/uploads/2013/03/mit-logo.jpg"/>
</div>
<div id="doe">
<img src="New_DOE_Logo_Color_042808.png"/>
</div>
<div id="dynamic">
<br /><br />
<label for=yearsel>Year</label>
2000
<input type=range min=2000 max=2100 value=2000 id=yearsel step=1
onchange="yearUpdate(value)" autocomplete="off">
2100<br/>
<output for=yearsel id=yearlabel>2000</output>
</div>
</div>
</div>
<div class="chartrow">
<div class="chart" id="chart1"><svg></svg><h3>Fuel Cycle 1</h3></div>
<div class="chart" id="chart2"><svg></svg><h3>Fuel Cycle 2</h3></div>
<div class="chart" id="chart3"><svg></svg><h3>Fuel Cycle 3</h3></div>
</div>
<div class="footer">
<h2 id="waste">Mass of Waste by Fuel Cycle</h2>
<h2 id="cost">Cost by Fuel Cycle</h2>
</div>
</body>