diff --git a/gqueries/custom/electricity_produced_from_hybrid_offshore_wind_curtailed.gql b/gqueries/custom/electricity_produced_from_hybrid_offshore_wind_curtailed.gql new file mode 100644 index 0000000000..c273291b45 --- /dev/null +++ b/gqueries/custom/electricity_produced_from_hybrid_offshore_wind_curtailed.gql @@ -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 + ) diff --git a/gqueries/custom/electricity_produced_from_hybrid_offshore_wind_for_hydrogen.gql b/gqueries/custom/electricity_produced_from_hybrid_offshore_wind_for_hydrogen.gql new file mode 100644 index 0000000000..5a0bde6051 --- /dev/null +++ b/gqueries/custom/electricity_produced_from_hybrid_offshore_wind_for_hydrogen.gql @@ -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 + ) diff --git a/gqueries/custom/electricity_produced_from_hybrid_offshore_wind_to_land.gql b/gqueries/custom/electricity_produced_from_hybrid_offshore_wind_to_land.gql new file mode 100644 index 0000000000..cbebde6970 --- /dev/null +++ b/gqueries/custom/electricity_produced_from_hybrid_offshore_wind_to_land.gql @@ -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 + ) diff --git a/gqueries/custom/electricity_produced_from_hydrogen_offshore_wind_curtailed.gql b/gqueries/custom/electricity_produced_from_hydrogen_offshore_wind_curtailed.gql new file mode 100644 index 0000000000..08c8db97a2 --- /dev/null +++ b/gqueries/custom/electricity_produced_from_hydrogen_offshore_wind_curtailed.gql @@ -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)) + ) diff --git a/gqueries/custom/electricity_produced_from_hydrogen_offshore_wind_for_hydrogen.gql b/gqueries/custom/electricity_produced_from_hydrogen_offshore_wind_for_hydrogen.gql new file mode 100644 index 0000000000..216daf305a --- /dev/null +++ b/gqueries/custom/electricity_produced_from_hydrogen_offshore_wind_for_hydrogen.gql @@ -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 + ) diff --git a/gqueries/custom/electricity_produced_from_offshore_wind.gql b/gqueries/custom/electricity_produced_from_offshore_wind.gql new file mode 100644 index 0000000000..519a5ee89f --- /dev/null +++ b/gqueries/custom/electricity_produced_from_offshore_wind.gql @@ -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 + )