Skip to main content

Recessed Round

Description

Recessed Round

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.
  • LuminousHeight describes how far the luminaire protrudes from the mounting surface.
  • The luminaire can be mounted on ceilings, walls or floors (Mounting).
ParameterTypeExplanation
Diameterintvalue in mm
Heightintvalue in mm
LuminousDiameterintvalue in mm
TopDiameterintvalue in mm
LuminousHeightintvalue in mm
MountingintCeiling, Wall or Floor

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:element name="LuminousHeight" type="xs:int" minOccurs="0"/>
<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:sequence>
</xs:complexType>
</xs:element>

XML

<P3D>
<RecessedRound>
<Diameter>50</Diameter>
<Height>50</Height>
<LuminousDiameter>40</LuminousDiameter>
<TopDiameter>40</TopDiameter>
<LuminousHeight>10</LuminousHeight>
<Mounting>Ceiling</Mounting>
</RecessedRound>
</P3D>