-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata_IPCC.py
28 lines (23 loc) · 1.08 KB
/
data_IPCC.py
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
# encoding: utf-8
#
# (c) Minh Ha-Duong 2017
# Creative Commons Attribution-ShareAlike 4.0 International
#
#
"""Emission factors.
Source : IPCC SRREN Methodology Annex II, Methodology
Lead Authors: William Moomaw (USA), Peter Burgherr (Switzerland), Garvin Heath (USA),
Manfred Lenzen (Australia, Germany), John Nyboer (Canada), Aviel Verbruggen (Belgium)
Table A.II.4 page 982 "Aggregated results of literature review of LCAs of GHG emissions
from electricity generation technologies (g CO2eq/kWh)"
Median of the literature reviewed for Coal to Solar.
(Min + Max)/2 for CCS technologies
"""
from init import pd
EMISSION_FACTOR = pd.Series({"Coal": 1001, "Gas": 469, "Oil": 840, "BigHydro": 4,
"SmallHydro": 4, "Biomass": 18, "Wind": 12, "Solar": 46,
"CoalCCS": (98 + 396) / 2, "GasCCS": (65 + 245) / 2,
"BioCCS": (- 1368 + (-594)) / 2}) # gCO2eq / kWh
#Assumption: VN imports from China and Lao
EMISSION_FACTOR["Import"] = 0.5 * EMISSION_FACTOR["Coal"] + 0.5 * EMISSION_FACTOR["BigHydro"]