-
Notifications
You must be signed in to change notification settings - Fork 425
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Steam conversion factor #8266
Steam conversion factor #8266
Conversation
@JasonGlazer I think you worked on adding these originally? Do you have any insight here? If we do make this change, shouldn't we update the other factors here while we're at it? This might require transition rules (so old files use the same values as the old defaults), and documentation changes. |
I don't specifically remember but I would guess that it is based on the assumption of utilization of waste heat that is making electricity from a generator. It is possible that it needs to be that value to compensate for another conversion factor in the chain. Sorry, it was a long time ago. Before you make such a change, have you made sure that it functions like you would expect when you put in that conversion efficiency in an input file? Have you checked the code and how it is used? |
The steam factor seems to only be used for calculating the source energy use, but I will do some additional testing along with the CI checks to make sure it checks out with using an input file as well. |
So it looks like this input (sourceFactorSteam) and the value in the conversion table have no effect on the models. The steam energy use ends up under the District Heating category and uses the efficiencyDistrictHeating variable, which is equal to 0.3. Need to do a little more digging on this to determine the best path forward. |
Looks like the sourceFactorSteam variable is used directly for the Total and Net Source Energy for the Site and Source Energy table but a factor of 0.3 (no matter the sourceFactorSteam variable value) is used in the Source Energy End Use Components Summary report tables in being bundled with District Heating. We can probably leave it in the District Heating category if desired but just make sure the correct factor is being applied for steam vs district heating. The district heating site energy is using the natural gas source factor divided by 0.3 to calculate the source energy. |
I did a code review and the changes look fine. @nealkruis and @mitchute please take a look. |
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.
Looks good to me.
Seems reasonable to me as well, merge at will. |
Pull request overview
sourceFactorSteam
from 0.3 to the correct value of 1.20 in the Site to Source Energy Conversion Factors Table to match the intent of thePollution.SteamConvEffic
variable in the PollutionModule.cc file. The Total and Net Source Energy are calculated from thissourceFactorSteam
variable. ThefuelSourceFactor
variable for steam also needs to take into account thePollution.SteamConvEffic
variable to calculate the correct Source Energy End Use for District Heating when steam is used. Below shows the before and after for the relevant source energy use tables using anExterior:FuelEquipment
object with constant 1,000W steam use for the January.Also, Steam is not included as an option in the
FuelFactors
object for the user to define it.Big Table diffs are expected as this is changing the Site to Source Energy Conversion Factors for every html table output file.
Pull Request Author
Add to this list or remove from it as applicable. This is a simple templated set of guidelines.
Reviewer
This will not be exhaustively relevant to every PR.