Building Element Part Type Enum | |
Enumération des types de partie d'élément de construction |
Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
---|---|---|---|---|
IfcBuildingElementPartTypeEnum | ADDED |
This enumeration defines the different types of building element parts.
HISTORY New enumeration in IFC4.
Constant | Description |
---|---|
INSULATION | The part provides thermal insulation, for example as insulation layer between wall panels in sandwich walls or as infill in stud walls. |
PRECASTPANEL | The part is a precast panel, usually as an internal or external layer in a sandwich wall panel. |
USERDEFINED | User-defined accessory. |
NOTDEFINED | Undefined accessory. |
<xs:simpleType name="IfcBuildingElementPartTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="insulation"/>
<xs:enumeration value="precastpanel"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcBuildingElementPartTypeEnum = ENUMERATION OF (
INSULATION,
PRECASTPANEL,
USERDEFINED,
NOTDEFINED);
END_TYPE;