├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── ci.yaml ├── .gitignore ├── .gitignore.save ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .syncignore ├── LICENSE.txt ├── Makefile ├── README.md ├── Snakefile ├── config.yaml ├── docs ├── Makefile ├── addnew.rst ├── conf.py ├── data.csv ├── index.rst ├── installation.rst ├── parameter.csv ├── release_notes.rst ├── requirements.txt └── structure.rst ├── docu ├── Anhang-Studie-Wege-zu-einem-klimaneutralen-Energiesystem.pdf ├── Appendix-Study-Paths-to-a-Climate-Neutral-Energy-System.pdf ├── DIW_cost.pdf ├── FormEnergy_Europe_modeling_recommendations_2023.03.pdf ├── Fraunhofer-ISE-Studie-Wege-zu-einem-klimaneutralen-Energiesystem.pdf ├── NREL_H2 storage costs.pdf ├── True Competitiveness of Solar PV.pdf ├── Vartiainen_et_al-2019-Progress_in_Photovoltaics__Research_and_Applications.pdf ├── bp-stats-review-2019-approximate-conversion-factors.pdf ├── bp-stats-review-2019-full-report.pdf ├── eng_note_on_technology_costs_for_offshore_wind_turbines.pdf ├── lazards-levelized-cost-of-energy-version-130-vf.pdf ├── metodebeskrivelse_engelsk.pdf ├── opdatering_af_teknologidata_for_solceller_oktober_2017.pdf ├── technology_data_catalogue_for_el_and_dh_-_0009.pdf ├── technology_data_catalogue_for_energy_storage.pdf ├── technology_data_catalogue_for_individual_heating_installations.pdf ├── technology_data_catalogue_for_industrial_process_heat_-_0001.pdf ├── technology_data_for_energy_transport.pdf ├── technology_data_for_energy_transport_0321.pdf ├── technology_data_for_renewable_fuels_-_0003.pdf └── update_of_financial_data_for_coal_fired_chp_plants_may17_july17.pdf ├── environment.yaml ├── inputs ├── EWG_costs.csv ├── Eurostat_inflation_rates.xlsx ├── Fraunhofer_ISE_costs.csv ├── Fraunhofer_ISE_energy_prices.csv ├── Fraunhofer_ISE_vehicles_costs.csv ├── US │ ├── atb_e_2019.parquet │ ├── atb_e_2022.parquet │ ├── atb_e_2024.parquet │ ├── discount_rates_usa.csv │ ├── fuel_costs_usa.csv │ └── manual_input_usa.csv ├── costs_PyPSA.csv ├── data_sheets_for_commercial_freight_and_passenger_transport_0.xlsx ├── data_sheets_for_maritime_commercial_freight_and_passenger_transport.xlsx ├── data_sheets_for_renewable_fuels.xlsx ├── energy_transport_data_sheet_dec_2017.xlsx ├── energy_transport_datasheet.xlsx ├── manual_input.csv ├── pnnl-energy-storage-database.xlsx ├── table_inputs.tex ├── technology_data_catalogue_for_energy_storage.xlsx ├── technology_data_for_carbon_capture_transport_storage.xlsx ├── technology_data_for_el_and_dh.xlsx ├── technology_data_for_el_and_dh_-_0009.xlsx ├── technology_data_for_industrial_process_heat.xlsx └── technologydatafor_heating_installations_marts_2018.xlsx ├── latex_tables ├── bib_transition.bib ├── table_costs.tex ├── table_fuels.tex ├── table_inputs.tex ├── tables_in_csv.py ├── tables_in_latex.aux ├── tables_in_latex.bbl ├── tables_in_latex.blg ├── tables_in_latex.log ├── tables_in_latex.out ├── tables_in_latex.pdf ├── tables_in_latex.py ├── tables_in_latex.spl ├── tables_in_latex.synctex └── tables_in_latex.tex ├── outputs ├── US │ ├── costs_2020.csv │ ├── costs_2025.csv │ ├── costs_2030.csv │ ├── costs_2035.csv │ ├── costs_2040.csv │ ├── costs_2045.csv │ └── costs_2050.csv ├── costs_2020.csv ├── costs_2025.csv ├── costs_2030.csv ├── costs_2035.csv ├── costs_2040.csv ├── costs_2045.csv └── costs_2050.csv ├── ruff.toml ├── scripts ├── _helpers.py ├── compile_cost_assumptions.py ├── compile_cost_assumptions_usa.py ├── convert_pdf_EWG_to_dataframe.py ├── convert_pdf_fraunhofer_to_dataframe.py └── retrieve_data_from_dea.py └── test ├── __init__.py ├── conftest.py ├── test_compile_cost_assumptions.py ├── test_compile_cost_assumptions_usa.py ├── test_data └── coal_test.csv └── test_helpers.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.gitignore.save -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.syncignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/.syncignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/README.md -------------------------------------------------------------------------------- /Snakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/Snakefile -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/config.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/addnew.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/addnew.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/data.csv -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/parameter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/parameter.csv -------------------------------------------------------------------------------- /docs/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/release_notes.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docs/structure.rst -------------------------------------------------------------------------------- /docu/Anhang-Studie-Wege-zu-einem-klimaneutralen-Energiesystem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/Anhang-Studie-Wege-zu-einem-klimaneutralen-Energiesystem.pdf -------------------------------------------------------------------------------- /docu/Appendix-Study-Paths-to-a-Climate-Neutral-Energy-System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/Appendix-Study-Paths-to-a-Climate-Neutral-Energy-System.pdf -------------------------------------------------------------------------------- /docu/DIW_cost.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/DIW_cost.pdf -------------------------------------------------------------------------------- /docu/FormEnergy_Europe_modeling_recommendations_2023.03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/FormEnergy_Europe_modeling_recommendations_2023.03.pdf -------------------------------------------------------------------------------- /docu/Fraunhofer-ISE-Studie-Wege-zu-einem-klimaneutralen-Energiesystem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/Fraunhofer-ISE-Studie-Wege-zu-einem-klimaneutralen-Energiesystem.pdf -------------------------------------------------------------------------------- /docu/NREL_H2 storage costs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/NREL_H2 storage costs.pdf -------------------------------------------------------------------------------- /docu/True Competitiveness of Solar PV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/True Competitiveness of Solar PV.pdf -------------------------------------------------------------------------------- /docu/Vartiainen_et_al-2019-Progress_in_Photovoltaics__Research_and_Applications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/Vartiainen_et_al-2019-Progress_in_Photovoltaics__Research_and_Applications.pdf -------------------------------------------------------------------------------- /docu/bp-stats-review-2019-approximate-conversion-factors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/bp-stats-review-2019-approximate-conversion-factors.pdf -------------------------------------------------------------------------------- /docu/bp-stats-review-2019-full-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/bp-stats-review-2019-full-report.pdf -------------------------------------------------------------------------------- /docu/eng_note_on_technology_costs_for_offshore_wind_turbines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/eng_note_on_technology_costs_for_offshore_wind_turbines.pdf -------------------------------------------------------------------------------- /docu/lazards-levelized-cost-of-energy-version-130-vf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/lazards-levelized-cost-of-energy-version-130-vf.pdf -------------------------------------------------------------------------------- /docu/metodebeskrivelse_engelsk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/metodebeskrivelse_engelsk.pdf -------------------------------------------------------------------------------- /docu/opdatering_af_teknologidata_for_solceller_oktober_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/opdatering_af_teknologidata_for_solceller_oktober_2017.pdf -------------------------------------------------------------------------------- /docu/technology_data_catalogue_for_el_and_dh_-_0009.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/technology_data_catalogue_for_el_and_dh_-_0009.pdf -------------------------------------------------------------------------------- /docu/technology_data_catalogue_for_energy_storage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/technology_data_catalogue_for_energy_storage.pdf -------------------------------------------------------------------------------- /docu/technology_data_catalogue_for_individual_heating_installations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/technology_data_catalogue_for_individual_heating_installations.pdf -------------------------------------------------------------------------------- /docu/technology_data_catalogue_for_industrial_process_heat_-_0001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/technology_data_catalogue_for_industrial_process_heat_-_0001.pdf -------------------------------------------------------------------------------- /docu/technology_data_for_energy_transport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/technology_data_for_energy_transport.pdf -------------------------------------------------------------------------------- /docu/technology_data_for_energy_transport_0321.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/technology_data_for_energy_transport_0321.pdf -------------------------------------------------------------------------------- /docu/technology_data_for_renewable_fuels_-_0003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/technology_data_for_renewable_fuels_-_0003.pdf -------------------------------------------------------------------------------- /docu/update_of_financial_data_for_coal_fired_chp_plants_may17_july17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/docu/update_of_financial_data_for_coal_fired_chp_plants_may17_july17.pdf -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/environment.yaml -------------------------------------------------------------------------------- /inputs/EWG_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/EWG_costs.csv -------------------------------------------------------------------------------- /inputs/Eurostat_inflation_rates.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/Eurostat_inflation_rates.xlsx -------------------------------------------------------------------------------- /inputs/Fraunhofer_ISE_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/Fraunhofer_ISE_costs.csv -------------------------------------------------------------------------------- /inputs/Fraunhofer_ISE_energy_prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/Fraunhofer_ISE_energy_prices.csv -------------------------------------------------------------------------------- /inputs/Fraunhofer_ISE_vehicles_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/Fraunhofer_ISE_vehicles_costs.csv -------------------------------------------------------------------------------- /inputs/US/atb_e_2019.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/US/atb_e_2019.parquet -------------------------------------------------------------------------------- /inputs/US/atb_e_2022.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/US/atb_e_2022.parquet -------------------------------------------------------------------------------- /inputs/US/atb_e_2024.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/US/atb_e_2024.parquet -------------------------------------------------------------------------------- /inputs/US/discount_rates_usa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/US/discount_rates_usa.csv -------------------------------------------------------------------------------- /inputs/US/fuel_costs_usa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/US/fuel_costs_usa.csv -------------------------------------------------------------------------------- /inputs/US/manual_input_usa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/US/manual_input_usa.csv -------------------------------------------------------------------------------- /inputs/costs_PyPSA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/costs_PyPSA.csv -------------------------------------------------------------------------------- /inputs/data_sheets_for_commercial_freight_and_passenger_transport_0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/data_sheets_for_commercial_freight_and_passenger_transport_0.xlsx -------------------------------------------------------------------------------- /inputs/data_sheets_for_maritime_commercial_freight_and_passenger_transport.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/data_sheets_for_maritime_commercial_freight_and_passenger_transport.xlsx -------------------------------------------------------------------------------- /inputs/data_sheets_for_renewable_fuels.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/data_sheets_for_renewable_fuels.xlsx -------------------------------------------------------------------------------- /inputs/energy_transport_data_sheet_dec_2017.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/energy_transport_data_sheet_dec_2017.xlsx -------------------------------------------------------------------------------- /inputs/energy_transport_datasheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/energy_transport_datasheet.xlsx -------------------------------------------------------------------------------- /inputs/manual_input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/manual_input.csv -------------------------------------------------------------------------------- /inputs/pnnl-energy-storage-database.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/pnnl-energy-storage-database.xlsx -------------------------------------------------------------------------------- /inputs/table_inputs.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inputs/technology_data_catalogue_for_energy_storage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/technology_data_catalogue_for_energy_storage.xlsx -------------------------------------------------------------------------------- /inputs/technology_data_for_carbon_capture_transport_storage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/technology_data_for_carbon_capture_transport_storage.xlsx -------------------------------------------------------------------------------- /inputs/technology_data_for_el_and_dh.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/technology_data_for_el_and_dh.xlsx -------------------------------------------------------------------------------- /inputs/technology_data_for_el_and_dh_-_0009.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/technology_data_for_el_and_dh_-_0009.xlsx -------------------------------------------------------------------------------- /inputs/technology_data_for_industrial_process_heat.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/technology_data_for_industrial_process_heat.xlsx -------------------------------------------------------------------------------- /inputs/technologydatafor_heating_installations_marts_2018.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/inputs/technologydatafor_heating_installations_marts_2018.xlsx -------------------------------------------------------------------------------- /latex_tables/bib_transition.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/bib_transition.bib -------------------------------------------------------------------------------- /latex_tables/table_costs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/table_costs.tex -------------------------------------------------------------------------------- /latex_tables/table_fuels.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/table_fuels.tex -------------------------------------------------------------------------------- /latex_tables/table_inputs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/table_inputs.tex -------------------------------------------------------------------------------- /latex_tables/tables_in_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/tables_in_csv.py -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/tables_in_latex.aux -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/tables_in_latex.bbl -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.blg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/tables_in_latex.blg -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/tables_in_latex.log -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.out: -------------------------------------------------------------------------------- 1 | \BOOKMARK [2][-]{subsection.0.1}{Cost assumptions}{}% 1 2 | -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/tables_in_latex.pdf -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/tables_in_latex.py -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.spl: -------------------------------------------------------------------------------- 1 | \g@addto@macro\@biboptions{,numbers,sort&compress} 2 | -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.synctex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/tables_in_latex.synctex -------------------------------------------------------------------------------- /latex_tables/tables_in_latex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/latex_tables/tables_in_latex.tex -------------------------------------------------------------------------------- /outputs/US/costs_2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/US/costs_2020.csv -------------------------------------------------------------------------------- /outputs/US/costs_2025.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/US/costs_2025.csv -------------------------------------------------------------------------------- /outputs/US/costs_2030.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/US/costs_2030.csv -------------------------------------------------------------------------------- /outputs/US/costs_2035.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/US/costs_2035.csv -------------------------------------------------------------------------------- /outputs/US/costs_2040.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/US/costs_2040.csv -------------------------------------------------------------------------------- /outputs/US/costs_2045.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/US/costs_2045.csv -------------------------------------------------------------------------------- /outputs/US/costs_2050.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/US/costs_2050.csv -------------------------------------------------------------------------------- /outputs/costs_2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/costs_2020.csv -------------------------------------------------------------------------------- /outputs/costs_2025.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/costs_2025.csv -------------------------------------------------------------------------------- /outputs/costs_2030.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/costs_2030.csv -------------------------------------------------------------------------------- /outputs/costs_2035.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/costs_2035.csv -------------------------------------------------------------------------------- /outputs/costs_2040.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/costs_2040.csv -------------------------------------------------------------------------------- /outputs/costs_2045.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/costs_2045.csv -------------------------------------------------------------------------------- /outputs/costs_2050.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/outputs/costs_2050.csv -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/ruff.toml -------------------------------------------------------------------------------- /scripts/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/scripts/_helpers.py -------------------------------------------------------------------------------- /scripts/compile_cost_assumptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/scripts/compile_cost_assumptions.py -------------------------------------------------------------------------------- /scripts/compile_cost_assumptions_usa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/scripts/compile_cost_assumptions_usa.py -------------------------------------------------------------------------------- /scripts/convert_pdf_EWG_to_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/scripts/convert_pdf_EWG_to_dataframe.py -------------------------------------------------------------------------------- /scripts/convert_pdf_fraunhofer_to_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/scripts/convert_pdf_fraunhofer_to_dataframe.py -------------------------------------------------------------------------------- /scripts/retrieve_data_from_dea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/scripts/retrieve_data_from_dea.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test_compile_cost_assumptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/test/test_compile_cost_assumptions.py -------------------------------------------------------------------------------- /test/test_compile_cost_assumptions_usa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/test/test_compile_cost_assumptions_usa.py -------------------------------------------------------------------------------- /test/test_data/coal_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/test/test_data/coal_test.csv -------------------------------------------------------------------------------- /test/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyPSA/technology-data/HEAD/test/test_helpers.py --------------------------------------------------------------------------------