Skip to content
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

Costs for HVDC underground #1186

Open
lindnemi opened this issue Aug 1, 2024 · 0 comments
Open

Costs for HVDC underground #1186

lindnemi opened this issue Aug 1, 2024 · 0 comments

Comments

@lindnemi
Copy link
Contributor

lindnemi commented Aug 1, 2024

At the moment technology-data does not contain any costs for HVDC underground. The default assumption seems to be that cables are either submarine or overhead. For example in add_electricity:

costs = (
n.links.loc[dc_b, "length"]
* length_factor
* (
(1.0 - n.links.loc[dc_b, "underwater_fraction"])
* costs.at["HVDC overhead", "capital_cost"]
+ n.links.loc[dc_b, "underwater_fraction"]
* costs.at["HVDC submarine", "capital_cost"]
)
+ costs.at["HVDC inverter pair", "capital_cost"]
)
n.links.loc[dc_b, "capital_cost"] = costs

On the other hand, the default assumption for Offwind DC connections is, that cables are either submarine or underground.

connection_cost = (
snakemake.params.length_factor
* ds["average_distance"].to_pandas()
* (
underwater_fraction
* costs.at[tech + "-connection-submarine", "fixed"]
+ (1.0 - underwater_fraction)
* costs.at[tech + "-connection-underground", "fixed"]
)
)

Relatedely the HVDC submarine cost is at around 1000€, while offwind-connection-submarine is around 2000€. Why is this discrepancy there?

So here are a few things we could do:

  1. Add HVDC underground costs to technology-data. (And perhaps vice versa offwind-X-connection-overhead).
  2. Think about harmonizing cost data for Offwind-connection/HVDC
  3. Think about using the same default assumption for non-submarine DC lines (either overhead, or underground, consistently for Offwind-DC and Other-DC)

I made this observation, because in PyPSA-Ariadne we use NEP costs data, and the NEP does not contain any submarine costs, only underground costs. Our immediate fix will be to use the same costs for HVDC underground/ HVDC submarine/ Offwind-connection underground/offwind connection submarine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant