Skip to content
Merged
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,8 @@
# Returns the produced electricity from hybrid offshore wind to curtailment.

- unit = PJ
- query =
DIVIDE(
V(energy_power_hybrid_curtailed_electricity, input_of_electricity),
BILLIONS
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Returns the produced electricity from hybrid offshore wind that goes to dedicated hydrogen production.

- unit = PJ
- query =
DIVIDE(
SUM(
V(energy_hydrogen_hybrid_electrolysis_wind_electricity, input_of_electricity),
NEG(V(energy_power_hybrid_to_offshore_network_electricity, output_of_electricity))
),
BILLIONS
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Returns the produced electricity of hybrid offshore wind that enters the onshore network.

- unit = PJ
- query =
DIVIDE(
V(energy_power_hybrid_from_offshore_network_electricity, output_of_electricity),
BILLIONS
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Returns the produced electricity of hydrogen dedicated offshore wind to curtailment.

- unit = PJ
- query =
SUM(
DIVIDE(
V(energy_hydrogen_wind_turbine_offshore, output_of_electricity),
BILLIONS
),
NEG(Q(electricity_produced_from_hydrogen_offshore_wind_for_hydrogen))
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Returns the produced electricity of hydrogen dedicated offshore wind to hydrogen production

- unit = PJ
- query =
DIVIDE(
V(energy_hydrogen_electrolysis_wind_electricity, input_of_electricity),
BILLIONS
)
8 changes: 8 additions & 0 deletions gqueries/custom/electricity_produced_from_offshore_wind.gql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Returns the produced electricity of regular offshore wind.

- unit = PJ
- query =
DIVIDE(
V(energy_power_wind_turbine_offshore, output_of_electricity),
BILLIONS
)