Merge branch 'master' into feature/retrieve-irena
This commit is contained in:
commit
97a5be1e84
@ -453,6 +453,7 @@ sector:
|
|||||||
hydrogen_fuel_cell: true
|
hydrogen_fuel_cell: true
|
||||||
hydrogen_turbine: false
|
hydrogen_turbine: false
|
||||||
SMR: true
|
SMR: true
|
||||||
|
SMR_cc: true
|
||||||
regional_co2_sequestration_potential:
|
regional_co2_sequestration_potential:
|
||||||
enable: false
|
enable: false
|
||||||
attribute: 'conservative estimate Mt'
|
attribute: 'conservative estimate Mt'
|
||||||
|
@ -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_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
|
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,--,"{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,,,
|
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>`_.
|
-- 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
|
-- attribute,--,string,Name of the attribute for the sequestration potential
|
||||||
|
|
@ -31,6 +31,9 @@ Upcoming Release
|
|||||||
|
|
||||||
* Rule ``retrieve_irena`` get updated values for renewables capacities.
|
* Rule ``retrieve_irena`` get updated values for renewables capacities.
|
||||||
|
|
||||||
|
* Split configuration to enable SMR and SMR CC.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**Bugs and Compatibility**
|
**Bugs and Compatibility**
|
||||||
|
|
||||||
|
@ -1392,7 +1392,7 @@ def add_storage_and_grids(n, costs):
|
|||||||
lifetime=costs.at["coal", "lifetime"],
|
lifetime=costs.at["coal", "lifetime"],
|
||||||
)
|
)
|
||||||
|
|
||||||
if options["SMR"]:
|
if options["SMR_cc"]:
|
||||||
n.madd(
|
n.madd(
|
||||||
"Link",
|
"Link",
|
||||||
spatial.nodes,
|
spatial.nodes,
|
||||||
@ -1410,6 +1410,7 @@ def add_storage_and_grids(n, costs):
|
|||||||
lifetime=costs.at["SMR CC", "lifetime"],
|
lifetime=costs.at["SMR CC", "lifetime"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if options["SMR"]:
|
||||||
n.madd(
|
n.madd(
|
||||||
"Link",
|
"Link",
|
||||||
nodes + " SMR",
|
nodes + " SMR",
|
||||||
|
Loading…
Reference in New Issue
Block a user