adjust new rules to merged format
This commit is contained in:
parent
2072aa4a99
commit
546d9b0610
@ -266,6 +266,7 @@ lines:
|
|||||||
s_nom_max: .inf
|
s_nom_max: .inf
|
||||||
length_factor: 1.25
|
length_factor: 1.25
|
||||||
under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity
|
under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity
|
||||||
|
cutout: europe-2013-era5
|
||||||
dynamic_line_rating:
|
dynamic_line_rating:
|
||||||
activate: false
|
activate: false
|
||||||
# factor compensate overestimation of the wind speed in hourly averaged wind data
|
# factor compensate overestimation of the wind speed in hourly averaged wind data
|
||||||
|
@ -252,17 +252,20 @@ rule build_hydro_profile:
|
|||||||
|
|
||||||
|
|
||||||
if config['lines']['dynamic_line_rating']['activate']:
|
if config['lines']['dynamic_line_rating']['activate']:
|
||||||
rule build_line_rating:
|
rule build_line_rating:cutouts
|
||||||
input:
|
input:
|
||||||
base_network="networks/base.nc",
|
base_network=RESOURCES + "networks/base.nc",
|
||||||
cutout="cutouts/" + config["lines"]['cutout'] + ".nc"
|
cutout="cutouts/" + CDIR + config["lines"]['cutout'] + ".nc"
|
||||||
output:
|
output:
|
||||||
output="resources/line_rating.nc"
|
output=RESOURCES + "networks/line_rating.nc"
|
||||||
log: "logs/build_line_rating.log"
|
log: LOGS + "build_line_rating.log"
|
||||||
benchmark: "benchmarks/build_line_rating"
|
benchmark: BENCHMARKS + "build_line_rating"
|
||||||
threads: ATLITE_NPROCESSES
|
threads: ATLITE_NPROCESSES
|
||||||
resources: mem_mb=ATLITE_NPROCESSES * 1000
|
resources: mem_mb=ATLITE_NPROCESSES * 1000
|
||||||
script: "scripts/build_line_rating.py"
|
conda:
|
||||||
|
"../envs/environment.yaml"
|
||||||
|
script:
|
||||||
|
"../scripts/build_line_rating.py"
|
||||||
|
|
||||||
|
|
||||||
rule add_electricity:
|
rule add_electricity:
|
||||||
@ -278,7 +281,7 @@ rule add_electricity:
|
|||||||
if str(fn).startswith("data/")
|
if str(fn).startswith("data/")
|
||||||
},
|
},
|
||||||
base_network=RESOURCES + "networks/base.nc",
|
base_network=RESOURCES + "networks/base.nc",
|
||||||
line_rating="resources/line_rating.nc" if config['lines']['dynamic_line_rating']['activate'] else "networks/base.nc",
|
line_rating=RESOURCES + "networks/line_rating.nc" if config['lines']['dynamic_line_rating']['activate'] else RESOURCES + "networks/base.nc",
|
||||||
tech_costs=COSTS,
|
tech_costs=COSTS,
|
||||||
regions=RESOURCES + "regions_onshore.geojson",
|
regions=RESOURCES + "regions_onshore.geojson",
|
||||||
powerplants=RESOURCES + "powerplants.csv",
|
powerplants=RESOURCES + "powerplants.csv",
|
||||||
|
Loading…
Reference in New Issue
Block a user