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

New technologies for chemical energy carriers #35

Merged
merged 44 commits into from
Jul 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
1f0c26a
Add desalination (SWRO) and clean water tank costs.
euronion Dec 15, 2020
1ea2a3e
Add inflation adjustment method and adjust desalination and clean wat…
euronion Dec 15, 2020
d855b64
Typo
euronion Dec 15, 2020
003fc7f
Unit consistency.
euronion Dec 15, 2020
481833d
Typo + unit consistency.
euronion Dec 15, 2020
cc327c9
Add industrial heat pump (HT heatpump) for medium process temperatures.
euronion Dec 17, 2020
830e784
Allow for manual input via csv file.
euronion Dec 18, 2020
a53d427
Add pipeline and compressors for CH4 (g), H2 (g).
euronion Jan 11, 2021
a0ab213
Update output .csv files for changed technology data.
euronion Jan 11, 2021
03d9dc6
House keeping: 'Investment' -> 'investment'.
euronion Jan 11, 2021
161a055
Housekeeping: 'Lifetime' -> 'lifetime'.
euronion Jan 11, 2021
8ecc7e3
Add H2 (l) shipping, liquefaction and evaporation.
euronion Jan 18, 2021
33e7fd8
Add shipping for CH4 (l), NH3 (l), LOHC and MeOH.
euronion Jan 19, 2021
3d44225
Add NH3 production: Haber-Bosch synthesis and air separation unit.
euronion Jan 22, 2021
1acbc43
Add LOHC liquid costs and correct currency year for Runge et al 2020.
euronion Jan 23, 2021
dc441a7
Add costs for LOHC (DBT) hydrogenation and dehydrogenation.
euronion Jan 23, 2021
63cbdcc
Convert unit of LOHC deyhdrogenation cost from MW_out to t_in .
euronion Jan 24, 2021
bc94d8c
Update compile_cost_assumptions.py
euronion Feb 3, 2021
4a009d6
Add methanolisation (Power to Methanol).
euronion Feb 3, 2021
b265b9f
Add costs for NH3 (l) and CO2 (l) storage tanks.
euronion Feb 8, 2021
69f75da
Add CO2 liquefaction, LNG tank storage and general liquid hydrocarbon…
euronion Feb 9, 2021
c7a3f9b
Add storage for DBT (LOHC) based on densities and compressed methane.
euronion Feb 10, 2021
574de1e
Update output files.
euronion Feb 10, 2021
09b802b
Housekeeping: 'Compressors' -> 'compressor'.
euronion Feb 10, 2021
c16785e
Correct unit for LOHC DBT storage (t instead of m^3).
euronion Feb 10, 2021
5c2e2fb
Update output files.
euronion Feb 10, 2021
9801680
Update deleted output files.
euronion Feb 10, 2021
cb91081
Fix FOM for LNG storage tank.
euronion Feb 10, 2021
bbfe718
Increase number of decimal places from 2 to 6.
euronion Feb 12, 2021
2863fff
Convert some entries to their relevant range in kWh rather than MWh.
euronion Feb 12, 2021
1110a20
Change units for LOHC (de-) hydrogenation to MW_H2.
euronion Feb 12, 2021
7d8e074
Specify H2 (l) costs per t rather than LHV MWh.
euronion Feb 15, 2021
8789f17
Add HVDC submarine costs.
euronion Mar 22, 2021
23bb3ad
Add methane and hydrogen gas submarine pipeline costs.
euronion Mar 23, 2021
ed654dc
Add Fischer-Tropsch synthesis and shiping costs.
euronion Mar 26, 2021
44e4ee7
Consistent naming of methane -> CH4 and unit consistency.
euronion Mar 26, 2021
a29c24e
Add costs for SMR (methane, methanol) and ammonia cracking.
euronion Apr 6, 2021
24cf417
Merge branch 'new-techs/chemical-energy-carriers' of https://github.c…
euronion Apr 6, 2021
62865af
Update of names, costs.
euronion May 1, 2021
6bf78e5
Merge remote-tracking branch 'upstream/master' into new-techs/chemica…
euronion May 2, 2021
464fd54
reduce ndigits to 2 temporarily for better diff
fneum Jul 3, 2021
738b115
Fix unit mismatch due to faulty manual_input.csv for CH4 evaporation/…
euronion Jul 5, 2021
c07e57f
Merge branch 'new-techs/chemical-energy-carriers' of https://github.c…
fneum Jul 5, 2021
551a335
move FT and methanol into compile_cost_assumptions
fneum Jul 5, 2021
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
3 changes: 2 additions & 1 deletion Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ rule compile_cost_assumptions:
dea_storage = "inputs/technology_data_catalogue_for_energy_storage.xlsx",
dea_generation = "inputs/technology_data_for_el_and_dh_-_0009.xlsx",
dea_heating = "inputs/technologydatafor_heating_installations_marts_2018.xlsx",
dea_industrial = "inputs/technology_data_for_industrial_process_heat_0002.xlsx"
dea_industrial = "inputs/technology_data_for_industrial_process_heat_0002.xlsx",
manual_input = "inputs/manual_input.csv"
output:
expand("outputs/costs_{year}.csv", year = config["years"])
threads: 1
Expand Down
5 changes: 5 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ h2_from_budischak : false
# remove grid connection costs from DEA for offwind because they are calculated
# seperately in pypsa-eur
offwind_no_gridcosts : true

desalination:
salinity: 35 # in PSU (Practical Salinity Unit) = kg/m^3

ndigits: 2
133 changes: 133 additions & 0 deletions inputs/manual_input.csv

Large diffs are not rendered by default.

150 changes: 138 additions & 12 deletions outputs/costs_2020.csv

Large diffs are not rendered by default.

150 changes: 138 additions & 12 deletions outputs/costs_2025.csv

Large diffs are not rendered by default.

150 changes: 138 additions & 12 deletions outputs/costs_2030.csv

Large diffs are not rendered by default.

154 changes: 140 additions & 14 deletions outputs/costs_2035.csv

Large diffs are not rendered by default.

154 changes: 140 additions & 14 deletions outputs/costs_2040.csv

Large diffs are not rendered by default.

154 changes: 140 additions & 14 deletions outputs/costs_2045.csv

Large diffs are not rendered by default.

154 changes: 140 additions & 14 deletions outputs/costs_2050.csv

Large diffs are not rendered by default.

175 changes: 157 additions & 18 deletions scripts/compile_cost_assumptions.py

Large diffs are not rendered by default.