Skip to main content

Stand Cuboid Centered

Description

Stand Cuboid Centered

Stand Cuboid Centered is a cube-shaped standing luminaire. This parametric model allows you to define the TotalHeight and the Height of the luminaire (not including the stand).

  • The stand height is calculated as TotalHeight minus the luminaire Height. The stand is always centered within the luminaire.
  • The default foot dimensions are the same as the main Length and Width.
  • The default foot height is 2 cm. The width and length of the stand are 5 cm.
  • Luminous dimensions must be smaller than the main dimensions.
  • Either LuminousHeight or ReflectorDepth can be specified to describe how the luminaire interacts with the stand:
    • LuminousHeight: Describes how far the luminous part sticks out of the body.
    • ReflectorDepth: Describes how far the luminous part is recessed into the body.
  • Type defines the placement and growth direction of light emitters:
    • Direct: LEO and LES are placed at the bottom center of the luminaire. All four sides grow upwards with LuminousHeight.
    • Indirect: LEO and LES are placed at the top center of the luminaire. All four sides grow downwards with LuminousHeight.
    • DirectIndirect: LEO is placed in the center of the luminaire. LES on the top and bottom surfaces are centered. A LuminousHeight greater than 0 results in LES on all four surfaces.
  • Optionally, HousingColor can be provided as a 4-digit RAL color code.
  • Optionally, FileName can be provided (without an extension).

Parameters

ParameterTypeExplanation
WidthintValue in mm.
LengthintValue in mm.
HeightintValue in mm.
LuminousWidthintValue in mm.
LuminousLengthintValue in mm.
TopWidthintValue in mm (optional; default is 80% of Width)
TopLengthintValue in mm (optional; default is 80% of Length)
TotalHeightintValue in mm.
LuminousHeightintValue in mm (optional); describes how far the luminous part protrudes from the body.
ReflectorDepthintValue in mm (optional); describes how far the luminous part is recessed into the body.
TypestringOne of: Direct, Indirect, DirectIndirect (optional)
HousingColorstring4 digit RAL color code (optional)
FileNamestringOptional file name (without an extension) (optional)

XSD

<xs:element name="StandCuboidCentered">
<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:element name="TopWidth" type="xs:int" minOccurs="0"/>
<xs:element name="TopLength" type="xs:int" minOccurs="0"/>
<xs:element name="TotalHeight" type="xs:int"/>
<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="Type" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Direct"/>
<xs:enumeration value="Indirect"/>
<xs:enumeration value="DirectIndirect"/>
</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="StandCuboidCentered">
<StandCuboidCentered>
<Width>350</Width>
<Length>350</Length>
<Height>150</Height>
<LuminousWidth>340</LuminousWidth>
<LuminousLength>340</LuminousLength>
<TopWidth>250</TopWidth>
<TopLength>250</TopLength>
<TotalHeight>600</TotalHeight>
<LuminousHeight>50</LuminousHeight>
<HousingColor>9005</HousingColor>
<FileName>example_filename</FileName>
</StandCuboidCentered>
</P3D>