Skip to content

Commit

Permalink
Merge pull request #165 from hpxmlwg/lighting_fractions
Browse files Browse the repository at this point in the history
Lighting fraction improvements
  • Loading branch information
nmerket authored Jul 26, 2019
2 parents d066f04 + 04666f8 commit 0d5408c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 27 deletions.
32 changes: 5 additions & 27 deletions schemas/BaseElements.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1828,6 +1828,11 @@
<xs:element minOccurs="0" ref="AttachedToSpace"/>
<xs:element minOccurs="0" name="Location" type="LightingLocation"/>
<xs:element name="NumberofUnits" type="xs:integer" minOccurs="0"/>
<xs:element minOccurs="0" name="FractionofUnitsInLocation" type="Fraction">
<xs:annotation>
<xs:documentation>The fraction of lighting units in the specified Location, where all the fractions for the Location sum to 1. If a Location is not specified, fractions apply to the entire building.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LightingType" type="LightingType"/>
<xs:element minOccurs="0" name="AverageLumens" type="xs:double">
<xs:annotation>
Expand Down Expand Up @@ -1887,33 +1892,6 @@
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" name="LightingFractions">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="FractionIncandescent" type="Fraction">
<xs:annotation>
<xs:documentation>Fraction of lights that are incandescent.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="FractionCFL" type="Fraction">
<xs:annotation>
<xs:documentation>Fraction of the lights that are compact fluorescent.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="FractionLFL" type="Fraction">
<xs:annotation>
<xs:documentation>Fraction of the lights that are linear fluorescent.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="FractionLED" type="Fraction">
<xs:annotation>
<xs:documentation>Fraction of lights that are LED.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="extension" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element maxOccurs="unbounded" minOccurs="0" name="CeilingFan">
<xs:complexType>
<xs:sequence>
Expand Down
10 changes: 10 additions & 0 deletions schemas/HPXMLDataTypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,7 @@
<xs:restriction base="xs:string">
<xs:enumeration value="interior"/>
<xs:enumeration value="exterior"/>
<xs:enumeration value="garage"/>
<xs:enumeration value="common area"/>
</xs:restriction>
</xs:simpleType>
Expand Down Expand Up @@ -737,7 +738,14 @@
<xs:simpleType name="LightingThirdPartyCertification">
<xs:restriction base="xs:string">
<xs:enumeration value="Energy Star"/>
<xs:enumeration value="Energy Star Most Efficient"/>
<xs:enumeration value="CEE Tier 1"/>
<xs:enumeration value="CEE Tier 2"/>
<xs:enumeration value="CEE Tier 3"/>
<xs:enumeration value="ERI Tier I"/>
<xs:enumeration value="ERI Tier II"/>
<xs:enumeration value="other"/>
<xs:enumeration value="unknown"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="LightingDailyHours">
Expand Down Expand Up @@ -2063,6 +2071,8 @@
<xs:enumeration value="CEE Tier 1"/>
<xs:enumeration value="CEE Tier 2"/>
<xs:enumeration value="CEE Tier 3"/>
<xs:enumeration value="ERI Tier I"/>
<xs:enumeration value="ERI Tier II"/>
<xs:enumeration value="other"/>
<xs:enumeration value="unknown"/>
</xs:restriction>
Expand Down

0 comments on commit 0d5408c

Please sign in to comment.