Skip to content

Commit

Permalink
Merge pull request NREL#10258 from NREL/HotFix-HVACType
Browse files Browse the repository at this point in the history
Corrects non-ASCII characters for Coil Sizing Details and other tables.
  • Loading branch information
Myoldmopar authored Sep 29, 2023
2 parents 80e035b + 49b5302 commit 7636e6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EnergyPlus/ReportCoilSelection.cc
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ void ReportCoilSelection::doFinalProcessingOfCoilData(EnergyPlusData &state)
// now search equipment
auto const &zoneEquipList = state.dataZoneEquip->ZoneEquipList(c->zoneEqNum);
if (zoneEquipList.NumOfEquipTypes == 1) { // this must be it, fill strings for type and name
c->typeHVACname = zoneEquipList.EquipType(1);
c->typeHVACname = zoneEquipList.EquipTypeName(1);
c->userNameforHVACsystem = zoneEquipList.EquipName(1);
c->coilLocation = "Zone Equipment";
} else if (zoneEquipList.NumOfEquipTypes > 1) {
Expand Down

0 comments on commit 7636e6b

Please sign in to comment.