-
Notifications
You must be signed in to change notification settings - Fork 22
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
Conversation
@@ -796,6 +796,18 @@ | |||
</xs:simpleContent> | |||
</xs:complexType> | |||
</xs:element> | |||
<xs:element name="DemisingAboveGradeWallArea" minOccurs="0"> | |||
<xs:annotation> | |||
<xs:documentation>Above grade demising wall area. (ft2)</xs:documentation> |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here's an example:
Line 4106 in 458dcc2
<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> |
BuildingSync.xsd
Outdated
@@ -796,6 +796,18 @@ | |||
</xs:simpleContent> | |||
</xs:complexType> | |||
</xs:element> | |||
<xs:element name="DemisingAboveGradeWallArea" minOccurs="0"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I propose changing the element name to: TotalCommonConditionedAboveGradeWallArea
and the documentation to: The total area of the above grade wall common with other conditioned buildings
</xs:annotation> | ||
<xs:complexType> | ||
<xs:simpleContent> | ||
<xs:extension base="xs:decimal"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Jie let's also add this as a non negative decimal.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
excellent!
``` | ||
|
||
## References | ||
https://www.pnnl.gov/main/publications/external/technical_reports/PNNL-25130.pdf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For reference, you can use:
- 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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Jie - minor requested changes - thanks for putting together!
1. Changed `DemisingAboveGradeWallArea` to `TotalCommonConditionedAboveGradeWallArea`. 2. Clarified definition and description.
<Site> | ||
<Buildings> | ||
<Building ID="G1"> | ||
<DemisingAboveGradeWallArea>1000</DemisingAboveGradeWallArea> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should use 1000.0 instead of 1000?
Our XML has such format.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The value is set to nonNegativeDecimal. So this is just a visual thing.
See proposal
Implementation in schema added