Stand Cuboid Centered
Description
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 luminaireHeight
. The stand is always centered within the luminaire. - The default foot dimensions are the same as the main
Length
andWidth
. - 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
orReflectorDepth
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 withLuminousHeight
.Indirect
: LEO and LES are placed at the top center of the luminaire. All four sides grow downwards withLuminousHeight
.DirectIndirect
: LEO is placed in the center of the luminaire. LES on the top and bottom surfaces are centered. ALuminousHeight
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
Parameter | Type | Explanation |
---|---|---|
Width | int | Value in mm. |
Length | int | Value in mm. |
Height | int | Value in mm. |
LuminousWidth | int | Value in mm. |
LuminousLength | int | Value in mm. |
TopWidth | int | Value in mm (optional; default is 80% of Width ) |
TopLength | int | Value in mm (optional; default is 80% of Length ) |
TotalHeight | int | Value in mm. |
LuminousHeight | int | Value in mm (optional); describes how far the luminous part protrudes from the body. |
ReflectorDepth | int | Value in mm (optional); describes how far the luminous part is recessed into the body. |
Type | string | One of: Direct , Indirect , DirectIndirect (optional) |
HousingColor | string | 4 digit RAL color code (optional) |
FileName | string | Optional 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>