First time here? Check out the Help page!
1 | initial version |
Don't add a thermostat to the zone that are unconditioned?
2 | No.2 Revision |
Don't add a thermostat to any HVAC system serving the zone that are unconditioned?zone.
See the DetermineBuildingFloorArea in OutputReportTabular.cc
:
if ( Zone( iZone ).isPartOfTotalArea ) {
buildingGrossFloorArea += curZoneArea;
// If a ZoneHVAC:EquipmentConnections is used for a zone then
// it is considered conditioned. Also ZONE SUPPLY PLENUM and ZONE RETURN PLENUM are
// also is considered conditioned.
if ( Zone( iZone ).SystemZoneNodeNumber > 0 ) {
buildingConditionedFloorArea += curZoneArea;
}
}