Merge branch 'master' into feature/retrieve-irena

This commit is contained in:
Fabian Neumann 2023-10-11 16:17:15 +02:00 committed by GitHub
commit 97a5be1e84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 1 deletions

View File

@ -453,6 +453,7 @@ sector:
hydrogen_fuel_cell: true
hydrogen_turbine: false
SMR: true
SMR_cc: true
regional_co2_sequestration_potential:
enable: false
attribute: 'conservative estimate Mt'

View File

@ -79,6 +79,7 @@ allam_cycle,--,"{true, false}",Add option to include `Allam cycle gas power plan
hydrogen_fuel_cell,--,"{true, false}",Add option to include hydrogen fuel cell for re-electrification. Assuming OCGT technology costs
hydrogen_turbine,--,"{true, false}",Add option to include hydrogen turbine for re-electrification. Assuming OCGT technology costs
SMR,--,"{true, false}",Add option for transforming natural gas into hydrogen and CO2 using Steam Methane Reforming (SMR)
SMR CC,--,"{true, false}",Add option for transforming natural gas into hydrogen and CO2 using Steam Methane Reforming (SMR) and Carbon Capture (CC)
regional_co2 _sequestration_potential,,,
-- enable,--,"{true, false}",Add option for regionally-resolved geological carbon dioxide sequestration potentials based on `CO2StoP <https://setis.ec.europa.eu/european-co2-storage-database_en>`_.
-- attribute,--,string,Name of the attribute for the sequestration potential

1 Unit Values Description
79 hydrogen_fuel_cell -- {true, false} Add option to include hydrogen fuel cell for re-electrification. Assuming OCGT technology costs
80 hydrogen_turbine -- {true, false} Add option to include hydrogen turbine for re-electrification. Assuming OCGT technology costs
81 SMR -- {true, false} Add option for transforming natural gas into hydrogen and CO2 using Steam Methane Reforming (SMR)
82 SMR CC -- {true, false} Add option for transforming natural gas into hydrogen and CO2 using Steam Methane Reforming (SMR) and Carbon Capture (CC)
83 regional_co2 _sequestration_potential
84 -- enable -- {true, false} Add option for regionally-resolved geological carbon dioxide sequestration potentials based on `CO2StoP <https://setis.ec.europa.eu/european-co2-storage-database_en>`_.
85 -- attribute -- string Name of the attribute for the sequestration potential

View File

@ -31,6 +31,9 @@ Upcoming Release
* Rule ``retrieve_irena`` get updated values for renewables capacities.
* Split configuration to enable SMR and SMR CC.
**Bugs and Compatibility**

View File

@ -1392,7 +1392,7 @@ def add_storage_and_grids(n, costs):
lifetime=costs.at["coal", "lifetime"],
)
if options["SMR"]:
if options["SMR_cc"]:
n.madd(
"Link",
spatial.nodes,
@ -1410,6 +1410,7 @@ def add_storage_and_grids(n, costs):
lifetime=costs.at["SMR CC", "lifetime"],
)
if options["SMR"]:
n.madd(
"Link",
nodes + " SMR",