Skip to content

Add TotalCommonConditionedAboveGradeWallArea #306

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Mar 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions BuildingSync.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,18 @@
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="TotalCommonConditionedAboveGradeWallArea" minOccurs="0">
<xs:annotation>
<xs:documentation>Above grade demising wall area. (ft2)</xs:documentation>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might want to reverence the ASHRAE standard here. If you search in the schema there are a few places where we do this

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might want to reverence the ASHRAE standard here. If you search in the schema there are a few places where we do this

Could you point me to those places?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here's an example:

<xs:documentation>The annual amount of all the energy the premises consumes onsite, as reported on the utility bills. Calculated as imported energy (Eimp) - exported energy (Eexp) - net increase in stored imported energy (Es) (per ASHRAE 105-2014 Figure 5.6). (kBtu)</xs:documentation>

</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="auc:nonNegativeDecimal">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="OverallWindowToWallRatio" minOccurs="0" type="auc:BoundedDecimalZeroToOneWithSourceAttribute">
<xs:annotation>
<xs:documentation>Overall window to wall ratio of the facility. (0-1) (fraction)</xs:documentation>
Expand Down Expand Up @@ -17714,6 +17726,11 @@
<xs:enumeration value="Unknown"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="nonNegativeDecimal">
<xs:restriction base="xs:decimal">
<xs:minInclusive value="0"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="BoundedDecimalZeroToOne">
<xs:restriction base="xs:decimal">
<xs:minInclusive value="0"/>
Expand Down
65 changes: 65 additions & 0 deletions proposals/2021/Add TotalCommonConditionedAboveGradeWallArea.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Add TotalCommonConditionedAboveGradeWallArea

## Overview

This proposal is to add the `TotalCommonConditionedAboveGradeWallArea` child element under the `Building` element. This captures the total area of the above grade wall common with other conditioned buildings.

## Justification

Audit Template Tool defines demising wall as the total area of the above grade wall common with other conditioned buildings, as an overall building characteristic. However, the term demising wall has conflicting definition in other standards (such as interior partitions). To avoid ambiguity, we adopt the descriptive name `TotalCommonConditionedAboveGradeWallArea` instead of `DemisingAboveGradeWallArea`.

### UDFs
Currently, this is conveyed in Audit template via: `/auc:BuildingSync/auc:Facilities/auc:Facility/auc:Sites/auc:Site/auc:Buildings/auc:Building/auc:UserDefinedFields/auc:UserDefinedField[auc:FieldName/text() = Demising Above Grade Wall Area]/auc:FieldValue`. Our proposal is that it would rather look like:

```xml

<Facilities>
<Facility ID="F1">
<Sites>
<Site>
<Buildings>
<Building ID="G1">
<TotalCommonConditionedAboveGradeWallArea>1000</TotalCommonConditionedAboveGradeWallArea>
</Building>
</Buildings>
</Site>
</Sites>
</Facility>
</Facilities>

```

## Implementation

```xml

<xs:element name="Buildings" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Building" type="auc:BuildingType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A building is a single structure wholly or partially enclosed within exterior walls, or within exterior and abutment walls (party walls), and a roof, affording shelter to persons, animals, or property. A building can be two or more units held in the condominium form of ownership that are governed by the same board of managers.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
...
<xs:element name="TotalCommonConditionedAboveGradeWallArea" minOccurs="0">
<xs:annotation>
<xs:documentation>The total area of the above grade wall common with other conditioned buildings. (ft2)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="auc:nonNegativeDecimal">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
...
```

## References
https://help.buildingenergyscore.com/support/solutions/articles/8000053362-facility-description-construction (even though their usage of the term demising wall is incorrect)
ASHRAE Standard 211 6.2.1.2.b