Enum Class ValveTravelModel

java.lang.Object
java.lang.Enum<ValveTravelModel>
neqsim.process.equipment.valve.ValveTravelModel
All Implemented Interfaces:
Serializable, Comparable<ValveTravelModel>, Constable

public enum ValveTravelModel extends Enum<ValveTravelModel>
Enumerates the available dynamic travel models that can be applied to valves.
  • Enum Constant Details

    • NONE

      public static final ValveTravelModel NONE
      No dynamic travel is applied; the valve position changes instantaneously.
    • LINEAR_RATE_LIMIT

      public static final ValveTravelModel LINEAR_RATE_LIMIT
      The valve position changes with a limited slew rate corresponding to a defined travel time.
    • FIRST_ORDER_LAG

      public static final ValveTravelModel FIRST_ORDER_LAG
      The valve position follows a first order response with a configurable time constant.
  • Constructor Details

    • ValveTravelModel

      private ValveTravelModel()
  • Method Details

    • values

      public static ValveTravelModel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ValveTravelModel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null