Reset file to the version in master branch

This commit is contained in:
lisazeyen 2024-04-15 08:45:51 +02:00
parent 1a51414550
commit f3e3113b89

View File

@ -155,7 +155,7 @@ def _add_land_use_constraint(n):
def _add_land_use_constraint_m(n, planning_horizons, config): def _add_land_use_constraint_m(n, planning_horizons, config):
# if generators clustering is lower than network clustering, land_use accounting is at generators clusters # if generators clustering is lower than network clustering, land_use accounting is at generators clusters
grouping_years = config["existing_capacities"]["grouping_years"] grouping_years = config["existing_capacities"]["grouping_years_power"]
current_horizon = snakemake.wildcards.planning_horizons current_horizon = snakemake.wildcards.planning_horizons
for carrier in ["solar", "onwind", "offwind-ac", "offwind-dc"]: for carrier in ["solar", "onwind", "offwind-ac", "offwind-dc"]:
@ -923,19 +923,18 @@ def solve_network(n, config, solving, **kwargs):
return n return n
# %%
if __name__ == "__main__": if __name__ == "__main__":
if "snakemake" not in globals(): if "snakemake" not in globals():
from _helpers import mock_snakemake from _helpers import mock_snakemake
snakemake = mock_snakemake( snakemake = mock_snakemake(
"solve_sector_network", "solve_sector_network",
# configfiles="../config/test/config.perfect.yaml", configfiles="../config/test/config.perfect.yaml",
simpl="", simpl="",
opts="", opts="",
clusters="37", clusters="37",
ll="v1.0", ll="v1.0",
sector_opts="730H-T-H-B-I-A-dist1", sector_opts="CO2L0-1H-T-H-B-I-A-dist1",
planning_horizons="2030", planning_horizons="2030",
) )
configure_logging(snakemake) configure_logging(snakemake)