-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.pug
139 lines (128 loc) · 6.03 KB
/
index.pug
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
133
134
135
136
137
138
139
doctype html
html(lang="en")
head
meta(charset="utf-8")
meta(name="description" content="We measure the gains from phasing out coal as the average social cost of carbon times the quantity of avoided emissions. By comparing the present value of benefits from avoided emissions against the present value of costs of ending coal and replacing it with renewables, our conservative baseline estimate is that the world can realize a net gain of $85 trillion.")
link(href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous")
title The Great Carbon Arbitrage
link(rel="stylesheet", type="text/css", href="public/style.css")
body.text-responsive
include includes/header.pug
script(src="js/carbon_arbitrage.js" type="module")
include includes/mixins.pug
div(style="width: 80%; margin:0 auto").p-5
p(style="text-align: center")
em
|We measure the gains from phasing out coal as the average social
|cost of carbon times the quantity of avoided emissions. By comparing
|the present value of benefits from avoided emissions against the
|present value of costs of ending coal and replacing it with renewables,
|our conservative baseline estimate is that the world can realize a net
|gain of $85 trillion. This global net social benefit can be attained
|through an international agreement to phase out coal. We also explore
|how this net benefit is distributed across countries and find that most
|countries would benefit from a global coal phase-out even without any
|compensatory cross-country transfers. Finally, we estimate the size of
|public funds that must be committed under a blended finance arrangement
|to finance the cost of replacing coal with renewables.
p
|The main result of the paper can be explored in this page.
|Additionally, you can explore the climate financing needed to phase
|out coal by
a(href="climate_financing_map.html") country
|
|or
a(href="climate_financing.html") region
|, or as an
a(href="climate_financing_yearly.html") annual timeseries
|. Feel free to pick your own parameters to generate the results (the
|parameters are set to the baseline settings of the paper by default).
p
| To get an overview of how the numbers are calculated, you may read the brief
a(href="https://github.com/ox-inet-resilience/carbon_arbitrage_code/blob/main/public/back_of_the_envelope.py") back-of-the envelope calculation
|
|of the cost and benefit using only public data from IEA, NGFS, and Our World in Data.
div.d-flex.flex-column.flex-lg-row.justify-content-center
// Input
div(class="d-flex flex-wrap py-3 mb-4").mx-auto.me-lg-3.px-3
.flex-column
+sccSlider
+timeHorizon
include includes/common_user_inputs.pug
+discountRate
+energyStorage
// Output
div(style="width:700px").mx-auto.ms-lg-3.px-3
h4 Result
table.table.table-hover
tr
td Present value of benefits of phasing out coal (in trillion dollars)
td
output#pv-benefits 114.04
tr
td
|Present value of costs of phasing out coal (in trillion dollars)
+moreInfo("Consists of the opportunity costs of coal and investment costs in replacement (renewable) energy.")
td
output#pv-costs 29.03
tr
td
|
|Opportunity costs (in trillion dollars)
+moreInfo("Present value of missed free cash flows of coal companies resulting from phasing out coal.")
td
output#opportunity-costs 0.05
tr
td
|
|Investment costs (in trillion dollars)
td
output#investment-costs 28.98
tr.table-success
td
|Carbon arbitrage (in trillion dollars)
+moreInfo("Difference between present value of benefits and costs of phasing out coal.")
td
output#carbon-arbitrage 85.01
tr.table-success
td
|Carbon arbitrage relative to world GDP
+moreInfo("Carbon arbitrage relative to GDP every year from t+2 until time T, where t+2=2024 and T=time horizon of carbon arbitrage.")
td
output#carbon-arbitrage-relative-gdp 1.3 %
tr.table-success
td Carbon arbitrage (in dollars) per tonne of coal production
td
output#carbon-arbitrage-per-tcoal 136
tr.table-success
td
|Carbon arbitrage (in dollars) per tCO
sub 2
td
output#carbon-arbitrage-per-tco2 60
tr
td Total coal production prevented (Giga Tonnes)
td
output#coal-production-prevented 623.62
tr
td
|Total emissions prevented (GtCO
sub 2
|)
td
output#emissions-prevented 1425.55
tr
td
|Further temperature increase — on top of 1.1 ℃
br
|already observed — prevented
td
output#temperature-increase 2.14
//include includes/footer.pug
script(src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous")
// Needed to enable Bootstrap tooltips
script(src="js/enable_tooltips.js")
script(type="module").
import {calculate} from "./js/carbon_arbitrage.js"
window.calculate = calculate
calculate()