Skip to content

Commit

Permalink
merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
lisazeyen committed Feb 16, 2024
2 parents c2d9c7b + bdfc3d0 commit ac67edb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.6.2
version: 0.7.0

# considered years for output data
years : [2020, 2025, 2030, 2035, 2040, 2045, 2050]
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.6'
version = u'0.7'
# The full version, including alpha/beta/rc tags.
release = u'0.6.2'
release = u'0.7.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 5 additions & 2 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
Release Notes
##########################################

Upcoming Release
================
.. Upcoming Release
.. ================
Technology-Data 0.7.0 (7 February 2024)
=======================================

* Updated to latest release of DEA renewable fuels (released January 2024). With the following changes
* The following technologies have updated assumptions: ['BioSNG', 'BtL', 'Fischer-Tropsch', 'Haber-Bosch', 'air separation unit', 'biogas', 'biogas CC', 'biogas plus hydrogen', 'biogas upgrading', 'biomass-to-methanol', 'electrobiofuels', 'electrolysis', 'methanolisation']
Expand Down
3 changes: 2 additions & 1 deletion scripts/compile_cost_assumptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1057,6 +1057,7 @@ def order_data(tech_data):
# ----- efficiencies ------
efficiency = df[(df.index.str.contains("efficiency") |
(df.index.str.contains("Hydrogen output, at LHV"))|
(df.index.str.contains("Hydrogen Output"))|
(df.index.str.contains("FT Liquids Output, MWh/MWh Total Input"))|
(df.index.str.contains("Methanol Output"))|
(df.index.str.contains("District heat Output"))|
Expand Down Expand Up @@ -1090,7 +1091,7 @@ def order_data(tech_data):
efficiency_heat = efficiency[with_heat_recovery].copy()
efficiency_heat["parameter"] = "efficiency-heat"
clean_df[tech] = pd.concat([clean_df[tech], efficiency_heat])
efficiency_h2 = efficiency[efficiency.index.str.contains("Hydrogen")].copy()
efficiency_h2 = efficiency[efficiency.index.str.contains("Hydrogen Output")].copy()
efficiency_h2["parameter"] = "efficiency"
clean_df[tech] = pd.concat([clean_df[tech], efficiency_h2])

Expand Down

0 comments on commit ac67edb

Please sign in to comment.