Skip to content

Commit 78dc415

Browse files
authored
Merge pull request #90 from staadecker/update_transmission_lifetime
Update transmission line lifetime to 85 years
2 parents 8d542cf + 55f29f6 commit 78dc415

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

REAM Model Changelog.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ completed runs.
88

99
Changes are listed from oldest (first line) to newest (last line of table).
1010

11-
| PR | Month | Change description |
11+
| PR | Estimated Merge Time (check PR for exact date) | Change description |
1212
| ---- | --- | ---------------------|
1313
| #12 | March 2021 | Use the middle of the period instead of the start as the cutoff for retirement and predetermined buildout. |
1414
| #15 | March 2021 | Fix bug where storage costs where being over-counted. |
@@ -18,4 +18,5 @@ Changes are listed from oldest (first line) to newest (last line of table).
1818
| #68 | June 2021 | Change financial params to 2018 dollars & 5% interest rate. Start using terrain multipliers (which now include the economic multiplier). |
1919
| #72 | July 2021 | Drop build and O&M costs of existing transmission lines. |
2020
| #89 | August 2021 | Change hydro module average flow constraint to a monthly constraint rather than per timeseries and change it to a <= rather than ==. |
21-
| #117 | January 2022 | Revert hydro module change (#89) to disallow curtailment of hydro (see #114). |
21+
| #90 | August 2021 | Change the lifetime of transmission lines from 20yr to 85yr |
22+
| #117 | January 2022 | Revert hydro module change (#89) to disallow curtailment of hydro (see #114). |

switch_model/wecc/get_inputs/get_inputs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,10 @@ def query_db(config, skip_cf):
337337
"trans_lifetime_yrs",
338338
"trans_fixed_om_fraction",
339339
],
340+
# See Issue #80 for reasoning behind the 85 year lifetime.
340341
f"""
341342
SELECT trans_capital_cost_per_mw_km,
342-
20 as trans_lifetime_yrs,
343+
85 as trans_lifetime_yrs,
343344
0.03 as trans_fixed_om_fraction
344345
FROM transmission_base_capital_cost
345346
WHERE transmission_base_capital_cost_scenario_id = {params.transmission_base_capital_cost_scenario_id}

0 commit comments

Comments
 (0)