Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 2 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Upcoming Release
.. The features listed below are not released yet, but will be part of the next release!
.. To use the features already you have to use the ``master`` branch.

* Align cost units for NREL battery data with PyPSA modeling, fetching investment cost and FOM for both `battery storage` and `battery inverter` instead of a single value for `battery storage`, which was instead representative of the full plant (battery storage + battery inverter).

* Updated indexing of DEA Excel data for PTES and revised capital cost and FOM assumptions for 2045 and 2050.


Expand Down
98 changes: 98 additions & 0 deletions inputs/US/manual_input_usa.csv

Large diffs are not rendered by default.

66 changes: 44 additions & 22 deletions outputs/US/costs_2020.csv

Large diffs are not rendered by default.

54 changes: 38 additions & 16 deletions outputs/US/costs_2025.csv

Large diffs are not rendered by default.

54 changes: 38 additions & 16 deletions outputs/US/costs_2030.csv

Large diffs are not rendered by default.

54 changes: 38 additions & 16 deletions outputs/US/costs_2035.csv

Large diffs are not rendered by default.

54 changes: 38 additions & 16 deletions outputs/US/costs_2040.csv

Large diffs are not rendered by default.

54 changes: 38 additions & 16 deletions outputs/US/costs_2045.csv

Large diffs are not rendered by default.

54 changes: 38 additions & 16 deletions outputs/US/costs_2050.csv

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion scripts/compile_cost_assumptions_usa.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def get_conversion_dictionary(flag: str) -> dict:
"Offshore Wind - Class 3": "offwind",
"Utility PV - Class 5": "solar-utility",
"Commercial PV - Class 1": "solar-rooftop",
"Utility-Scale Battery Storage - 6Hr": "battery storage",
"Biopower": "biomass",
"Biopower - Dedicated": "biomass",
"CSP - Class 2": "csp-tower",
Expand Down
14 changes: 7 additions & 7 deletions test/test_compile_cost_assumptions_usa.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,13 +381,13 @@ def test_duplicate_fuel_cost(config):
@pytest.mark.parametrize(
"year, expected",
[
(2020, (96, 9)),
(2025, (96, 9)),
(2030, (96, 9)),
(2035, (96, 9)),
(2040, (96, 9)),
(2045, (96, 9)),
(2050, (96, 9)),
(2020, (122, 9)),
(2025, (122, 9)),
(2030, (122, 9)),
(2035, (122, 9)),
(2040, (122, 9)),
(2045, (122, 9)),
(2050, (122, 9)),
],
)
def test_pre_process_manual_input_usa(config, year, expected):
Expand Down