Spot Cuboid
Description
A spotlight with a cuboid-shaped luminous head mounted on a bracket attached to a cubic base plate.
Dimensions
: Adjust the size of the luminaire by setting theWidth
,Length
, andHeight
.Luminous Features
:LuminousWidth
andLuminousLength
: Define the size of the luminous surfaces.LuminousHeight
orReflectorDepth
(optional):LuminousHeight
: Describes how far the luminous part protrudes from the housing.ReflectorDepth
: Describes how far the luminous part is recessed into the housing.
Base Dimensions
(optional): Modify the size of the base plate usingBaseWidth
,BaseLength
, andBaseHeight
.BaseWidth
andBaseLength
: Determine the footprint of the base plate.BaseHeight
: Sets the height of the base plate.
Bracket Connection
:- The distance from the connector of the bracket to the luminaire is equal to the
Height
of the luminaire head. - The length of the connection from the base surface to the bracket is 10% of the
Height
.
- The distance from the connector of the bracket to the luminaire is equal to the
Parameters
Parameter | Type | Explanation |
---|---|---|
Width | int | Base width of the luminaire in millimeters (mm). |
Length | int | Base length of the luminaire in millimeters (mm). |
Height | int | Height of the luminaire head in millimeters (mm). |
LuminousWidth | int | Width of the luminous surface in millimeters (mm). |
LuminousLength | int | Length of the luminous surface in millimeters (mm). |
LuminousHeight | int | Extent to which the luminous part protrudes from the housing (optional) (mm). |
ReflectorDepth | int | Extent to which the luminous part is recessed into the housing (optional) (mm). |
BaseWidth | int | Width of the base plate in millimeters (mm) (optional). |
BaseLength | int | Length of the base plate in millimeters (mm) (optional). |
BaseHeight | int | Height of the base plate in millimeters (mm) (optional). |
HousingColor | string | 4 digit RAL color code (optional). |
FileName | string | Optional file name (without an extension) (optional). |
XSD
<xs:element name="SpotCuboid">
<xs:complexType>
<xs:sequence>
<xs:element name="Width" type="xs:int"/>
<xs:element name="Length" type="xs:int"/>
<xs:element name="Height" type="xs:int"/>
<xs:element name="LuminousWidth" type="xs:int"/>
<xs:element name="LuminousLength" type="xs:int"/>
<xs:choice>
<xs:element name="LuminousHeight" type="xs:int"/>
<xs:element name="ReflectorDepth" type="xs:int"/>
</xs:choice>
<xs:element name="BaseWidth" type="xs:int" minOccurs="0"/>
<xs:element name="BaseLength" type="xs:int" minOccurs="0"/>
<xs:element name="BaseHeight" type="xs:int" minOccurs="0"/>
<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="SpotCuboid">
<SpotCuboid>
<Width>70</Width>
<Length>70</Length>
<Height>120</Height>
<LuminousWidth>60</LuminousWidth>
<LuminousLength>60</LuminousLength>
<LuminousHeight>30</LuminousHeight>
<BaseWidth>100</BaseWidth>
<BaseLength>20</BaseLength>
<BaseHeight>10</BaseHeight>
<FileName>example_filename</FileName>
</SpotCuboid>
</P3D>