Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into additional_value_co…
Browse files Browse the repository at this point in the history
…nstraints
  • Loading branch information
nmerket committed Apr 18, 2024
2 parents 8c85998 + 7ea333f commit 4f4e8a9
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 23 deletions.
2 changes: 1 addition & 1 deletion examples/upgrade.xml
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@
<EnergyFactor>1</EnergyFactor>
<RecoveryEfficiency>1</RecoveryEfficiency>
<WaterHeaterImprovement>
<PipeInsulated/>
<PipeInsulated>true</PipeInsulated>
</WaterHeaterImprovement>
</WaterHeatingSystem>
</WaterHeating>
Expand Down
32 changes: 21 additions & 11 deletions merged_schema/HPXMLMerged.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -2463,6 +2463,26 @@
<xs:documentation>Number of similar ceiling fans.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LabelEnergyUse" type="HPXMLDoubleGreaterThanZero">
<xs:annotation>
<xs:documentation>[W] Energy use per the EnergyGuide label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LabelAnnualCost" type="HPXMLDoubleGreaterThanZero">
<xs:annotation>
<xs:documentation>[$] Estimated yearly energy cost per the EnergyGuide label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LabelElectricRate" type="HPXMLDoubleGreaterThanZero">
<xs:annotation>
<xs:documentation>[$/kWh] Electric rate per the EnergyGuide label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LabelUsage" type="HPXMLDoubleGreaterThanZero">
<xs:annotation>
<xs:documentation>[hrs/day] Hours use per day per the EnergyGuide label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="extension" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="dataSource" type="DataSource"/>
Expand Down Expand Up @@ -5818,7 +5838,7 @@
<xs:element name="JacketInstalledIndicator" type="HPXMLBoolean" minOccurs="0"/>
<xs:element name="DispositionofExistingSystem" type="DispositionofExistingSystem" minOccurs="0"/>
<xs:element name="RepairsDescription" type="HPXMLString" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="PipeInsulated" type="PipeInsulated" minOccurs="0"/>
<xs:element name="PipeInsulated" type="HPXMLBoolean" minOccurs="0"/>
<xs:element name="LengthofPipeInsulated" type="LengthMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>[ft]</xs:documentation>
Expand Down Expand Up @@ -8602,16 +8622,6 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="PipeInsulated_simple">
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:complexType name="PipeInsulated">
<xs:simpleContent>
<xs:extension base="PipeInsulated_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="RecoveryEfficiency_simple">
<xs:restriction base="xs:double">
<xs:minExclusive value="0"/>
Expand Down
22 changes: 21 additions & 1 deletion schemas/HPXMLBaseElements.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -2449,6 +2449,26 @@
<xs:documentation>Number of similar ceiling fans.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LabelEnergyUse" type="HPXMLDoubleGreaterThanZero">
<xs:annotation>
<xs:documentation>[W] Energy use per the EnergyGuide label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LabelAnnualCost" type="HPXMLDoubleGreaterThanZero">
<xs:annotation>
<xs:documentation>[$] Estimated yearly energy cost per the EnergyGuide label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LabelElectricRate" type="HPXMLDoubleGreaterThanZero">
<xs:annotation>
<xs:documentation>[$/kWh] Electric rate per the EnergyGuide label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LabelUsage" type="HPXMLDoubleGreaterThanZero">
<xs:annotation>
<xs:documentation>[hrs/day] Hours use per day per the EnergyGuide label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="extension" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="dataSource" type="DataSource"/>
Expand Down Expand Up @@ -5804,7 +5824,7 @@
<xs:element name="JacketInstalledIndicator" type="HPXMLBoolean" minOccurs="0"/>
<xs:element name="DispositionofExistingSystem" type="DispositionofExistingSystem" minOccurs="0"/>
<xs:element name="RepairsDescription" type="HPXMLString" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="PipeInsulated" type="PipeInsulated" minOccurs="0"/>
<xs:element name="PipeInsulated" type="HPXMLBoolean" minOccurs="0"/>
<xs:element name="LengthofPipeInsulated" type="LengthMeasurement" minOccurs="0">
<xs:annotation>
<xs:documentation>[ft]</xs:documentation>
Expand Down
10 changes: 0 additions & 10 deletions schemas/HPXMLDataTypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -2351,16 +2351,6 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="PipeInsulated_simple">
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:complexType name="PipeInsulated">
<xs:simpleContent>
<xs:extension base="PipeInsulated_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="RecoveryEfficiency_simple">
<xs:restriction base="xs:double">
<xs:minExclusive value="0"/>
Expand Down

0 comments on commit 4f4e8a9

Please sign in to comment.