Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add the airports workflow #231

Merged
merged 7 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@ rule prepare_ports:
"scripts/prepare_ports.py"


rule prepare_airports:
output:
ports="data/airports.csv",
# TODO move from data to resources
script:
"scripts/prepare_airports.py"


rule prepare_sector_network:
input:
network=RDIR
Expand Down
4 changes: 4 additions & 0 deletions config.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,10 @@ sector:
cc_fraction: 0.9
cc: true
space_heat_share: 0.6 # the share of space heating from all heating. Remainder goes to water heating.
airport_sizing_factor: 3



conventional_generation: # generator : carrier
OCGT: gas
#Gen_Test: oil # Just for testing purposes
Expand Down
Loading