-
Notifications
You must be signed in to change notification settings - Fork 1
/
chart.html
76 lines (65 loc) · 2.89 KB
/
chart.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
<!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="chart.js"></script>
</head>
<body onload="getTypeOrg();">
<div class="heading">
<div class="intro" id="waste">
<h1>Radioactive Waste from Fuel Cycles</h1>
<p>One of the consequences of a nuclear fuel cycle is the generation of
radioactive waste, including spent nuclear fuel. Different nuclear fuel
cycle choices result in both different amounts of spent nuclear fuel and
different locations where that fuel.</p>
<p>These figures show the amount of spent nuclear fuel generated by
different nuclear fuel cycles, categorized by where the waste is
located:</p>
<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>
<p>Operating any energy system, including a nuclear energy system, has a
variety of different costs. Different nuclear fuel cycle choices result
in both different total costs and different distributions of those
costs.</p>
<p>These figures show the cost of different fuel cycle options, broken down
into the following categories:</p>
<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" id="mit">
<img src="http://cloudtimes.org/wp-content/uploads/2013/03/mit-logo.jpg"/>
</div>
<div class="logo" id="doe">
<img src="New_DOE_Logo_Color_042808.png"/>
</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>