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

Nuclear Capital Cost is set to zero #461

Open
2 tasks done
trevorb1 opened this issue Oct 28, 2024 · 1 comment
Open
2 tasks done

Nuclear Capital Cost is set to zero #461

trevorb1 opened this issue Oct 28, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@trevorb1
Copy link
Collaborator

trevorb1 commented Oct 28, 2024

Checklist

  • I am using the current master branch
  • I am running on an up-to-date pypsa-usa environment. Update via conda env update -f envs/environment.yaml

The Issue

I think with the switch to getting ATB data from PUDL, something happened with capital costs of nuclear and its not being brought in correctly. This is for a 2020 single period model run with technical retirement (which should not have nuclear as extendable, but in any case it should have correct costs). I have confirmed this is an issue for both electricity only and sector studies

image

Steps To Reproduce

No response

Expected Behavior

No response

Error Message

No response

Anything else?

No response

@trevorb1 trevorb1 added the bug Something isn't working label Oct 28, 2024
@ktehranchi
Copy link
Collaborator

Nuclear in the 2024 ATB doesn't start until 2030. We could fix this by setting the minimum technology year to 2030 but that would unnecessarily restrict earlier planning horizon years:

    tech_year = snakemake.wildcards.year
    if int(tech_year) < 2030:
        logger.warning(
            "Minimum cost year supported is 2030, using 2030 expansion costs.",
        )
    years = range(2030, 2051)
    tech_year = min(years, key=lambda x: abs(x - int(tech_year)))

Other solutions could be:

  • query the tech year requested, and if it doesn't exist we search a year higher
  • use an earlier ATB for planning horizons pre 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants