Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Final demand of biogenic portion of oil and derivatives in industry (energetic use)
#
# This calculates the biogenic share of the crude oil final demand node only.
# It does not include bionaphtha, which is tracked separately in
# final_demand_of_biomass_products_in_industry_energetic.
#
# The biogenic share covers only: biodiesel, bio_kerosene, and bio_oil inputs
# to the industry_final_demand_crude_oil node.

- unit = PJ
- query =
DIVIDE(
PRODUCT(
V(industry_final_demand_crude_oil, demand),
Q(share_of_biogenic_in_industry_final_demand_crude_oil_energetic)
),
BILLIONS
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Final demand of biogenic portion of oil and derivatives in industry (non-energetic use)
#
# This calculates the biogenic share of the crude oil final demand node only.
# It does not include bionaphtha, which is tracked separately in
# final_demand_of_biomass_products_in_industry_non_energetic.
#
# The biogenic share covers only: biodiesel, bio_kerosene, and bio_oil inputs
# to the industry_final_demand_crude_oil_non_energetic node.

- unit = PJ
- query =
DIVIDE(
PRODUCT(
V(industry_final_demand_crude_oil_non_energetic, demand),
Q(share_of_biogenic_in_industry_final_demand_crude_oil_non_energetic)
),
BILLIONS
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Final demand of biogenic oil and derivatives in agriculture (energetic use)

- unit = PJ
- query =
PRODUCT(
Q(final_demand_of_oil_and_derivatives_in_agriculture_energetic),
Q(share_of_biogenic_in_agriculture_final_demand_crude_oil_energetic)
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Final demand of biogenic oil and derivatives in buildings (energetic use)

- unit = PJ
- query =
PRODUCT(
Q(final_demand_of_oil_and_derivatives_in_buildings_energetic),
Q(share_of_biogenic_in_buildings_final_demand_crude_oil_energetic)
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Final demand of biogenic oil and derivatives in households (energetic use)

- unit = PJ
- query =
PRODUCT(
Q(final_demand_of_oil_and_derivatives_in_households_energetic),
Q(share_of_biogenic_in_households_final_demand_crude_oil_energetic)
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Final demand of non-biogenic portion of oil and derivatives in industry (energetic use)
#
# This calculates the non-biogenic share of the crude oil final demand node only.
# It does not include naphtha, which is tracked separately in
# final_demand_of_oil_and_derivatives_in_industry_energetic.
#
# The non-biogenic share covers: diesel, kerosene, lpg, heavy_fuel_oil, and
# crude_oil inputs to the industry_final_demand_crude_oil node.

- unit = PJ
- query =
DIVIDE(
PRODUCT(
V(industry_final_demand_crude_oil, demand),
Q(share_of_non_biogenic_in_industry_final_demand_crude_oil_energetic)
),
BILLIONS
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Final demand of non-biogenic portion of oil and derivatives in industry (non-energetic use)
#
# This calculates the non-biogenic share of the crude oil final demand node only.
# It does not include naphtha, which is tracked separately in
# final_demand_of_oil_and_derivatives_in_industry_non_energetic.
#
# The non-biogenic share covers: diesel, kerosene, lpg, heavy_fuel_oil, and
# crude_oil inputs to the industry_final_demand_crude_oil_non_energetic node.

- unit = PJ
- query =
DIVIDE(
PRODUCT(
V(industry_final_demand_crude_oil_non_energetic, demand),
Q(share_of_non_biogenic_in_industry_final_demand_crude_oil_non_energetic)
),
BILLIONS
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Final demand of non-biogenic oil and derivatives in agriculture (energetic use)

- unit = PJ
- query =
PRODUCT(
Q(final_demand_of_oil_and_derivatives_in_agriculture_energetic),
Q(share_of_non_biogenic_in_agriculture_final_demand_crude_oil_energetic)
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Final demand of non-biogenic oil and derivatives in buildings (energetic use)

- unit = PJ
- query =
PRODUCT(
Q(final_demand_of_oil_and_derivatives_in_buildings_energetic),
Q(share_of_non_biogenic_in_buildings_final_demand_crude_oil_energetic)
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Final demand of non-biogenic oil and derivatives in households (energetic use)

- unit = PJ
- query =
PRODUCT(
Q(final_demand_of_oil_and_derivatives_in_households_energetic),
Q(share_of_non_biogenic_in_households_final_demand_crude_oil_energetic)
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Non-energetic final demand of the 'oil_and_derivatives' carrier group

- unit = PJ
- query =
DIVIDE(
SUM(
V(
FILTER(
FILTER(
FILTER(
EG(final_demand),"sector == :industry"
),
"!energetic?"
),
"crude_oil? || gasoline? || diesel? || lpg? || kerosene? || heavy_fuel_oil? || naphtha? || pyrolysis_oil?"
),
value
)
),
BILLIONS
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- query =
V(
agriculture_final_demand_crude_oil,
"biodiesel_input_conversion + bio_kerosene_input_conversion + bio_oil_input_conversion"
)
- unit = factor
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- query =
V(
buildings_final_demand_crude_oil,
"biodiesel_input_conversion + bio_kerosene_input_conversion + bio_oil_input_conversion"
)
- unit = factor
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- query =
V(
households_final_demand_crude_oil,
"biodiesel_input_conversion + bio_kerosene_input_conversion + bio_oil_input_conversion"
)
- unit = factor
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- query =
V(
industry_final_demand_crude_oil,
"biodiesel_input_conversion + bio_kerosene_input_conversion + bio_oil_input_conversion"
)
- unit = factor
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- query =
V(
industry_final_demand_crude_oil_non_energetic,
"biodiesel_input_conversion + bio_kerosene_input_conversion + bio_oil_input_conversion"
)
- unit = factor
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- query = 1 - Q(share_of_biogenic_in_agriculture_final_demand_crude_oil_energetic)
- unit = factor
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- query = 1 - Q(share_of_biogenic_in_buildings_final_demand_crude_oil_energetic)
- unit = factor
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- query = 1 - Q(share_of_biogenic_in_households_final_demand_crude_oil_energetic)
- unit = factor
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- query = 1 - Q(share_of_biogenic_in_industry_final_demand_crude_oil_energetic)
- unit = factor
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- query = 1 - Q(share_of_biogenic_in_industry_final_demand_crude_oil_non_energetic)
- unit = factor