-
Notifications
You must be signed in to change notification settings - Fork 9
Offshore wind queries #3386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Offshore wind queries #3386
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e7cea72
Add Offshore wind queries
kaskranenburgQ e57bf64
Move offshore wind queries to client folder
kaskranenburgQ 8e91ab1
Move queries to custom folder
kaskranenburgQ 841d3d2
Fixes from PR
kaskranenburgQ 761a510
Add dedicated hydrogen offshore wind electricity production queries
kaskranenburgQ f3aa786
Syntax improvements
kndehaan 4e53be2
Add curtailed hybrid offshore e production and modified hybrid hybrid…
kaskranenburgQ 7035c49
Minor improvement
kndehaan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
gqueries/custom/electricity_produced_from_hybrid_offshore_wind_curtailed.gql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| ) |
11 changes: 11 additions & 0 deletions
11
gqueries/custom/electricity_produced_from_hybrid_offshore_wind_for_hydrogen.gql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| ) |
8 changes: 8 additions & 0 deletions
8
gqueries/custom/electricity_produced_from_hybrid_offshore_wind_to_land.gql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| ) |
11 changes: 11 additions & 0 deletions
11
gqueries/custom/electricity_produced_from_hydrogen_offshore_wind_curtailed.gql
kndehaan marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)) | ||
| ) |
8 changes: 8 additions & 0 deletions
8
gqueries/custom/electricity_produced_from_hydrogen_offshore_wind_for_hydrogen.gql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| ) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.