-
Notifications
You must be signed in to change notification settings - Fork 466
Closed
Labels
TriageIssue needs to be assessed and labeled, further information on reported might be neededIssue needs to be assessed and labeled, further information on reported might be neededUnconfirmedDefectDefect has not yet confirmed to be an actual issueDefect has not yet confirmed to be an actual issue
Description
Issue overview
Review of code in HVACManager shows these lines:
for (ListNum = 1; ListNum <= state.dataHeatBal->NumOfZoneLists; ++ListNum) {
auto &zoneList = state.dataHeatBal->ZoneList(ListNum);
for (ZoneNum = 1; ZoneNum <= zoneList.NumOfZones; ++ZoneNum) {
auto const &zoneSysEnergyDemand = state.dataZoneEnergyDemand->ZoneSysEnergyDemand(zoneList.Zone(ZoneNum));
Mult = state.dataHeatBal->Zone(ZoneNum).Multiplier;
where in Mult = state.dataHeatBal->Zone(ZoneNum).Multiplier; the zone index should be the same as the zone index used in the line above as:
Mult = state.dataHeatBal->Zone(zoneList.Zone(ZoneNum)).Multiplier;
see https://github.com/NREL/EnergyPlus/blob/develop/src/EnergyPlus/HVACManager.cc#L2185-L2189
Operating System (Multiple choices)
Windows
Operating System Version
Windows 11
Version of EnergyPlus
25.2
Unmethours link or helpdesk ticket number
N/A
Defect file
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
TriageIssue needs to be assessed and labeled, further information on reported might be neededIssue needs to be assessed and labeled, further information on reported might be neededUnconfirmedDefectDefect has not yet confirmed to be an actual issueDefect has not yet confirmed to be an actual issue