Add design load reporting for convective water baseboard autosizing#11634
Conversation
|
|
|
|
| if (hWBaseboard.ScaledHeatingCapacity == DataSizing::AutoSize) { | ||
| CheckZoneSizing(state, CompType, CompName); | ||
| zoneEqSizing.HeatingCapacity = true; | ||
| zoneEqSizing.DesHeatingLoad = state.dataSize->FinalZoneSizing(state.dataSize->CurZoneEqNum).NonAirSysDesHeatLoad; | ||
| } |
There was a problem hiding this comment.
DesHeatingLoad is not set when DataSizing::HeatingDesignCapacity and hWBaseboard.ScaledHeatingCapacity != DataSizing::AutoSize. Is that a valid path? It seems like it would be based on this:
EnergyPlus/src/EnergyPlus/BaseboardRadiator.cc
Lines 620 to 625 in a3098ea
There was a problem hiding this comment.
I hard sized the baseboards to 2000 W and ScaledHeatingCapacity came through as 2000. I decided to just report the zone load for both baseboard types regardless of CapSizingMethod. If a zone sizing run is not performed then this column will not show in the table (or only zones that are sized will have data).
| BaseSizer::reportSizerOutput( | ||
| state, cCMO_BBRadiator_Water, hWBaseboard.Name, "Design Size Heating Load [W]", zoneEqSizing.DesHeatingLoad); |
There was a problem hiding this comment.
It appears that you're intending to report the design load, not the coil size with any scaling factors applied. If that's not right, let me know.
There was a problem hiding this comment.
Well, that's a good point. I was trying to report the load used to size the baseboard, however that load was determined. It's either NonAirSysDesHeatLoad for 2 of the cases or ScaledHeatingCapacity * FloorArea for CapacityPerFloorArea. I'm OK with reporting NonAirSysDesHeatLoad for all cases but then how to tell the user that this load is not what actually sized the baseboard for CapacityPerFloorArea? Another column for sizing method?
There was a problem hiding this comment.
I presume that sort of information would be useful, but I'm not sure what most users are looking for. I personally think it would be informative to know the load and the coil size separately. I don't know if the sizing method needs to be reported via the table since that's already in the inputs.
TLDR - I defer to you 😄
…into 4957-Baseboard-Load-Reporting
|
|




Pull request overview
Test files:
Description of the purpose of this PR
User request for design load used for autosizing convective water baseboards.
Pull Request Author
Reviewer