Recessed Round
Description
Recessed Round
is a round recessed luminaire.
- The
Diameter
indicates the widest part of the luminaire. - The
Height
describes the total height, including the recessed and protruding parts of the luminaire. LuminousDiameter
describes the diameter of the illuminated surface.- The
TopDiameter
is, by default, 80% of the total diameter and describes the diameter of the recessed part. - Either
LuminousHeight
orReflectorDepth
can be specified to describe how far the luminaire protrudes from the mounting surface or the depth of the reflector, respectively. - The luminaire can be mounted on ceilings, walls, or floors (
Mounting
).
Parameters
Parameter | Type | Explanation |
---|---|---|
Diameter | int | Value in mm |
Height | int | Value in mm |
LuminousDiameter | int | Value in mm |
TopDiameter | int | Value in mm |
LuminousHeight | int | Value in mm |
ReflectorDepth | int | Value in mm |
Mounting | string | Ceiling, Wall or Floor |
HousingColor | string | 4 digit RAL color code |
FileName | string | Optional file name (without an extension) |
XSD
<xs:element name="RecessedRound">
<xs:complexType>
<xs:sequence>
<xs:element name="Diameter" type="xs:int"/>
<xs:element name="Height" type="xs:int"/>
<xs:element name="LuminousDiameter" type="xs:int"/>
<xs:element name="TopDiameter" type="xs:int" minOccurs="0"/>
<xs:choice minOccurs="0">
<xs:element name="LuminousHeight" type="xs:int" minOccurs="0"/>
<xs:element name="ReflectorDepth" type="xs:int" minOccurs="0"/>
</xs:choice>
<xs:element name="Mounting">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Ceiling"/>
<xs:enumeration value="Wall"/>
<xs:enumeration value="Floor"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="HousingColor" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[1-9][0-9]{3}"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FileName" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
XML
Example
<P3D filename="RecessedRound">
<RecessedRound>
<Diameter>100</Diameter>
<Height>150</Height>
<LuminousDiameter>80</LuminousDiameter>
<TopDiameter>100</TopDiameter>
<LuminousHeight>20</LuminousHeight>
<Mounting>Ceiling</Mounting>
<HousingColor>9005</HousingColor>
<FileName>example_filename</FileName>
</RecessedRound>
</P3D>