8000 Buried ducts by shorowit · Pull Request #376 · hpxmlwg/hpxml · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Buried ducts #376

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 16 commits into from
Jul 11, 2023
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
31 changes: 30 additions & 1 deletion merged_schema/HPXMLMerged.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -3836,13 +3836,27 @@
<xs:element name="DuctType" type="DuctType" minOccurs="0"/>
<xs:element name="DuctMaterial" type="DuctMaterial" minOccurs="0"/>
<xs:element minOccurs="0" name="DuctInsulationMaterial" type="InsulationMaterial"/>
<xs:element name="DuctInsulationRValue" type="RValue" minOccurs="0"/>
<xs:element name="DuctInsulationRValue" type="RValue" minOccurs="0">
<xs:annotation>
<xs:documentation>This should exclude the exterior air film -- e.g., use zero for uninsulated ducts. For ducts buried in insulation, this should only represent any surrounding insulation duct wrap and not the entire attic insulation R-value.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="DuctInsulationThickness" type="LengthMeasurement">
<xs:annotatio 8000 n>
<xs:documentation>[in]</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="DuctInsulationCondition" type="InsulationCondition"/>
<xs:element minOccurs="0" name="DuctBuriedInsulationLevel" type="DuctBuriedInsulationLevel">
<xs:annotation>
<xs:documentation>Describes ducts buried in, e.g., attic loose-fill insulation. Partially buried ducts have insulation that does not cover the top of the ducts. Fully buried ducts have insulation that just covers the top of the ducts. Deeply buried ducts have insulation that continues above the top of the ducts. See https://basc.pnnl.gov/resource-guides/ducts-buried-attic-insulation for more information.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="DuctEffectiveRValue" type="RValue">
<xs:annotation>
<xs:documentation>The overall effective R-value. Includes the exterior air film as well as other effects such as adjustments for insulation wrapped around round ducts, or ducts buried in attic insulation.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DuctLocation" type="DuctLocation" minOccurs="0"/>
<xs:element minOccurs="0" name="FractionDuctArea" type="Fraction">
<xs:annotation>
Expand Down Expand Up @@ -7980,6 +7994,21 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DuctBuriedInsulationLevel_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="not buried"/>
<xs:enumeration value="partially buried"/>
<xs:enumeration value="fully buried"/>
<xs:enumeration value="deeply buried"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DuctBuriedInsulationLevel">
<xs:simpleContent>
<xs:extension base="DuctBuriedInsulationLevel_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DuctLocation_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="attic"/>
Expand Down
16 changes: 15 additions & 1 deletion schemas/HPXMLBaseElements.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -3822,13 +3822,27 @@
<xs:element name="DuctType" type="DuctType" minOccurs="0"/>
<xs:element name="DuctMaterial" type="DuctMaterial" minOccurs="0"/>
<xs:element minOccurs="0" name="DuctInsulationMaterial" type="InsulationMaterial"/>
<xs:element name="DuctInsulationRValue" type="RValue" minOccurs="0"/>
<xs:element name="DuctInsulationRValue" type="RValue" minOccurs="0">
<xs:annotation>
<xs:documentation>This should exclude the exterior air film -- e.g., use zero for uninsulated ducts. For ducts buried in insulation, this should only represent any surrounding insulation duct wrap and not the entire attic insulation R-value.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="DuctInsulationThickness" type="LengthMeasurement">
<xs:annotation>
<xs:documentation>[in]</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="DuctInsulationCondition" type="InsulationCondition"/>
<xs:element minOccurs="0" name="DuctBuriedInsulationLevel" type="DuctBuriedInsulationLevel">
<xs:annotation>
<xs:documentation>Describes ducts buried in, e.g., attic loose-fill insulation. Partially buried ducts have insulation that does not cover the top of the ducts. Fully buried ducts have insulation that just covers the top of the ducts. Deeply buried ducts have insulation that continues above the top of the ducts. See https://basc.pnnl.gov/resource-guides/ducts-buried-attic-insulation for more information.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="DuctEffectiveRValue" type="RValue">
<xs:annotation>
<xs:documentation>The overall effective R-value. Includes the exterior air film as well as other effects such as adjustments for insulation wrapped around round ducts, or ducts buried in attic insulation.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DuctLocation" type="DuctLocation" minOccurs="0"/>
<xs:element minOccurs="0" name="FractionDuctArea" type="Fraction">
<xs:annotation>
Expand Down
8000
15 changes: 15 additions & 0 deletions schemas/HPXMLDataTypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1953,6 +1953,21 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DuctBuriedInsulationLevel_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="not buried"/>
<xs:enumeration value="partially buried"/>
<xs:enumeration value="fully buried"/>
<xs:enumeration value="deeply buried"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DuctBuriedInsulationLevel">
<xs:simpleContent>
<xs:extension base="DuctBuriedInsulationLevel_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DuctLocation_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="attic"/>
Expand Down
0