Conditioned floor area adjustment in OS?
Is it possible to somehow adjust the conditioned floor area in OpenStudio?
By default the conditioned floor area equals the total floor area.
add a comment
First time here? Check out the Help page!
Is it possible to somehow adjust the conditioned floor area in OpenStudio?
By default the conditioned floor area equals the total floor area.
Don't add any HVAC system serving the 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;
}
}
I think you're using IdealLoads given your other question. Just don't enable ideal loads for these zones too.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2016-06-03 03:32:59 -0600
Seen: 183 times
Last updated: Jun 03 '16