-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pellet boilers for decentral use #255
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1521,6 +1521,22 @@ def add_heat(n, costs): | |
capital_cost=costs.at[key, 'efficiency'] * costs.at[key, 'fixed'], | ||
lifetime=costs.at[key, 'lifetime'] | ||
) | ||
|
||
if options["biomass_boiler"] and name not in ["urban central"]: | ||
#TODO: Add surcharge for pellets | ||
n.madd("Link", | ||
nodes[name] + f" {name} biomass boiler", | ||
p_nom_extendable=True, | ||
bus0=spatial.biomass.df.loc[nodes[name], "nodes"].values, | ||
bus1=nodes[name] + f" {name} heat", | ||
bus2="co2 atmosphere", | ||
carrier=name + " biomass boiler", | ||
efficiency=costs.at['biomass boiler', 'efficiency'], | ||
efficiency2=costs.at['solid biomass', 'CO2 intensity']-costs.at['solid biomass', 'CO2 intensity'], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the biomass boilers do not emit any CO2 are they? If not, one can remove the connection to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, no net emissions as long as biomass is assumed to be carbon neutral. So yes this connection is technically not necessary (but maybe good to keep for consistency with other biomass techs?). I think both are ok, you decide! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Alright, I am going to remove it for now to be consistent with how we implement the biomass CHPs for example There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. one more question @millingermarkus the costs and efficiencies for the biomass boilers should they be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, that tech was missing in the main technology data, I made a pull request now: PyPSA/technology-data#61 |
||
capital_cost=costs.at['biomass boiler', 'efficiency'] * costs.at['biomass boiler', 'fixed'], | ||
lifetime=costs.at['biomass boiler', 'lifetime'] | ||
) | ||
|
||
|
||
if options["solar_thermal"]: | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this TODO still open?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it is, but not so urgent in my mind. A surcharge improves cost accuracy but this tech plays a very minor role in my runs so far anyway. I'll add the pelletisation cost to technology data and refer to it here when I get there.