Medical Device Type Enum | |
Enumération des types d'équipement médical |
Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
---|---|---|---|---|
IfcMedicalDeviceTypeEnum | ADDED |
Enumeration defining the functional type of medical device.
HISTORY New enumeration in IFC4.
Constant | Description |
---|---|
AIRSTATION | Device that provides purified medical air, composed of an air compressor and air treatment line. |
FEEDAIRUNIT | Device that feeds air to an oxygen generator, composed of an air compressor, air treatment line, and an air receiver. |
OXYGENGENERATOR | Device that generates oxygen from air. |
OXYGENPLANT | Device that combines a feed air unit, oxygen generator, and backup oxygen cylinders. |
VACUUMSTATION | Device that provides suction, composed of a vacuum pump and bacterial filtration line. |
USERDEFINED | User-defined medical device type. |
NOTDEFINED | Undefined medical device type. |
<xs:simpleType name="IfcMedicalDeviceTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="airstation"/>
<xs:enumeration value="feedairunit"/>
<xs:enumeration value="oxygengenerator"/>
<xs:enumeration value="oxygenplant"/>
<xs:enumeration value="vacuumstation"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcMedicalDeviceTypeEnum = ENUMERATION OF (
AIRSTATION,
FEEDAIRUNIT,
OXYGENGENERATOR,
OXYGENPLANT,
VACUUMSTATION,
USERDEFINED,
NOTDEFINED);
END_TYPE;