Skip to content

Commit 0f7d2ae

Browse files
kaskranenburgQkndehaanmabijkerk
authored
Splitting non-energetic and delayed emissions in CO2 emissions chart (#3174)
* Splitting non-energetic and delayed emissions in co2 chart * Changing notes in node files plus query change * Removing added sentence in EN FD methanol file * Minor corrections notes and syntax * Minor changes for non energetic emission queries --------- Co-authored-by: Kyra de Haan <[email protected]> Co-authored-by: Mathijs Bijkerk <[email protected]>
1 parent a8c2994 commit 0f7d2ae

File tree

6 files changed

+44
-10
lines changed

6 files changed

+44
-10
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Includes non_energetic emissions from the fertilizer industry (SMR) and
2+
# non-energetic hydrogen final demand and non-energetic ammonia final demand
3+
# 'delayed' emissions in molecules_other_utilisation_co2 node
4+
# More non_energetic emissions may be added in the future
5+
6+
- unit = mt
7+
- query =
8+
SUM(
9+
Q(primary_co2_of_non_energetic),
10+
Q(primary_co2_of_delayed_emissions)
11+
)
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Includes non_energetic emissions from the fertilizer industry (SMR) and
2+
# non-energetic hydrogen final demand and non-energetic ammonia final demand
23
# 'delayed' emissions in molecules_other_utilisation_co2 node
34
# More non_energetic emissions may be added in the future
45

56
- unit = tonne
6-
- query = Q(primary_co2_of_non_energetic_and_delayed_emissions) * MILLIONS
7+
- query =
8+
PRODUCT(
9+
Q(primary_co2_of_non_energetic_and_delayed_emissions),
10+
MILLIONS
11+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Includes 'delayed' emissions in molecules_other_utilisation_co2 node
2+
3+
- unit = mt
4+
- query =
5+
DIVIDE(
6+
MV(
7+
molecules_other_utilisation_delayed_emitted_co2,
8+
demand
9+
),
10+
BILLIONS
11+
)

gqueries/output_elements/output_series/vertical_bar_46_co2_emissions/primary_co2_of_industry.gql

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Within the co2_emissions_refinery_products the node industry_final_demand_methanol_non_energetic
2+
# is queried. This node should actually be in the query "primary_co2_of_non_energetic" and
3+
# non-energetic nodes should be filtered out of the co2_emissions_refinery_products group for the
4+
# energy CO2 emission queries. This is not required for now, since the
5+
# industry_final_demand_methanol_non_energetic free_co2_factor is 1.0 and there are no other
6+
# refnery products for which the primary CO2 emissions should be taken into account.
7+
18
- unit = mt
29
- query =
310
DIVIDE(
@@ -22,4 +29,5 @@
2229
)
2330
)
2431
),
25-
BILLIONS)
32+
BILLIONS
33+
)
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# Includes non_energetic emissions from the fertilizer industry (SMR),
2-
# non-energetic hydrogen final demand, non-energetic ammonia final demand and
3-
# 'delayed' emissions in molecules_other_utilisation_co2 node
4-
# More non_energetic emissions may be added in the future
1+
# Includes non_energetic emissions from the fertilizer industry (SMR), non-energetic hydrogen final
2+
# demand and non-energetic ammonia final demand. More non_energetic emissions may be added in the
3+
# future. Non-energetic final demand of group co2_emissions_refinery_products in the industry sector
4+
# is not (yet) included in this query, which currently only consists of non-energetic methanol final
5+
# demand. Since its free_co2_factor is 1.0, this doesn't affect the results.
56

67
- unit = mt
78
- query =
@@ -14,9 +15,6 @@
1415
SECTOR(industry)),
1516
USE(non_energetic)),
1617
primary_co2_emission),
17-
MV(
18-
molecules_other_utilisation_delayed_emitted_co2,
19-
demand),
2018
NEG(
2119
SUM(
2220
MV(

gqueries/output_elements/output_series/vertical_bar_46_co2_emissions/total_net_co2_emissions.gql

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
Q(primary_co2_of_energy),
99
Q(primary_co2_of_households),
1010
Q(primary_co2_of_industry),
11-
Q(primary_co2_of_non_energetic_and_delayed_emissions),
11+
Q(primary_co2_of_non_energetic),
12+
Q(primary_co2_of_delayed_emissions),
1213
Q(primary_co2_of_other),
1314
Q(primary_co2_of_transport)
1415
)

0 commit comments

Comments
 (0)