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

Support commercial water heaters #334

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
Sep 13, 2022
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
23 changes: 19 additions & 4 deletions schemas/HPXMLBaseElements.xsd
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version='1.0' encoding='UTF-8'?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://hpxmlonline.com/2019/10" targetNamespace="http://hpxmlonline.com/2019/10" elementFormDefault="qualified" version="3.1">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://hpxmlonline.com/2019/10" targetNamespace="http://hpxmlonline.com/2019/10" elementFormDefault="qualified" version="3.1">
<xs:include schemaLocation="HPXMLDataTypes.xsd"/>
<xs:element name="XMLTransactionHeaderInformation">
<xs:annotation>
Expand Down Expand Up @@ -1544,6 +1543,11 @@
430, Subpart B, Appendix E.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="HeatPumpCOP" type="Efficiency">
<xs:annotation>
<xs:documentation>The dimensionless coefficient of performance, used to measure the efficiency of a commercial heat pump water heater.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="FirstHourRating" type="Volume">
<xs:annotation>
<xs:documentation>[gal per hour] An estimate of the maximum volume of hot water in gallons that a storage water heater can supply within an hour that begins
Expand Down Expand Up @@ -1609,9 +1613,9 @@
<xs:attribute name="dataSource" type="DataSource"/>
</xs:complexType>
</xs:element>
10000 <xs:element minOccurs="0" name="StandbyLoss" type="HPXMLDouble">
<xs:element minOccurs="0" name="StandbyLoss" type="StandbyLossType">
<xs:annotation>
<xs:documentation>[degF/hr] The standby heat loss rate for, e.g., indirect water heaters in degrees per hour. Published in the AHRI Consumer’s Directory of Certified Efficiency Ratings.</xs:documentation>
<xs:documentation>The standby heat loss rate for, e.g., indirect or commercial water heaters. Published in the AHRI Consumer’s Directory of Certified Efficiency Ratings.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MeetsACCA5QIHVACSpecification" type="HPXMLBoolean" minOccurs="0"/>
Expand Down Expand Up @@ -3494,6 +3498,17 @@
</xs:sequence>
<xs:attribute name="dataSource" type="DataSource"/>
</xs:complexType>
<xs:complexType name="StandbyLossType">
<xs:sequence>
<xs:element name="Units" type="StandbyLossUnits">
<xs:annotation>
<xs:documentation>For %/hr enter values as a fraction, i.e. 1.20%/hr = 0.0120 and 0.68%/hr = 0.0068.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="HPXMLDouble"/>
</xs:sequence>
<xs:attribute name="dataSource" type="DataSource"/>
</xs:complexType>
<xs:complexType name="HydronicDistributionInfo">
<xs:sequence>
<xs:element name="FractionHydronicPipeInsulated" type="Fraction" minOccurs="0"/>
Expand Down
17 changes: 15 additions & 2 deletions schemas/HPXMLDataTypes.xsd
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version='1.0' encoding='UTF-8'?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://hpxmlonline.com/2019/10" targetNamespace="http://hpxmlonline.com/2019/10" elementFormDefault="qualified" version="3.1">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://hpxmlonline.com/2019/10" targetNamespace="http://hpxmlonline.com/2019/10" elementFormDefault="qualified" version="3.1">
<xs:simpleType name="DataSource">
<xs:restriction base="xs:string">
<xs:enumeration value="user"/>
Expand Down Expand Up @@ -1840,6 +1839,20 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="StandbyLossUnits_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="F/hr"/>
<xs:enumeration value="%/hr"/>
<xs:enumeration value="Btu/hr"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="StandbyLossUnits">
<xs:simpleContent>
<xs:extension base="StandbyLossUnits_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DistrictSteamType_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="1-pipe"/>
Expand Down
0