![]() | Engine Type Enum |
![]() | Énumération des types de moteur |
| Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
|---|---|---|---|---|
| IfcEngineTypeEnum | ADDED |
Enumeration defining the typical types of engines.
HISTORY New enumeration in IFC4.
| Constant | Description |
|---|---|
| EXTERNALCOMBUSTION | Combustion is external. |
| INTERNALCOMBUSTION | Combustion is internal. |
| USERDEFINED | User-defined engine type. |
| NOTDEFINED | Undefined engine type. |
<xs:simpleType name="IfcEngineTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="externalcombustion"/>
<xs:enumeration value="internalcombustion"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcEngineTypeEnum = ENUMERATION OF (
EXTERNALCOMBUSTION,
INTERNALCOMBUSTION,
USERDEFINED,
NOTDEFINED);
END_TYPE;