Stack Terminal Type Enum |
An IfcStackTerminalTypeEnum defines the range of different types of stack terminal that can be specified for use at the top of a vertical stack subsystem.
HISTORY New type in IFC2x.
Constant | Description |
---|---|
BIRDCAGE | Guard cage, typically wire mesh, at the top of the stack preventing access by birds. |
COWL | A cowling placed at the top of a stack to eliminate downdraft. |
RAINWATERHOPPER | A box placed at the top of a rainwater downpipe to catch rainwater from guttering. |
USERDEFINED | User-defined type. |
NOTDEFINED | Undefined type. |
<xs:simpleType name="IfcStackTerminalTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="birdcage"/>
<xs:enumeration value="cowl"/>
<xs:enumeration value="rainwaterhopper"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcStackTerminalTypeEnum = ENUMERATION OF (
BIRDCAGE,
COWL,
RAINWATERHOPPER,
USERDEFINED,
NOTDEFINED);
END_TYPE;