Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
2

Conditioned floor area adjustment in OS?

asked 2016-06-03 03:32:59 -0500

DavidFGG's avatar

updated 2016-06-03 08:04:54 -0500

Is it possible to somehow adjust the conditioned floor area in OpenStudio?

By default the conditioned floor area equals the total floor area.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2016-06-03 04:15:19 -0500

updated 2016-06-03 04:23:35 -0500

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;
        }
    }
edit flag offensive delete link more

Comments

I think you're using IdealLoads given your other question. Just don't enable ideal loads for these zones too.

Julien Marrec's avatar Julien Marrec  ( 2016-06-03 04:24:37 -0500 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Careers

Question Tools

1 follower

Stats

Asked: 2016-06-03 03:32:59 -0500

Seen: 111 times

Last updated: Jun 03 '16