1
+ # SPDX-FileCopyrightText: Contributors to technology-data <https://github.com/pypsa/technology-data>
2
+ #
3
+ # SPDX-License-Identifier: GPL-3.0-only
4
+
1
5
2
6
configfile : "config.yaml"
3
7
4
8
5
9
rule compile_cost_assumptions :
6
10
input :
7
- inflation_rate = "inputs/prc_hicp_aind__custom_9928419_spreadsheet.xlsx" ,
8
- pypsa_costs = "inputs/costs_PyPSA.csv" ,
9
- fraunhofer_costs = "inputs/Fraunhofer_ISE_costs.csv" ,
10
- fraunhofer_energy_prices = "inputs/Fraunhofer_ISE_energy_prices.csv" ,
11
- fraunhofer_vehicles_costs = "inputs/Fraunhofer_ISE_vehicles_costs.csv" ,
12
- EWG_costs = "inputs/EWG_costs.csv" ,
13
- dea_transport = "inputs/energy_transport_data_sheet_dec_2017.xlsx" ,
14
- dea_vehicles = "inputs/data_sheets_for_commercial_freight_and_passenger_transport_0.xlsx" ,
15
- dea_renewable_fuels = "inputs/data_sheets_for_renewable_fuels.xlsx" ,
16
- dea_storage = "inputs/technology_data_catalogue_for_energy_storage.xlsx" ,
17
- dea_generation = "inputs/technology_data_for_el_and_dh.xlsx" ,
18
- dea_heating = "inputs/technologydatafor_heating_installations_marts_2018.xlsx" ,
19
- dea_industrial = "inputs/technology_data_for_industrial_process_heat.xlsx" ,
20
- dea_ship = "inputs/data_sheets_for_maritime_commercial_freight_and_passenger_transport.xlsx" ,
21
- dea_ccts = "inputs/technology_data_for_carbon_capture_transport_storage.xlsx" ,
22
- pnnl_energy_storage = "inputs/pnnl-energy-storage-database.xlsx" ,
23
- manual_input = "inputs/manual_input.csv"
11
+ inflation_rate = "inputs/prc_hicp_aind__custom_9928419_spreadsheet.xlsx" ,
12
+ pypsa_costs = "inputs/costs_PyPSA.csv" ,
13
+ fraunhofer_costs = "inputs/Fraunhofer_ISE_costs.csv" ,
14
+ fraunhofer_energy_prices = "inputs/Fraunhofer_ISE_energy_prices.csv" ,
15
+ fraunhofer_vehicles_costs = "inputs/Fraunhofer_ISE_vehicles_costs.csv" ,
16
+ EWG_costs = "inputs/EWG_costs.csv" ,
17
+ dea_transport = "inputs/energy_transport_data_sheet_dec_2017.xlsx" ,
18
+ dea_vehicles = "inputs/data_sheets_for_commercial_freight_and_passenger_transport_0.xlsx" ,
19
+ dea_renewable_fuels = "inputs/data_sheets_for_renewable_fuels.xlsx" ,
20
+ dea_storage = "inputs/technology_data_catalogue_for_energy_storage.xlsx" ,
21
+ dea_generation = "inputs/technology_data_for_el_and_dh.xlsx" ,
22
+ dea_heating = "inputs/technologydatafor_heating_installations_marts_2018.xlsx" ,
23
+ dea_industrial = "inputs/technology_data_for_industrial_process_heat.xlsx" ,
24
+ dea_ship = "inputs/data_sheets_for_maritime_commercial_freight_and_passenger_transport.xlsx" ,
25
+ dea_ccts = "inputs/technology_data_for_carbon_capture_transport_storage.xlsx" ,
26
+ pnnl_energy_storage = "inputs/pnnl-energy-storage-database.xlsx" ,
27
+ manual_input = "inputs/manual_input.csv" ,
24
28
output :
25
- expand ("outputs/costs_{year}.csv" , year = config ["years" ])
29
+ expand ("outputs/costs_{year}.csv" , year = config ["years" ]),
26
30
threads : 1
27
- resources : mem = 500
28
- conda : "environment.yaml"
29
- script : "scripts/compile_cost_assumptions.py"
31
+ resources :
32
+ mem = 500 ,
33
+ conda :
34
+ "environment.yaml"
35
+ script :
36
+ "scripts/compile_cost_assumptions.py"
30
37
31
38
32
39
# rule convert_fraunhofer:
@@ -43,10 +50,13 @@ rule compile_cost_assumptions:
43
50
44
51
rule convert_EWG :
45
52
input :
46
- EWG = "docu/EWG_LUT_100RE_All_Sectors_Global_Report_2019.pdf"
53
+ EWG = "docu/EWG_LUT_100RE_All_Sectors_Global_Report_2019.pdf" ,
47
54
output :
48
- costs = "inputs/EWG_costs.csv" ,
55
+ costs = "inputs/EWG_costs.csv" ,
49
56
threads : 1
50
- resources : mem = 500
51
- conda : "environment.yaml"
52
- script : "scripts/convert_pdf_EWG_to_dataframe.py"
57
+ resources :
58
+ mem = 500 ,
59
+ conda :
60
+ "environment.yaml"
61
+ script :
62
+ "scripts/convert_pdf_EWG_to_dataframe.py"
0 commit comments