Merge pull request #243 from ebbekyhl/Coal-carbon-capture

Add coal with carbon capture
This commit is contained in:
Fabian Neumann 2022-06-28 14:04:31 +02:00 committed by GitHub
commit 8b134405dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View File

@ -232,6 +232,7 @@ sector:
marginal_cost_storage: 0. #1e-4 marginal_cost_storage: 0. #1e-4
methanation: true methanation: true
helmeth: true helmeth: true
coal_cc: false
dac: true dac: true
co2_vent: true co2_vent: true
SMR: true SMR: true

View File

@ -1118,6 +1118,24 @@ def add_storage_and_grids(n, costs):
lifetime=costs.at['helmeth', 'lifetime'] lifetime=costs.at['helmeth', 'lifetime']
) )
if options.get('coal_cc'):
n.madd("Link",
spatial.nodes,
suffix=" coal CC",
bus0=spatial.coal.nodes,
bus1=spatial.nodes,
bus2="co2 atmosphere",
bus3="co2 stored",
marginal_cost=costs.at['coal', 'efficiency'] * costs.at['coal', 'VOM'], #NB: VOM is per MWel
capital_cost=costs.at['coal', 'efficiency'] * costs.at['coal', 'fixed'] + costs.at['biomass CHP capture', 'fixed'] * costs.at['coal', 'CO2 intensity'], #NB: fixed cost is per MWel
p_nom_extendable=True,
carrier="coal",
efficiency=costs.at['coal', 'efficiency'],
efficiency2=costs.at['coal', 'CO2 intensity'] * (1 - costs.at['biomass CHP capture','capture_rate']),
efficiency3=costs.at['coal', 'CO2 intensity'] * costs.at['biomass CHP capture','capture_rate'],
lifetime=costs.at['coal','lifetime']
)
if options['SMR']: if options['SMR']: