Take DEA CHP assumptions for c_b and c_v, not old PyPSA ones #19
+43
−51
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR stops the script replacing the DEA values for the back pressure coefficient c_b and the c_v value with the old PyPSA values.
The old PyPSA values for c_b and c_v assume an extraction plant (like the DEA coal CHP) which has flexible production of heat and electricity within the feasibility diagram of Figure 4 in the Synergies paper.
However, if you look in DEA assumptions at "09b Wood Pellets Medium" (used for solid biomass CHP) and "Gas turbine simple cycle (large)" (used for gas CHP) they are not extraction plants but back pressure plants.
The back pressure coefficient in DEA c_b is simply:
c_b = name plate electricity efficiency / name plate heat efficiency
both measured when both heat and electricity are produced at maximum.
For the extraction plants, the efficiency is measured in condensation mode, i.e. no heat production.
With the old assumptions, the solid biomass CHP was under-producing heat for a given fuel input.
In our simulation results the plants produce along the back pressure line anyway for 99.5% of the time, so we don't need the full feasibility space.
I've correct the implementation in the PyPSA-Eur-Sec code too, see:
PyPSA/pypsa-eur-sec@098281b
The CHPs are now implemented as single links with heat output proportional to electricity output.