-
Notifications
You must be signed in to change notification settings - Fork 5
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
Feature/es price #81
Merged
Merged
Feature/es price #81
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
b33e55d
Add energy supply prices to fuel price scenario
tomalrussell b0bc438
Use fuel_price scenario in energy supply config
tomalrussell 6dba3e1
Read fuel_price in ES wrapper
tomalrussell ed7846e
Fix ES price scenario units
tomalrussell e051921
Drop energy_supply_toy model run (duplicate of energy_supply_minimal)
tomalrussell 22fe2ab
Simplify ES model inputs loading
tomalrussell 6193e98
Write ES fuel prices from smif input
tomalrussell 3dc4c46
Include baseline fuel price scenario data
tomalrussell 183ddd1
Drop unused cost_of_carbon
tomalrussell 572266a
Include biomass in ES prices
tomalrussell 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
This file contains 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,3 @@ | ||
name: es_fuel_types | ||
description: Fuel types used in the energy supply model | ||
elements: es_fuel_types.csv |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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,6 @@ | ||
name | ||
coal | ||
electricity | ||
gas | ||
nuclear | ||
oil |
This file contains 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,41 @@ | ||
timestep,seasons,energy_supply_price,es_fuel_types | ||
2015,1,31.9,oil | ||
2015,2,26.1,oil | ||
2015,3,26.1,oil | ||
2015,4,29,oil | ||
2020,1,31.9,oil | ||
2020,2,26.1,oil | ||
2020,3,26.1,oil | ||
2020,4,29,oil | ||
2015,1,31.9,nuclear | ||
2015,2,26.1,nuclear | ||
2015,3,26.1,nuclear | ||
2015,4,29,nuclear | ||
2020,1,31.9,nuclear | ||
2020,2,26.1,nuclear | ||
2020,3,26.1,nuclear | ||
2020,4,29,nuclear | ||
2015,1,31.9,gas | ||
2015,2,26.1,gas | ||
2015,3,26.1,gas | ||
2015,4,29,gas | ||
2020,1,31.9,gas | ||
2020,2,26.1,gas | ||
2020,3,26.1,gas | ||
2020,4,29,gas | ||
2015,1,44,coal | ||
2015,2,44,coal | ||
2015,3,44,coal | ||
2015,4,44,coal | ||
2020,1,44,coal | ||
2020,2,44,coal | ||
2020,3,44,coal | ||
2020,4,44,coal | ||
2015,1,31.9,electricity | ||
2015,2,26.1,electricity | ||
2015,3,26.1,electricity | ||
2015,4,29,electricity | ||
2020,1,31.9,electricity | ||
2020,2,26.1,electricity | ||
2020,3,26.1,electricity | ||
2020,4,29,electricity |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is GBP/MWh the correct unit for gas price? Might be mcm?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the natural gas price usually states in £/MWh (alternatively £/kWh)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest to leave the units unchanged @tomalrussell @willu47