-
Notifications
You must be signed in to change notification settings - Fork 252
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
Keep existing conventional generation in sector network #1366
base: master
Are you sure you want to change the base?
Changes from all commits
3fd2e51
4b26289
57985c1
a6eb47f
03aa47d
28ff2f8
4adc3bd
37c6093
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -516,7 +516,7 @@ def add_carrier_buses(n, carrier, nodes=None): | |||||||||||||||||||||||||||||||||||||||
capital_cost=capital_cost, | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
fossils = ["coal", "gas", "oil", "lignite"] | ||||||||||||||||||||||||||||||||||||||||
fossils = ["coal", "gas", "oil", "lignite", "uranium"] | ||||||||||||||||||||||||||||||||||||||||
if options["fossil_fuels"] and carrier in fossils: | ||||||||||||||||||||||||||||||||||||||||
suffix = "" | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
@@ -1099,18 +1099,23 @@ def annuity_factor(v): | |||||||||||||||||||||||||||||||||||||||
return costs | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
def add_generation(n, costs): | ||||||||||||||||||||||||||||||||||||||||
def add_generation( | ||||||||||||||||||||||||||||||||||||||||
n, costs, existing_capacities=0, existing_efficiencies=None, existing_nodes=None | ||||||||||||||||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||||||||||||||||
logger.info("Adding electricity generation") | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
nodes = pop_layout.index | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
conventionals = options["conventional_generation"] | ||||||||||||||||||||||||||||||||||||||||
conventionals = options.get("conventional_generation", {}) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
for generator, carrier in conventionals.items(): | ||||||||||||||||||||||||||||||||||||||||
carrier_nodes = vars(spatial)[carrier].nodes | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
add_carrier_buses(n, carrier, carrier_nodes) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if existing_nodes is None: | ||||||||||||||||||||||||||||||||||||||||
nodes = pop_layout.index | ||||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||||
nodes = existing_nodes[generator] | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
n.add( | ||||||||||||||||||||||||||||||||||||||||
"Link", | ||||||||||||||||||||||||||||||||||||||||
nodes + " " + generator, | ||||||||||||||||||||||||||||||||||||||||
|
@@ -1121,14 +1126,61 @@ def add_generation(n, costs): | |||||||||||||||||||||||||||||||||||||||
* costs.at[generator, "VOM"], # NB: VOM is per MWel | ||||||||||||||||||||||||||||||||||||||||
capital_cost=costs.at[generator, "efficiency"] | ||||||||||||||||||||||||||||||||||||||||
* costs.at[generator, "fixed"], # NB: fixed cost is per MWel | ||||||||||||||||||||||||||||||||||||||||
p_nom_extendable=True, | ||||||||||||||||||||||||||||||||||||||||
p_nom_extendable=( | ||||||||||||||||||||||||||||||||||||||||
True | ||||||||||||||||||||||||||||||||||||||||
if generator | ||||||||||||||||||||||||||||||||||||||||
in snakemake.params.electricity.get("extendable_carriers", dict()).get( | ||||||||||||||||||||||||||||||||||||||||
"Generator", list() | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
else False | ||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||
p_nom=( | ||||||||||||||||||||||||||||||||||||||||
existing_capacities[generator] / existing_efficiencies[generator] | ||||||||||||||||||||||||||||||||||||||||
if not existing_capacities == 0 | ||||||||||||||||||||||||||||||||||||||||
else 0 | ||||||||||||||||||||||||||||||||||||||||
), # NB: existing capacities are MWel | ||||||||||||||||||||||||||||||||||||||||
p_max_pu=( | ||||||||||||||||||||||||||||||||||||||||
0.7 if carrier == "uranium" else 1 | ||||||||||||||||||||||||||||||||||||||||
), # be conservative for nuclear (maintenance or unplanned shut downs) | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+1142
to
+1144
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For consistency, it would be good to use this value in pypsa-eur/scripts/add_existing_baseyear.py Lines 319 to 337 in 728eacf
It would be even better to use the country specific values from data/nuclear_p_max_pu.csv. |
||||||||||||||||||||||||||||||||||||||||
carrier=generator, | ||||||||||||||||||||||||||||||||||||||||
efficiency=costs.at[generator, "efficiency"], | ||||||||||||||||||||||||||||||||||||||||
efficiency=( | ||||||||||||||||||||||||||||||||||||||||
existing_efficiencies[generator] | ||||||||||||||||||||||||||||||||||||||||
if existing_efficiencies is not None | ||||||||||||||||||||||||||||||||||||||||
else costs.at[generator, "efficiency"] | ||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||
efficiency2=costs.at[carrier, "CO2 intensity"], | ||||||||||||||||||||||||||||||||||||||||
lifetime=costs.at[generator, "lifetime"], | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
def get_capacities_from_elec(n, carriers, component): | ||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||
Gets capacities and efficiencies for {carrier} in n.{component} that were | ||||||||||||||||||||||||||||||||||||||||
previously assigned in add_electricity. | ||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||
component_list = ["generators", "storage_units", "links", "stores"] | ||||||||||||||||||||||||||||||||||||||||
component_dict = {name: getattr(n, name) for name in component_list} | ||||||||||||||||||||||||||||||||||||||||
e_nom_carriers = ["stores"] | ||||||||||||||||||||||||||||||||||||||||
nom_col = {x: "e_nom" if x in e_nom_carriers else "p_nom" for x in component_list} | ||||||||||||||||||||||||||||||||||||||||
eff_col = "efficiency" | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
capacity_dict = {} | ||||||||||||||||||||||||||||||||||||||||
efficiency_dict = {} | ||||||||||||||||||||||||||||||||||||||||
node_dict = {} | ||||||||||||||||||||||||||||||||||||||||
for carrier in carriers: | ||||||||||||||||||||||||||||||||||||||||
capacity_dict[carrier] = component_dict[component].query("carrier in @carrier")[ | ||||||||||||||||||||||||||||||||||||||||
nom_col[component] | ||||||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||||||
efficiency_dict[carrier] = component_dict[component].query( | ||||||||||||||||||||||||||||||||||||||||
"carrier in @carrier" | ||||||||||||||||||||||||||||||||||||||||
)[eff_col] | ||||||||||||||||||||||||||||||||||||||||
node_dict[carrier] = component_dict[component].query("carrier in @carrier")[ | ||||||||||||||||||||||||||||||||||||||||
"bus" | ||||||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
return capacity_dict, efficiency_dict, node_dict | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
def add_ammonia(n, costs): | ||||||||||||||||||||||||||||||||||||||||
logger.info("Adding ammonia carrier with synthesis, cracking and storage") | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
@@ -4538,6 +4590,17 @@ def add_enhanced_geothermal(n, egs_potentials, egs_overlap, costs): | |||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
pop_weighted_energy_totals.update(pop_weighted_heat_totals) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if options.get("keep_existing_capacities", False): | ||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
It would make sense to limit this functionality to overnight, as for myopic and perfect optimization existing caps are added later on. fyi @martacki |
||||||||||||||||||||||||||||||||||||||||
existing_capacities, existing_efficiencies, existing_nodes = ( | ||||||||||||||||||||||||||||||||||||||||
get_capacities_from_elec( | ||||||||||||||||||||||||||||||||||||||||
n, | ||||||||||||||||||||||||||||||||||||||||
carriers=options.get("conventional_generation").keys(), | ||||||||||||||||||||||||||||||||||||||||
component="generators", | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||||
existing_capacities, existing_efficiencies, existing_nodes = 0, None, None | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
landfall_lengths = { | ||||||||||||||||||||||||||||||||||||||||
tech: settings["landfall_length"] | ||||||||||||||||||||||||||||||||||||||||
for tech, settings in snakemake.params.renewable.items() | ||||||||||||||||||||||||||||||||||||||||
|
@@ -4551,7 +4614,7 @@ def add_enhanced_geothermal(n, egs_potentials, egs_overlap, costs): | |||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
spatial = define_spatial(pop_layout.index, options) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if snakemake.params.foresight in ["myopic", "perfect"]: | ||||||||||||||||||||||||||||||||||||||||
if snakemake.params.foresight in ["overnight", "myopic", "perfect"]: | ||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are these not all the cases, i.e. we could leave the if condition out completely now? |
||||||||||||||||||||||||||||||||||||||||
add_lifetime_wind_solar(n, costs) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
conventional = snakemake.params.conventional_carriers | ||||||||||||||||||||||||||||||||||||||||
|
@@ -4562,7 +4625,7 @@ def add_enhanced_geothermal(n, egs_potentials, egs_overlap, costs): | |||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
add_co2_tracking(n, costs, options) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
add_generation(n, costs) | ||||||||||||||||||||||||||||||||||||||||
add_generation(n, costs, existing_capacities, existing_efficiencies, existing_nodes) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
add_storage_and_grids(n, costs) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As
uranium
is not a fossil fuel, this would be less misleading.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@daniel-rdt