@IfcClass(layer=DOMAIN, type=ENUMERATION) public enum IfcControllerTypeEnum extends Enum<IfcControllerTypeEnum>
| 枚举常量和说明 |
|---|
FLOATING
Output increases or decreases at a constant or accelerating rate
|
NOTDEFINED |
PROPORTIONAL
Output is proportional to the control error
|
PROPORTIONALINTEGRAL
Part of the output is proportional to the control error and part is proportional to the time integral
of the control error
|
PROPORTIONALINTEGRALDERIVATIVE
part of the output is proportional to the control error, part is proportional to the time integral of
the control error and part is proportional to the time derivative of the control error
|
TIMEDTWOPOSITION
Output changes state for a time interval proportional to the deviation from setpoint
|
TWOPOSITION
Binary output, can be either on or off
|
USERDEFINED |
public static final IfcControllerTypeEnum FLOATING
public static final IfcControllerTypeEnum PROPORTIONAL
public static final IfcControllerTypeEnum PROPORTIONALINTEGRAL
public static final IfcControllerTypeEnum PROPORTIONALINTEGRALDERIVATIVE
public static final IfcControllerTypeEnum TIMEDTWOPOSITION
public static final IfcControllerTypeEnum TWOPOSITION
public static final IfcControllerTypeEnum USERDEFINED
public static final IfcControllerTypeEnum NOTDEFINED
public static IfcControllerTypeEnum[] values()
for (IfcControllerTypeEnum c : IfcControllerTypeEnum.values()) System.out.println(c);
public static IfcControllerTypeEnum valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.