premise 1.8.2.dev0__tar.gz → 1.8.2.dev2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/MANIFEST.in +1 -0
  2. {premise-1.8.2.dev0/premise.egg-info → premise-1.8.2.dev2}/PKG-INFO +1 -1
  3. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/__init__.py +1 -1
  4. premise-1.8.2.dev2/premise/biomass.py +314 -0
  5. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/brightway2.py +1 -0
  6. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/consequential/blacklist.yaml +27 -0
  7. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/consequential/leadtimes.yaml +22 -22
  8. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/consequential/lifetimes.yaml +22 -22
  9. premise-1.8.2.dev2/premise/data/fuels/fuel_groups.yaml +36 -0
  10. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/fuels/hydrogen_activities.yml +13 -13
  11. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/flows_biosphere_39.csv +1 -0
  12. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/logging/logconfig.yaml +13 -0
  13. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/logging/reporting.yaml +36 -4
  14. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data_collection.py +26 -13
  15. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/ecoinvent_modification.py +51 -3
  16. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/electricity.py +4 -202
  17. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/external.py +4 -3
  18. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/fuels.py +4 -5
  19. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/heat.py +5 -0
  20. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/biomass_variables.yaml +2 -0
  21. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/carbon_capture_variables.yaml +19 -0
  22. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/cement_variables.yaml +7 -0
  23. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/constants.yaml +38 -0
  24. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/crops_variables.yaml +26 -1
  25. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/electricity_variables.yaml +39 -2
  26. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/fuels_variables.yaml +89 -36
  27. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/gains_regions_mapping.yaml +26 -1
  28. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/iam_region_to_climate.yaml +26 -1
  29. premise-1.8.2.dev2/premise/iam_variables_mapping/mapping_overview.xlsx +0 -0
  30. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/missing_geography_equivalences.yaml +60 -5
  31. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/steel_variables.yaml +13 -0
  32. premise-1.8.2.dev2/premise/iam_variables_mapping/topologies/gcam-topology.json +35 -0
  33. premise-1.8.2.dev2/premise/iam_variables_mapping/topologies/image-topology.json +280 -0
  34. premise-1.8.2.dev2/premise/iam_variables_mapping/topologies/message-typology.json +193 -0
  35. premise-1.8.2.dev2/premise/iam_variables_mapping/topologies/remind-topology.json +242 -0
  36. premise-1.8.2.dev2/premise/iam_variables_mapping/topologies/tiam-topology.json +458 -0
  37. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/report.py +1 -0
  38. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/steel.py +37 -10
  39. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/validation.py +87 -8
  40. {premise-1.8.2.dev0 → premise-1.8.2.dev2/premise.egg-info}/PKG-INFO +1 -1
  41. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise.egg-info/SOURCES.txt +6 -0
  42. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/tests/test_utils.py +1 -1
  43. premise-1.8.2.dev0/premise/data/fuels/fuel_groups.yaml +0 -36
  44. premise-1.8.2.dev0/premise/iam_variables_mapping/mapping_overview.xlsx +0 -0
  45. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/LICENSE +0 -0
  46. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/README.md +0 -0
  47. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/activity_maps.py +0 -0
  48. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/brightway25.py +0 -0
  49. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/cement.py +0 -0
  50. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/clean_datasets.py +0 -0
  51. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/GAINS_EU_sectors_mapping.yaml +0 -0
  52. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/GAINS_ei_pollutants.yaml +0 -0
  53. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/GAINS_emission_factors_EU.csv +0 -0
  54. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/gains_ecoinvent_sectoral_mapping.yaml +0 -0
  55. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/CH4.csv +0 -0
  56. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/N2O.csv +0 -0
  57. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/NH3.csv +0 -0
  58. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/NOx.csv +0 -0
  59. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/PM1.csv +0 -0
  60. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/PM10.csv +0 -0
  61. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/PM25.csv +0 -0
  62. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/PM_BC.csv +0 -0
  63. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/PM_OC.csv +0 -0
  64. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/PM_TSP.csv +0 -0
  65. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/SO2.csv +0 -0
  66. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/CLE/VOC.csv +0 -0
  67. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/CH4.csv +0 -0
  68. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/N2O.csv +0 -0
  69. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/NH3.csv +0 -0
  70. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/NOx.csv +0 -0
  71. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/PM1.csv +0 -0
  72. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/PM10.csv +0 -0
  73. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/PM25.csv +0 -0
  74. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/PM_BC.csv +0 -0
  75. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/PM_OC.csv +0 -0
  76. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/PM_TSP.csv +0 -0
  77. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/SO2.csv +0 -0
  78. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/GAINS_emission_factors/iam_data/MFR/VOC.csv +0 -0
  79. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-BIGCC.xlsx +0 -0
  80. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-Carma-CCS.xlsx +0 -0
  81. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-ESU-oil-and-gas.xlsx +0 -0
  82. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-PGM.xlsx +0 -0
  83. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-PV.xlsx +0 -0
  84. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-batteries.xlsx +0 -0
  85. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-biofuels.xlsx +0 -0
  86. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-biogas.xlsx +0 -0
  87. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-buses.xlsx +0 -0
  88. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-carbon-capture.xlsx +0 -0
  89. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-carbon-fiber.xlsx +0 -0
  90. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-co-firing-power-plants.xlsx +0 -0
  91. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-cobalt.xlsx +0 -0
  92. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-combined-heat-power-plant-CCS.xlsx +0 -0
  93. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-concentrating-solar-power.xlsx +0 -0
  94. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-fuel_cell.xlsx +0 -0
  95. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-geothermal.xlsx +0 -0
  96. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-germanium.xlsx +0 -0
  97. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-graphite.xlsx +0 -0
  98. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-home-batteries.xlsx +0 -0
  99. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-coal-gasification.xlsx +0 -0
  100. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-distribution.xlsx +0 -0
  101. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-electrolysis.xlsx +0 -0
  102. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-heating.xlsx +0 -0
  103. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-pyrolysis.xlsx +0 -0
  104. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-smr-atr-biogas.xlsx +0 -0
  105. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-smr-atr-natgas.xlsx +0 -0
  106. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-thermochemical-water-splitting.xlsx +0 -0
  107. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-turbine.xlsx +0 -0
  108. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-hydrogen-wood-gasification.xlsx +0 -0
  109. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-lithium.xlsx +0 -0
  110. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-methanol-heating.xlsx +0 -0
  111. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-nuclear_EPR.xlsx +0 -0
  112. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-nuclear_SMR.xlsx +0 -0
  113. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-pass_cars.xlsx +0 -0
  114. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-rhenium.xlsx +0 -0
  115. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-synfuels-from-FT-from-coal-gasification-with-CCS.xlsx +0 -0
  116. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-synfuels-from-FT-from-coal-gasification.xlsx +0 -0
  117. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-synfuels-from-FT-from-electrolysis.xlsx +0 -0
  118. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-synfuels-from-FT-from-wood-gasification-with-CCS.xlsx +0 -0
  119. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-synfuels-from-FT-from-wood-gasification.xlsx +0 -0
  120. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-synfuels-from-methanol-from-cement-plant.xlsx +0 -0
  121. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-synfuels-from-methanol-from-coal-with-CCS.xlsx +0 -0
  122. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-synfuels-from-methanol-from-coal.xlsx +0 -0
  123. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-synfuels-from-methanol-from-electrolysis.xlsx +0 -0
  124. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-syngas-from-coal.xlsx +0 -0
  125. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-syngas.xlsx +0 -0
  126. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-trucks.xlsx +0 -0
  127. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-two_wheelers.xlsx +0 -0
  128. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-vanadium-redox-flow-battery.xlsx +0 -0
  129. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-vanadium.xlsx +0 -0
  130. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/lci-wave_energy.xlsx +0 -0
  131. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/additional_inventories/migration_map.csv +0 -0
  132. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/electricity/coal_power_emissions_2012_v1.csv +0 -0
  133. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/electricity/losses_per_country.csv +0 -0
  134. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/fuels/biofuels_activities.yml +0 -0
  135. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/fuels/fuel_markets.yml +0 -0
  136. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/fuels/heat_sources_map.yml +0 -0
  137. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/fuels/hydrogen_supply_losses.yml +0 -0
  138. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/fuels/liquid_fuel_activities.yml +0 -0
  139. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/fuels/methane_activities.yml +0 -0
  140. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/fuels/supply_chain_scenarios.yml +0 -0
  141. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/fleet_files/fleet_all_vehicles.csv +0 -0
  142. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/fleet_files/image_fleet_trucks.csv +0 -0
  143. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/image_SSP1-Base.csv +0 -0
  144. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/image_SSP2-Base.csv +0 -0
  145. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/image_SSP2-RCP19.csv +0 -0
  146. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/image_SSP2-RCP26.csv +0 -0
  147. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP1-Base.csv +0 -0
  148. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP1-NDC.csv +0 -0
  149. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP1-NPi.csv +0 -0
  150. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP1-PkBudg1150.csv +0 -0
  151. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP1-PkBudg500.csv +0 -0
  152. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP2-Base.csv +0 -0
  153. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP2-NDC.csv +0 -0
  154. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP2-NPi.csv +0 -0
  155. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP2-PkBudg1150.csv +0 -0
  156. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP2-PkBudg500.csv +0 -0
  157. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP5-Base.csv +0 -0
  158. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP5-NDC.csv +0 -0
  159. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP5-NPi.csv +0 -0
  160. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP5-PkBudg1150.csv +0 -0
  161. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/iam_output_files/remind_SSP5-PkBudg500.csv +0 -0
  162. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/renewables/efficiency_solar_PV.csv +0 -0
  163. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/transport/avg_load_factors.yaml +0 -0
  164. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/transport/vehicles_map.yaml +0 -0
  165. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/correspondence_biosphere_flows.yaml +0 -0
  166. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/flows_biosphere_38.csv +0 -0
  167. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/outdated_flows.yaml +0 -0
  168. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/references.csv +0 -0
  169. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/simapro-biosphere.json +0 -0
  170. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/simapro_categories.csv +0 -0
  171. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/simapro_classification.csv +0 -0
  172. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/simapro_compartments.yml +0 -0
  173. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/export/simapro_units.yml +0 -0
  174. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/materials_vars.yml +0 -0
  175. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/report/report.yaml +0 -0
  176. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/validation/circular exceptions.yaml +0 -0
  177. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/validation/electricity.yaml +0 -0
  178. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/validation/waste flows exceptions.yaml +0 -0
  179. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/data/utils/validation/waste flows.yaml +0 -0
  180. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/direct_air_capture.py +0 -0
  181. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/emissions.py +0 -0
  182. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/export.py +0 -0
  183. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/external_data_validation.py +0 -0
  184. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/filesystem_constants.py +0 -0
  185. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/geomap.py +0 -0
  186. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/carbon_storage_variables.yaml +0 -0
  187. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/direct_air_capture_variables.yaml +0 -0
  188. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/heat_variables.yaml +0 -0
  189. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/iam_variables_mapping/other_variables.yaml +0 -0
  190. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/inventory_imports.py +0 -0
  191. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/logger.py +0 -0
  192. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/marginal_mixes.py +0 -0
  193. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/transformation.py +0 -0
  194. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/transport.py +0 -0
  195. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise/utils.py +0 -0
  196. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise.egg-info/dependency_links.txt +0 -0
  197. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise.egg-info/requires.txt +0 -0
  198. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/premise.egg-info/top_level.txt +0 -0
  199. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/pyproject.toml +0 -0
  200. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/requirements.txt +0 -0
  201. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/setup.cfg +0 -0
  202. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/tests/test_activity_maps.py +0 -0
  203. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/tests/test_clean_datasets.py +0 -0
  204. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/tests/test_electricity.py +0 -0
  205. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/tests/test_export.py +0 -0
  206. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/tests/test_filesystem_constants.py +0 -0
  207. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/tests/test_geomap.py +0 -0
  208. {premise-1.8.2.dev0 → premise-1.8.2.dev2}/tests/test_import_inventories.py +0 -0
