Skip to content

Commit

Permalink
Allow duct leakage to be zero.
Browse files Browse the repository at this point in the history
  • Loading branch information
shorowit committed Feb 7, 2024
1 parent bc9a637 commit a02b52d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion schemas/HPXMLBaseElements.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -4716,7 +4716,7 @@
<xs:documentation>For Percent enter values as a fractional number, i.e. 30% = 0.3</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="HPXMLDoubleGreaterThanZero" minOccurs="0"/>
<xs:element name="Value" type="MeasuredDuctLeakage" minOccurs="0"/>
<xs:element minOccurs="0" name="TotalOrToOutside" type="DuctLeakageTotalOrToOutside"/>
</xs:sequence>
<xs:attribute name="dataSource" type="DataSource"/>
Expand Down
12 changes: 12 additions & 0 deletions schemas/HPXMLDataTypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -2142,6 +2142,18 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="MeasuredDuctLeakage_simple">
<xs:restriction base="xs:double">
<xs:minInclusive value="0"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="MeasuredDuctLeakage">
<xs:simpleContent>
<xs:extension base="MeasuredDuctLeakage_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<!--HVAC System Below-->
<xs:simpleType name="AirHandlerStaticPressureMeasurementLocation_simple">
<xs:restriction base="xs:string">
Expand Down

0 comments on commit a02b52d

Please sign in to comment.