Wall Cuboid
Description
This type is a cube-Shaped luminaire that is attached to a wall.
- The Parameters
Length
,Width
, andHeight
will determine the housing dimensions. LuminousLength
,LuminousWidth
andLuminousHeight
determine the size of the luminous surfaces.- You can skew the housing by setting
TopLength
andTopWidth
. - You can define the light output areas trough
Type
asDirect
,Indirect
, orDirectIndirect
.
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 |
LuminousHeight | int | value in mm |
TopWidth | int | value in mm |
TopLength | int | value in mm |
Type | int | Direct, Indirect, DirectIndirect |
XSD
<xs:element name="WallCuboid">
<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="LuminousHeight" type="xs:int"/>
<xs:element name="TopWidth" type="xs:int" minOccurs="0"/>
<xs:element name="TopLength" type="xs:int" minOccurs="0"/>
<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:sequence>
</xs:complexType>
</xs:element>
XML
<P3D>
<WallCuboid>
<Width>400</Width>
<Length>400</Length>
<Height>800</Height>
<LuminousWidth>390</LuminousWidth>
<LuminousLength>390</LuminousLength>
<LuminousHeight>20</LuminousHeight>
<Type>DirectIndirect</Type>
</WallCuboid>
</P3D>