Skip to content

Commit 89a50cd

Browse files
Retreive missing queries (#3224)
* Retrieve query for export of network gas * Restoring network gas use for electricity and heat production queries * Style fix for query * Style fix for query * Style fix for query --------- Co-authored-by: Kas Kranenburg <[email protected]>
1 parent 6708a08 commit 89a50cd

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Export of network gas
2+
3+
- query =
4+
SUM(
5+
Q(export_of_natural_gas),
6+
Q(export_of_greengas)
7+
)
8+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Network gas used for collective heat production.
2+
3+
- query =
4+
DIVIDE(
5+
SUM(
6+
V(
7+
FILTER(
8+
G(heat_production),
9+
"steam_hot_water_output_conversion > 0.0 && electricity_output_conversion == 0.0"
10+
),
11+
"input_of_network_gas"
12+
)
13+
),
14+
BILLIONS
15+
)
16+
- unit = PJ
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Network gas used for electricity production
2+
3+
- query =
4+
DIVIDE(
5+
SUM(
6+
V(
7+
G(electricity_production),
8+
input_of_network_gas
9+
),
10+
V(
11+
energy_mixer_for_gas_power_fuel,
12+
input_of_network_gas
13+
)
14+
),
15+
BILLIONS
16+
)
17+
- unit = PJ

0 commit comments

Comments
 (0)