initial implementation
This commit is contained in:
parent
e1502c95dd
commit
74185560e0
@ -22,7 +22,13 @@ configfile: "config/config.yaml"
|
|||||||
|
|
||||||
run = config["run"]
|
run = config["run"]
|
||||||
scenarios = get_scenarios(run)
|
scenarios = get_scenarios(run)
|
||||||
RDIR = get_rdir(run)
|
prefix = run.get("prefix", "")
|
||||||
|
rdir = get_rdir(run)
|
||||||
|
|
||||||
|
if prefix:
|
||||||
|
RDIR = f"{prefix}/{rdir}"
|
||||||
|
else:
|
||||||
|
RDIR = rdir
|
||||||
|
|
||||||
logs = path_provider("logs/", RDIR, run["shared_resources"])
|
logs = path_provider("logs/", RDIR, run["shared_resources"])
|
||||||
benchmarks = path_provider("benchmarks/", RDIR, run["shared_resources"])
|
benchmarks = path_provider("benchmarks/", RDIR, run["shared_resources"])
|
||||||
|
@ -20,6 +20,7 @@ remote:
|
|||||||
|
|
||||||
# docs in https://pypsa-eur.readthedocs.io/en/latest/configuration.html#run
|
# docs in https://pypsa-eur.readthedocs.io/en/latest/configuration.html#run
|
||||||
run:
|
run:
|
||||||
|
prefix: ""
|
||||||
name: ""
|
name: ""
|
||||||
scenarios:
|
scenarios:
|
||||||
enable: false
|
enable: false
|
||||||
|
Loading…
Reference in New Issue
Block a user