8000 Adds UsageBin element for water heaters by shorowit · Pull Request #276 · hpxmlwg/hpxml · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Adds UsageBin element for water heaters #276

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 2 commits into from
Jul 12, 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
5 changes: 5 additions & 0 deletions
Original file line number Diff line number Diff line change
Expand Up @@ -1444,6 +1444,11 @@
with the water heater fully heated.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="UsageBin" type="UsageBin">
<xs:annotation>
<xs:documentation>A water heater's usage bin is derived from its First Hour Rating (FHR) as part of the Uniform Energy Factor (UEF) testing procedures.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="GallonsPerMinute" type="Volume">
<xs:annotation>
<xs:documentation>[gal per minute] The amount of gallons per minute of hot water that can be supplied by an instantaneous water heater while maintaining a
Expand Down
15 changes: 15 additions & 0 deletions schemas/HPXMLDataTypes.xsd
Original file line number Diff line number Diff line change
795C Expand Up @@ -4201,6 +4201,21 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="UsageBin_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="very small"/>
<xs:enumeration value="low"/>
<xs:enumeration value="medium"/>
<xs:enumeration value="high"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="UsageBin">
<xs:simpleContent>
<xs:extension base="UsageBin_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="VentilationUnit_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="SLA"/>
Expand Down
0