Parabolic
Description

Parabolic is a parabolic-shaped luminaire.
Diameter: Indicates the widest part of the luminaire.Height: Describes the total height of the luminaire.LuminousDiameter: Describes the diameter of the illuminated surface (optional).BaseDiameter: Has a default value of 50% of the main diameter (optional).BaseHeight: Has a default value of 50% of the main height (optional).Luminous Features: Specify eitherLuminousHeightorReflectorDepth:LuminousHeight: Describes how far the luminous part sticks out of the body.ReflectorDepth: Describes how far the luminaire is recessed into the body.
Mounting: The luminaire can be mounted on ceilings, walls, floors, or suspended from a pendulum.- If
Mountingis set toPendulum, thePendulumLengthmust be specified.
- If
- Optionally,
HousingColorcan be provided as a 4-digit RAL color code. - Optionally,
FileNamecan be provided (without an extension).
Parameters
| Parameter | Type | Explanation |
|---|---|---|
| Diameter | int | Value (mm). Widest part. |
| Height | int | Value (mm). Total height. |
| LuminousDiameter | int | Value (mm, optional). Illuminated surface. |
| LuminousHeight / ReflectorDepth | int | Value (mm). Pick one for body interaction. |
| BaseDiameter | int | Value (mm, optional). Default: 50% of Diameter. |
| BaseHeight | int | Value (mm, optional). Default: 50% of Height. |
| Mounting | string | Ceiling, Wall, Floor, Pendulum. |
| PendulumLength | int | Value (mm). Required for Pendulum. |
| HousingColor | string | 4-digit RAL code [1-9][0-9]{3} (optional). |
| FileName | string | Optional file name (no extension). |
XSD
<xs:element name="Parabolic">
<xs:complexType>
<xs:sequence>
<xs:element name="Diameter" type="xs:int"/>
<xs:element name="Height" type="xs:int"/>
<xs:element name="LuminousDiameter" type="xs:int" minOccurs="0"/>
<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="BaseDiameter" type="xs:int" minOccurs="0"/>
<xs:element name="BaseHeight" type="xs:int" minOccurs="0"/>
<xs:element name="Mounting">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Ceiling"/>
<xs:enumeration value="Wall"/>
<xs:enumeration value="Floor"/>
<xs:enumeration value="Pendulum"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PendulumLength" 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="Parabolic">
<Parabolic>
<Diameter>200</Diameter>
<Height>150</Height>
<LuminousDiameter>180</LuminousDiameter>
<LuminousHeight>50</LuminousHeight>
<BaseDiameter>100</BaseDiameter>
<BaseHeight>75</BaseHeight>
<Mounting>Ceiling</Mounting>
<HousingColor>9005</HousingColor>
<FileName>example_filename</FileName>
</Parabolic>
</P3D>