Skip to content

Commit

Permalink
pypsaeur <- pypsaeursec
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert John committed Nov 5, 2024
1 parent 0b2e26a commit 8f79ed6
Show file tree
Hide file tree
Showing 3 changed files with 2,776 additions and 0 deletions.
42 changes: 42 additions & 0 deletions src/egon/data/datasets/pypsaeur/Snakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
rule Main:
conda:
"pypsa-eur/envs/environment.yaml"
shell:
( "snakemake"
" --directory=pypsa-eur/"
" --snakefile=pypsa-eur-sec/Snakefile"
" -j1"
)

rule prepare:
conda:
"pypsa-eur/envs/environment.yaml"
shell:
( "snakemake"
" --directory=pypsa-eur/"
" --snakefile=pypsa-eur/Snakefile"
" -call"
" prepare_sector_networks"
)

rule solve:
conda:
"pypsa-eur/envs/environment.yaml"
shell:
( "snakemake"
" --directory=pypsa-eur/"
" --snakefile=pypsa-eur/Snakefile"
" -call"
" solve_sector_networks"
)

rule summary:
conda:
"pypsa-eur/envs/environment.yaml"
shell:
( "snakemake"
" --directory=pypsa-eur/"
" --snakefile=pypsa-eur/Snakefile"
" -call"
" make_summary"
)
Loading

0 comments on commit 8f79ed6

Please sign in to comment.