further adjustments where config_provider needs to be called
This commit is contained in:
parent
89d0fa24b6
commit
709b831e06
@ -47,7 +47,6 @@ RESULTS = "results/" + RDIR
|
|||||||
# RESOURCES = "resources/"
|
# RESOURCES = "resources/"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
localrules:
|
localrules:
|
||||||
purge,
|
purge,
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ rule add_existing_baseyear:
|
|||||||
busmap=resources("busmap_elec_s{simpl}_{clusters}.csv"),
|
busmap=resources("busmap_elec_s{simpl}_{clusters}.csv"),
|
||||||
clustered_pop_layout=resources("pop_layout_elec_s{simpl}_{clusters}.csv"),
|
clustered_pop_layout=resources("pop_layout_elec_s{simpl}_{clusters}.csv"),
|
||||||
costs=resources("costs_{}.csv".format(
|
costs=resources("costs_{}.csv".format(
|
||||||
config_provider("scenario", "planning_horizons", 0)
|
config_provider("scenario", "planning_horizons", 0)(w)
|
||||||
)),
|
)),
|
||||||
cop_soil_total=resources("cop_soil_total_elec_s{simpl}_{clusters}.nc"),
|
cop_soil_total=resources("cop_soil_total_elec_s{simpl}_{clusters}.nc"),
|
||||||
cop_air_total=resources("cop_air_total_elec_s{simpl}_{clusters}.nc"),
|
cop_air_total=resources("cop_air_total_elec_s{simpl}_{clusters}.nc"),
|
||||||
|
@ -584,8 +584,8 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
plot_balances()
|
plot_balances()
|
||||||
|
|
||||||
|
co2_budget = snakemake.params["co2_budget"]
|
||||||
if (
|
if (
|
||||||
snakemake.params["co2_budget"].startswith("cb")
|
isinstance(co2_budget, str) and co2_budget.startswith("cb")
|
||||||
or snakemake.params["foresight"] == "perfect"
|
) or snakemake.params["foresight"] == "perfect":
|
||||||
):
|
|
||||||
plot_carbon_budget_distribution(snakemake.input.eurostat)
|
plot_carbon_budget_distribution(snakemake.input.eurostat)
|
||||||
|
@ -62,7 +62,11 @@ import logging
|
|||||||
import numpy as np
|
import numpy as np
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import pypsa
|
import pypsa
|
||||||
from _helpers import configure_logging, update_config_from_wildcards, set_scenario_config
|
from _helpers import (
|
||||||
|
configure_logging,
|
||||||
|
set_scenario_config,
|
||||||
|
update_config_from_wildcards,
|
||||||
|
)
|
||||||
from add_electricity import load_costs, update_transmission_costs
|
from add_electricity import load_costs, update_transmission_costs
|
||||||
from pypsa.descriptors import expand_series
|
from pypsa.descriptors import expand_series
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user