-
Notifications
You must be signed in to change notification settings - Fork 0
/
case_study_ID.pug
106 lines (97 loc) · 3.83 KB
/
case_study_ID.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
doctype html
html(lang="en")
head
meta(charset="utf-8")
link(href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous")
title Case Study Indonesia
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
h3(style="text-align: center") Case Study: Indonesia
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
+timeHorizonIncluding2030
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 N/A
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 N/A
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 N/A
tr
td
|
|Investment costs (in trillion dollars)
td
output#investment-costs N/A
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 N/A
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 N/A
tr.table-success
td Carbon arbitrage (in dollars) per tonne of coal production
td
output#carbon-arbitrage-per-tcoal N/A
tr.table-success
td
|Carbon arbitrage (in dollars) per tCO
sub 2
td
output#carbon-arbitrage-per-tco2 N/A
tr
td Total coal production prevented (Giga Tonnes)
td
output#coal-production-prevented N/A
tr
td
|Total emissions prevented (GtCO
sub 2
|)
td
output#emissions-prevented N/A
tr
td
|Further temperature increase — on top of 1.1 ℃
br
|already observed — prevented
td
output#temperature-increase N/A
//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/case_study.js"
window.calculate = calculate
calculate()