Skip to content

Commit 40d7104

Browse files
Biomass sankey improvements (#3399)
* Move old biomass sankey queries to separate folder * Restructure bio queries in general folder * Add biogas and greengas queries for biomass sankey * Update greengas queries to electricity, heat and hydrogen * Rewrite existing greengas final demand queries * Final demand queries for greengas * Greengas queries * Minor fixes in biogas queries * Corrections in heat, electricity, hydrogen production queries * Correct for greengas to biofuels in queries * Final demand queries wood pellets * Queries for wood pellets to E and H production * Loss query wood pellets * Conversion queries torrefied biomass pellets * Minor corrections in wood pellets flows * Biogenic waste to electricity and heat generation queries * Biokerosene flow queries * Minor correction * Biokerosene queries for biomass sankey' * Biokerosene final demand and export queries * Biodiesel queries for biomass sankey * Bionaphtha flows * Queries for bioethanol, bio-LNG, biomethanol and bio_pyrolysis_oil * Bio-oil queries for biomass sankey * Biogenic waste fischer-tropsch flows * Biogenic waste to biomethanol flows * Biogenic waste to bio pyrolysis oil flows * Industry transformation flows in biomass sankey * Remove old biomass sankey queries including mechanical turk queries * Biomass sankey mechanical turk (#3400) * WIP changes for biomass sankey * WIP changes for biomass sankey * Update biomass sankey mech turk queries' * Updating mechanical turk queries for biomass sankey spec * Remove unnecessary changes * Minor updates to query comments --------- Co-authored-by: Kyra de Haan <kyra.dehaan@quintel.com> * Update conversion from network gas to heat query * Update network gas to heat query --------- Co-authored-by: kmkranenburg <150331345+kaskranenburgQ@users.noreply.github.com> Co-authored-by: Kas Kranenburg <kas.kranenburg@quintel.com>
1 parent 4841f5e commit 40d7104

File tree

402 files changed

+2716
-1382
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

402 files changed

+2716
-1382
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- query =
2+
DIVIDE(
3+
SUM(
4+
V(
5+
G(heat_production),
6+
"output_of_steam_hot_water * biogas_input_conversion"
7+
)
8+
),
9+
BILLIONS
10+
)
11+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- query =
2+
PRODUCT(
3+
Q(network_gas_in_source_of_heat_production),
4+
Q(share_of_sustainable_gas_in_gas_network)
5+
)
6+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- query =
2+
PRODUCT(
3+
Q(network_gas_in_source_of_hydrogen_production_excl_industry_transformation),
4+
Q(share_of_sustainable_gas_in_gas_network)
5+
)
6+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- query =
2+
DIVIDE(
3+
SUM(
4+
V(
5+
G(electricity_production),
6+
"output_of_electricity * wood_pellets_input_conversion"
7+
)
8+
),
9+
BILLIONS
10+
)
11+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- query =
2+
DIVIDE(
3+
SUM(
4+
V(
5+
G(heat_production),
6+
"output_of_steam_hot_water * wood_pellets_input_conversion"
7+
)
8+
),
9+
BILLIONS
10+
)
11+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- query =
2+
DIVIDE(
3+
SUM(
4+
V(
5+
Q(biofuels_producers),
6+
"output_of_greengas * dry_biomass_input_conversion"
7+
)
8+
),
9+
BILLIONS
10+
)
11+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- query =
2+
DIVIDE(
3+
SUM(
4+
V(
5+
Q(biofuels_producers),
6+
"output_of_greengas * wet_biomass_input_conversion"
7+
)
8+
),
9+
BILLIONS
10+
)
11+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- query =
2+
DIVIDE(
3+
SUM(
4+
V(
5+
G(electricity_production),
6+
"electricity_output_conversion / (1 - loss_output_conversion) * input_of_biogas"
7+
)
8+
),
9+
BILLIONS
10+
)
11+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- query =
2+
DIVIDE(
3+
SUM(
4+
V(
5+
G(electricity_production),
6+
"electricity_output_conversion / (1 - loss_output_conversion) * input_of_torrefied_biomass_pellets"
7+
)
8+
),
9+
BILLIONS
10+
)
11+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- query =
2+
DIVIDE(
3+
SUM(
4+
V(
5+
G(heat_production),
6+
"steam_hot_water_output_conversion / (1 - loss_output_conversion) * input_of_torrefied_biomass_pellets"
7+
)
8+
),
9+
BILLIONS
10+
)
11+
- unit = PJ

0 commit comments

Comments
 (0)