@@ -52,4 +52,5 @@ include premise/data/utils/logging/*.yaml
52
52
  include premise/data/utils/validation/*.yaml
53
53
  include premise/iam_variables_mapping/*.yaml
54
54
  include premise/iam_variables_mapping/*.xlsx
55
+ include premise/iam_variables_mapping/topologies/*.json
55
56
  include premise/data/consequential/*.yaml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: premise
3
- Version: 1.8.2.dev0
3
+ Version: 1.8.2.dev2
4
4
  Summary: Coupling IAM output to ecoinvent LCA database ecoinvent for prospective LCA
5
5
  Author-email: Romain Sacchi <romain.sacchi@psi.ch>, Alois Dirnaichner <dirnaichner@pik-potsdam.de>, Chris Mutel <cmutel@gmail.com>
6
6
  Maintainer-email: Romain Sacchi <romain.sacchi@psi.ch>
@@ -1,5 +1,5 @@
1
1
  __all__ = ("NewDatabase", "clear_cache", "get_regions_definition")
2
- __version__ = (1, 8, 2, "dev0")
2
+ __version__ = (1, 8, 2, "dev2")
3
3
 
4
4
 
5
5
  from .ecoinvent_modification import NewDatabase
@@ -0,0 +1,314 @@
1
+ """
2
+ biomass.py contains the class `Biomass`, which inherits from `BaseTransformation`.
3
+ This class transforms the biomass markets that feed heât and power plants,
4
+ based on projections from the IAM scenario.
5
+ It eventually re-links all the biomass-consuming activities of the wurst database to
6
+ the newly created biomass markets.
7
+
8
+ """
9
+
10
+ import yaml
11
+
12
+ from .export import biosphere_flows_dictionary
13
+ from .filesystem_constants import VARIABLES_DIR
14
+ from .logger import create_logger
15
+ from .transformation import (
16
+ BaseTransformation,
17
+ IAMDataCollection,
18
+ InventorySet,
19
+ List,
20
+ get_shares_from_production_volume,
21
+ np,
22
+ uuid,
23
+ ws,
24
+ )
25
+ from .utils import eidb_label
26
+ from .validation import BiomassValidation
27
+
28
+ IAM_BIOMASS_VARS = VARIABLES_DIR / "biomass_variables.yaml"
29
+
30
+ logger = create_logger("biomass")
31
+
32
+
33
+ def _update_biomass(
34
+ scenario,
35
+ version,
36
+ system_model,
37
+ use_absolute_efficiency,
38
+ cache=None,
39
+ ):
40
+ biomass = Biomass(
41
+ database=scenario["database"],
42
+ iam_data=scenario["iam data"],
43
+ model=scenario["model"],
44
+ pathway=scenario["pathway"],
45
+ year=scenario["year"],
46
+ version=version,
47
+ system_model=system_model,
48
+ use_absolute_efficiency=use_absolute_efficiency,
49
+ cache=cache,
50
+ )
51
+
52
+ if scenario["iam data"].biomass_markets is not None:
53
+ biomass.create_biomass_markets()
54
+
55
+ biomass.relink_datasets()
56
+
57
+ validate = BiomassValidation(
58
+ model=scenario["model"],
59
+ scenario=scenario["pathway"],
60
+ year=scenario["year"],
61
+ regions=scenario["iam data"].regions,
62
+ database=biomass.database,
63
+ iam_data=scenario["iam data"],
64
+ )
65
+
66
+ validate.run_biomass_checks()
67
+
68
+ scenario["database"] = biomass.database
69
+ cache = biomass.cache
70
+
71
+ return scenario, cache
72
+
73
+
74
+ class Biomass(BaseTransformation):
75
+ """
76
+ Class that modifies biomass markets in the database based on IAM output data.
77
+ Inherits from `transformation.BaseTransformation`.
78
+
79
+ :ivar database: wurst database, which is a list of dictionaries
80
+ :vartype database: list
81
+ :ivar iam_data: IAM data
82
+ :vartype iam_data: xarray.DataArray
83
+ :ivar model: name of the IAM model (e.g., "remind", "image")
84
+ :vartype model: str
85
+ :vartype pathway: str
86
+ :ivar year: year of the pathway (e.g., 2030)
87
+ :vartype year: int
88
+
89
+ """
90
+
91
+ def __init__(
92
+ self,
93
+ database: List[dict],
94
+ iam_data: IAMDataCollection,
95
+ model: str,
96
+ pathway: str,
97
+ year: int,
98
+ version: str,
99
+ system_model: str,
100
+ use_absolute_efficiency: bool = False,
101
+ cache: dict = None,
102
+ ) -> None:
103
+ super().__init__(
104
+ database,
105
+ iam_data,
106
+ model,
107
+ pathway,
108
+ year,
109
+ version,
110
+ system_model,
111
+ cache,
112
+ )
113
+ self.system_model = system_model
114
+ self.biosphere_dict = biosphere_flows_dictionary(self.version)
115
+
116
+ def create_biomass_markets(self) -> None:
117
+ # print("Create biomass markets.")
118
+
119
+ with open(IAM_BIOMASS_VARS, "r", encoding="utf-8") as stream:
120
+ biomass_map = yaml.safe_load(stream)
121
+
122
+ # create region-specific "Supply of forest residue" datasets
123
+ forest_residues_ds = self.fetch_proxies(
124
+ name=biomass_map["biomass - residual"]["ecoinvent_aliases"]["fltr"]["name"],
125
+ ref_prod=biomass_map["biomass - residual"]["ecoinvent_aliases"]["fltr"][
126
+ "reference product"
127
+ ][0],
128
+ production_variable="biomass - residual",
129
+ )
130
+
131
+ # add them to the database
132
+ self.database.extend(forest_residues_ds.values())
133
+
134
+ # add log
135
+ for dataset in list(forest_residues_ds.values()):
136
+ self.write_log(dataset=dataset)
137
+ self.add_to_index(dataset)
138
+
139
+ for region in self.regions:
140
+ dataset = {
141
+ "name": "market for biomass, used as fuel",
142
+ "reference product": "biomass, used as fuel",
143
+ "location": region,
144
+ "comment": f"Biomass market, created by `premise`, "
145
+ f"to align with projections for the region {region} in {self.year}. "
146
+ "Calculated for an average energy input (LHV) of 19 MJ/kg, dry basis. "
147
+ "Sum of inputs can be superior to 1, as "
148
+ "inputs of wood chips, wet-basis, have been multiplied by a factor 2.5, "
149
+ "to reach a LHV of 19 MJ (they have a LHV of 7.6 MJ, wet basis).",
150
+ "unit": "kilogram",
151
+ "database": eidb_label(
152
+ self.model,
153
+ self.scenario,
154
+ self.year,
155
+ self.version,
156
+ self.system_model,
157
+ ),
158
+ "code": str(uuid.uuid4().hex),
159
+ "exchanges": [
160
+ {
161
+ "name": "market for biomass, used as fuel",
162
+ "product": "biomass, used as fuel",
163
+ "amount": 1,
164
+ "unit": "kilogram",
165
+ "location": region,
166
+ "uncertainty type": 0,
167
+ "type": "production",
168
+ }
169
+ ],
170
+ }
171
+
172
+ available_biomass_vars = [
173
+ v
174
+ for v in list(biomass_map.keys())
175
+ if v in self.iam_data.production_volumes.variables.values
176
+ ]
177
+
178
+ for biomass_type, biomass_act in biomass_map.items():
179
+ total_prod_vol = np.clip(
180
+ (
181
+ self.iam_data.production_volumes.sel(
182
+ variables=available_biomass_vars, region=region
183
+ )
184
+ .interp(year=self.year)
185
+ .sum(dim="variables")
186
+ ),
187
+ 1e-6,
188
+ None,
189
+ )
190
+
191
+ if biomass_type in available_biomass_vars:
192
+ share = np.clip(
193
+ (
194
+ self.iam_data.production_volumes.sel(
195
+ variables=biomass_type, region=region
196
+ )
197
+ .interp(year=self.year)
198
+ .sum()
199
+ / total_prod_vol
200
+ ).values.item(0),
201
+ 0,
202
+ 1,
203
+ )
204
+ elif (
205
+ self.system_model == "consequential"
206
+ and biomass_type == "biomass - residual"
207
+ ):
208
+ share = 0
209
+ else:
210
+ share = 0
211
+
212
+ if share > 0:
213
+ ecoinvent_regions = self.geo.iam_to_ecoinvent_location(
214
+ dataset["location"]
215
+ )
216
+ possible_locations = [
217
+ dataset["location"],
218
+ *ecoinvent_regions,
219
+ "RER",
220
+ "Europe without Switzerland",
221
+ "RoW",
222
+ "GLO",
223
+ ]
224
+ possible_name = biomass_act["ecoinvent_aliases"]["fltr"]["name"]
225
+ possible_product = biomass_act["ecoinvent_aliases"]["fltr"][
226
+ "reference product"
227
+ ]
228
+
229
+ suppliers, counter = [], 0
230
+
231
+ while not suppliers:
232
+ suppliers = list(
233
+ ws.get_many(
234
+ self.database,
235
+ ws.contains("name", possible_name),
236
+ ws.equals("location", possible_locations[counter]),
237
+ ws.contains("reference product", possible_product),
238
+ ws.equals("unit", "kilogram"),
239
+ ws.doesnt_contain_any(
240
+ "name", ["willow", "post-consumer"]
241
+ ),
242
+ )
243
+ )
244
+ counter += 1
245
+
246
+ suppliers = get_shares_from_production_volume(suppliers)
247
+
248
+ for supplier, supply_share in suppliers.items():
249
+ multiplication_factor = 1.0
250
+ amount = supply_share * share * multiplication_factor
251
+
252
+ dataset["exchanges"].append(
253
+ {
254
+ "type": "technosphere",
255
+ "product": supplier[2],
256
+ "name": supplier[0],
257
+ "unit": supplier[-1],
258
+ "location": supplier[1],
259
+ "amount": amount,
260
+ "uncertainty type": 0,
261
+ }
262
+ )
263
+
264
+ if "log parameters" not in dataset:
265
+ dataset["log parameters"] = {}
266
+
267
+ dataset["log parameters"].update(
268
+ {
269
+ "biomass share": share,
270
+ }
271
+ )
272
+
273
+ self.database.append(dataset)
274
+
275
+ # add log
276
+ self.write_log(dataset=dataset)
277
+ self.add_to_index(dataset)
278
+
279
+ # replace biomass inputs
280
+ for dataset in ws.get_many(
281
+ self.database,
282
+ ws.either(
283
+ *[ws.equals("unit", unit) for unit in ["kilowatt hour", "megajoule"]]
284
+ ),
285
+ ws.either(
286
+ *[
287
+ ws.contains("name", name)
288
+ for name in ["electricity", "heat", "power"]
289
+ ]
290
+ ),
291
+ ):
292
+ for exc in ws.technosphere(
293
+ dataset,
294
+ ws.contains("name", "market for wood chips"),
295
+ ws.equals("unit", "kilogram"),
296
+ ):
297
+ exc["name"] = "market for biomass, used as fuel"
298
+ exc["product"] = "biomass, used as fuel"
299
+
300
+ if dataset["location"] in self.regions:
301
+ exc["location"] = dataset["location"]
302
+ else:
303
+ exc["location"] = self.ecoinvent_to_iam_loc[dataset["location"]]
304
+
305
+ def write_log(self, dataset, status="created"):
306
+ """
307
+ Write log file.
308
+ """
309
+
310
+ logger.info(
311
+ f"{status}|{self.model}|{self.scenario}|{self.year}|"
312
+ f"{dataset['name']}|{dataset['location']}|"
313
+ f"{dataset.get('log parameters', {}).get('biomass share', '')}"
314
+ )
@@ -18,6 +18,7 @@ class BW2Importer(LCIImporter):
18
18
  def write_database(self):
19
19
  if self.db_name in databases:
20
20
  print(f"Database {self.db_name} already exists: it will be overwritten.")
21
+ del databases[self.db_name]
21
22
  super().write_database()
22
23
 
23
24
 
@@ -227,3 +227,30 @@
227
227
  name: market for carbon dioxide, liquid
228
228
  reference product: carbon dioxide, liquid
229
229
  location: RoW
230
+
231
+ - name: waste paper, unsorted, Recycled Content cut-off
232
+ reference product: waste paper, unsorted
233
+ unit: kilogram
234
+ location: GLO
235
+ replacement:
236
+ name: market for waste paper, unsorted
237
+ reference product: waste paper, unsorted
238
+ location: RoW
239
+
240
+ - name: waste wood, post-consumer, Recycled Content cut-off
241
+ reference product: waste wood, post-consumer
242
+ unit: kilogram
243
+ location: GLO
244
+ replacement:
245
+ name: market for waste wood, post-consumer
246
+ reference product: waste wood, post-consumer
247
+ location: RoW
248
+
249
+ - name: iron scrap, unsorted, Recycled Content cut-off
250
+ reference product: iron scrap, unsorted
251
+ unit: kilogram
252
+ location: GLO
253
+ replacement:
254
+ name: market for iron scrap, unsorted
255
+ reference product: iron scrap, unsorted
256
+ location: GLO
@@ -45,20 +45,20 @@ diesel, synthetic, from wood: 3
45
45
  diesel, synthetic, from wood, with CCS: 3
46
46
  diesel, synthetic, from grass: 3
47
47
  diesel, synthetic, from grass, with CCS: 3
48
- biodiesel, oil: 3
49
- biodiesel, oil, with CCS: 3
50
- bioethanol, wood: 3
51
- bioethanol, wood, with CCS: 3
52
- bioethanol, grass: 3
53
- bioethanol, grass, with CCS: 3
54
- bioethanol, grain: 3
55
- bioethanol, grain, with CCS: 3
56
- bioethanol, sugar: 3
57
- bioethanol, sugar, with CCS: 3
58
- methanol, wood: 3
59
- methanol, wood, with CCS: 3
60
- methanol, grass: 3
61
- methanol, grass, with CCS: 3
48
+ biodiesel, from used cooking oil: 3
49
+ biodiesel, from used cooking oil, with CCS: 3
50
+ bioethanol, from wood: 3
51
+ bioethanol, from wood, with CCS: 3
52
+ bioethanol, from grass: 3
53
+ bioethanol, from grass, with CCS: 3
54
+ bioethanol, from grain: 3
55
+ bioethanol, from grain, with CCS: 3
56
+ bioethanol, from sugar: 3
57
+ bioethanol, from sugar, with CCS: 3
58
+ methanol, from wood: 3
59
+ methanol, from wood, with CCS: 3
60
+ methanol, from grass: 3
61
+ methanol, from grass, with CCS: 3
62
62
  natural gas: 3
63
63
  biomethane: 3
64
64
  petrol, synthetic, from electrolysis: 3
@@ -67,14 +67,14 @@ petrol, synthetic, from coal, with CCS: 3
67
67
  diesel, synthetic, from electrolysis: 3
68
68
  diesel, synthetic, from coal: 3
69
69
  diesel, synthetic, from coal, with CCS: 3
70
- hydrogen, electrolysis: 3
71
- hydrogen, biomass: 3
72
- hydrogen, biomass, with CCS: 3
73
- hydrogen, coal: 3
74
- hydrogen, nat. gas: 3
75
- hydrogen, nat. gas, with CCS: 3
76
- hydrogen, coal, with CCS: 3
77
- hydrogen, solar: 3
70
+ hydrogen, from electrolysis: 3
71
+ hydrogen, from biomass: 3
72
+ hydrogen, from biomass, with CCS: 3
73
+ hydrogen, from coal: 3
74
+ hydrogen, from natural gas: 3
75
+ hydrogen, from natural gas, with CCS: 3
76
+ hydrogen, from coal, with CCS: 3
77
+ hydrogen, from solar: 3
78
78
  cement, dry feed rotary kiln: 10
79
79
  steel - primary: 10
80
80
  steel - secondary: 10
@@ -43,20 +43,20 @@ diesel, synthetic, from wood: 35
43
43
  diesel, synthetic, from wood, with CCS: 35
44
44
  diesel, synthetic, from grass: 35
45
45
  diesel, synthetic, from grass, with CCS: 35
46
- biodiesel, oil: 35
47
- biodiesel, oil, with CCS: 35
48
- bioethanol, wood: 35
49
- bioethanol, wood, with CCS: 35
50
- bioethanol, grass: 35
51
- bioethanol, grass, with CCS: 35
52
- bioethanol, grain: 35
53
- bioethanol, grain, with CCS: 35
54
- bioethanol, sugar: 35
55
- bioethanol, sugar, with CCS: 35
56
- methanol, wood: 35
57
- methanol, wood, with CCS: 35
58
- methanol, grass: 35
59
- methanol, grass, with CCS: 35
46
+ biodiesel, from used cooking oil: 35
47
+ biodiesel, from used cooking oil, with CCS: 35
48
+ bioethanol, from wood: 35
49
+ bioethanol, from wood, with CCS: 35
50
+ bioethanol, from grass: 35
51
+ bioethanol, from grass, with CCS: 35
52
+ bioethanol, from grain: 35
53
+ bioethanol, from grain, with CCS: 35
54
+ bioethanol, from sugar: 35
55
+ bioethanol, from sugar, with CCS: 35
56
+ methanol, from wood: 35
57
+ methanol, from wood, with CCS: 35
58
+ methanol, from grass: 35
59
+ methanol, from grass, with CCS: 35
60
60
  natural gas: 35
61
61
  biomethane: 35
62
62
  petrol, synthetic, from electrolysis: 35
@@ -65,14 +65,14 @@ petrol, synthetic, from coal, with CCS: 35
65
65
  diesel, synthetic, from electrolysis: 35
66
66
  diesel, synthetic, from coal: 35
67
67
  diesel, synthetic, from coal, with CCS: 35
68
- hydrogen, electrolysis: 35
69
- hydrogen, biomass: 35
70
- hydrogen, biomass, with CCS: 35
71
- hydrogen, coal: 35
72
- hydrogen, nat. gas: 35
73
- hydrogen, nat. gas, with CCS: 35
74
- hydrogen, coal, with CCS: 35
75
- hydrogen, solar: 35
68
+ hydrogen, from electrolysis: 35
69
+ hydrogen, from biomass: 35
70
+ hydrogen, from biomass, with CCS: 35
71
+ hydrogen, from coal: 35
72
+ hydrogen, from natural gas: 35
73
+ hydrogen, from natural gas, with CCS: 35
74
+ hydrogen, from coal, with CCS: 35
75
+ hydrogen, from solar: 35
76
76
  cement, dry feed rotary kiln: 40
77
77
  steel - primary: 40
78
78
  steel - secondary: 40
@@ -0,0 +1,36 @@
1
+ gasoline:
2
+ - gasoline
3
+ - bioethanol, from wood
4
+ - bioethanol, from wood, with CCS
5
+ - bioethanol, from grass
6
+ - bioethanol, from grass, with CCS
7
+ - bioethanol, from grain
8
+ - bioethanol, from grain, with CCS
9
+ - bioethanol, from sugar
10
+ - bioethanol, from sugar, with CCS
11
+ - methanol, from wood
12
+ - methanol, from wood, with CCS
13
+ - methanol, from grass
14
+ - methanol, from grass, with CCS
15
+ diesel:
16
+ - diesel
17
+ - diesel, synthetic, from wood
18
+ - diesel, synthetic, from wood, with CCS
19
+ - diesel, synthetic, from grass
20
+ - diesel, synthetic, from grass, with CCS
21
+ - biodiesel, from used cooking oil
22
+ - biodiesel, from used cooking oil, with CCS
23
+ gas:
24
+ - natural gas
25
+ - biomethane
26
+
27
+ hydrogen:
28
+ - hydrogen, from electrolysis
29
+ - hydrogen, from biomass
30
+ - hydrogen, from biomass, with CCS
31
+ - hydrogen, from coal
32
+ - hydrogen, from coal, with CCS
33
+ - hydrogen, from natural gas
34
+ - hydrogen, from natural gas, with CCS
35
+
36
+
@@ -1,66 +1,66 @@
1
1
  from electrolysis:
2
2
  name: hydrogen production, gaseous, 30 bar, from PEM electrolysis, from grid electricity
3
- var: hydrogen, electrolysis
3
+ var: hydrogen, from electrolysis
4
4
  feedstock name: electricity, low voltage
5
5
  feedstock unit: kilowatt hour
6
6
  floor value: 48.0
7
7
  from SMR of biogas, with CCS:
8
8
  name: hydrogen production, steam methane reforming, from biomethane, high and low temperature, with CCS (MDEA, 98% eff.), 26 bar
9
- var: hydrogen, biomass, with CCS
9
+ var: hydrogen, from biogas, with CCS
10
10
  feedstock name: biomethane
11
11
  feedstock unit: kilogram
12
12
  floor value: 3.2
13
13
  from SMR of biogas:
14
14
  name: hydrogen production, steam methane reforming, from biomethane, high and low temperature, 26 bar
15
- var: hydrogen, biomass
15
+ var: hydrogen, from biogas
16
16
  feedstock name: biomethane
17
17
  feedstock unit: kilogram
18
18
  floor value: 3.2
19
- from SMR of nat. gas:
19
+ from SMR of natural gas:
20
20
  name: hydrogen production, steam methane reforming of natural gas, 25 bar
21
- var: hydrogen, nat. gas
21
+ var: hydrogen, from natural gas
22
22
  feedstock name: natural gas
23
23
  feedstock unit: cubic meter
24
24
  floor value: 3.5
25
- from SMR of nat. gas, with CCS:
25
+ from SMR of natural gas, with CCS:
26
26
  name: hydrogen production, steam methane reforming of natural gas, with CCS (MDEA, 98% eff.), 25 bar
27
- var: hydrogen, nat. gas, with CCS
27
+ var: hydrogen, from natural gas, with CCS
28
28
  feedstock name: natural gas
29
29
  feedstock unit: cubic meter
30
30
  floor value: 3.5
31
31
  from gasification of biomass, with CCS:
32
32
  name: hydrogen production, gaseous, 25 bar, from gasification of woody biomass in entrained flow gasifier, with CCS, at gasification plant
33
- var: hydrogen, biomass, with CCS
33
+ var: hydrogen, from biomass, with CCS
34
34
  feedstock name: wood chips
35
35
  feedstock unit: kilogram
36
36
  floor value: 7
37
37
  from gasification of biomass:
38
38
  name: hydrogen production, gaseous, 25 bar, from gasification of woody biomass in entrained flow gasifier, at gasification plant
39
- var: hydrogen, biomass
39
+ var: hydrogen, from biomass
40
40
  feedstock name: wood chips
41
41
  feedstock unit: kilogram
42
42
  floor value: 7
43
43
  from coal gasification:
44
44
  name: hydrogen production, gaseous, 30 bar, from hard coal gasification and reforming, at coal gasification plant
45
- var: hydrogen, coal
45
+ var: hydrogen, from coal
46
46
  feedstock name: hard coal
47
47
  feedstock unit: kilogram
48
48
  floor value: 5
49
49
  from coal gasification, with CCS:
50
50
  name: hydrogen production, gaseous, 30 bar, from hard coal gasification and reforming, with CCS, at coal gasification plant
51
- var: hydrogen, coal
51
+ var: hydrogen, from coal, with CCS
52
52
  feedstock name: hard coal
53
53
  feedstock unit: kilogram
54
54
  floor value: 5
55
55
  from pyrolysis:
56
56
  name: hydrogen production, gaseous, 100 bar, from methane pyrolysis
57
- var: hydrogen, pyrolsis
57
+ var: hydrogen, from pyrolysis
58
58
  feedstock name: natural gas
59
59
  feedstock unit: cubic meter
60
60
  floor value: 6.5
61
61
  from thermochemical water splitting:
62
62
  name: hydrogen production, gaseous, 25 bar, from thermochemical water splitting, at solar tower
63
- var: hydrogen, solar
63
+ var: hydrogen, from solar
64
64
  feedstock name: Energy, solar, converted
65
65
  feedstock unit: megajoule
66
66
  floor value: 180
@@ -2062,6 +2062,7 @@ Plutonium-alpha;air;urban air close to ground;kilo Becquerel;56bfa732-8223-4091-
2062
2062
  Dichlorprop-P;soil;agricultural;kilogram;02dd7309-b7c2-47bb-82c8-09345be9c2bb
2063
2063
  Caesium-136;water;ground-, long-term;kilo Becquerel;f577fd0b-1d06-40cb-9c9f-682d12b9515f
2064
2064
  Gas, natural;natural resource;in ground;standard cubic meter;7c337428-fb1b-45c7-bbb2-2ee4d29e17ba
2065
+ Gas, natural;natural resource;in ground;Sm3;7c337428-fb1b-45c7-bbb2-2ee4d29e17ba
2065
2066
  Hydrocarbons, aliphatic, alkanes, cyclic;air;low population density, long-term;kilogram;a97ba30e-898d-4e73-bd62-ec8f636659c2
2066
2067
  Xylene;air;lower stratosphere + upper troposphere;kilogram;6da40876-a6ab-459e-ba17-9a5e3d4da146
2067
2068
  Metconazole;water;surface water;kilogram;3c1c8501-4d95-58ee-935e-44bc99853bf4
@@ -16,6 +16,14 @@ handlers:
16
16
  formatter: simple
17
17
  mode: w
18
18
 
19
+ file_biomass:
20
+ class: logging.FileHandler
21
+ level: INFO
22
+ filename: "export/logs/premise_biomass.log"
23
+ encoding: utf8
24
+ formatter: simple
25
+ mode: w
26
+
19
27
  file_electricity:
20
28
  class: logging.FileHandler
21
29
  level: INFO
@@ -94,6 +102,11 @@ loggers:
94
102
  handlers: [file_dac]
95
103
  propagate: False
96
104
 
105
+ biomass:
106
+ level: INFO
107
+ handlers: [ file_biomass ]
108
+ propagate: False
109
+
97
110
  electricity:
98
111
  level: INFO
99
112
  handlers: [ file_electricity ]