Skip to main content

Spot Cuboid

Description

Spot Cuboid

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 the Width, Length, and Height.
  • Luminous Features:
    • LuminousWidth and LuminousLength: Define the size of the luminous surfaces.
    • LuminousHeight or ReflectorDepth (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 using BaseWidth, BaseLength, and BaseHeight.
    • BaseWidth and BaseLength: 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.

Parameters

ParameterTypeExplanation
WidthintBase width of the luminaire in millimeters (mm).
LengthintBase length of the luminaire in millimeters (mm).
HeightintHeight of the luminaire head in millimeters (mm).
LuminousWidthintWidth of the luminous surface in millimeters (mm).
LuminousLengthintLength of the luminous surface in millimeters (mm).
LuminousHeightintExtent to which the luminous part protrudes from the housing (optional) (mm).
ReflectorDepthintExtent to which the luminous part is recessed into the housing (optional) (mm).
BaseWidthintWidth of the base plate in millimeters (mm) (optional).
BaseLengthintLength of the base plate in millimeters (mm) (optional).
BaseHeightintHeight of the base plate in millimeters (mm) (optional).
HousingColorstring4 digit RAL color code (optional).
FileNamestringOptional 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>