ControlModeEnum

enum ControlModeEnum

The various modes of controlling the pump.

  • The pump is running at a constant speed.

    Declaration

    Swift

    case constantSpeed
  • The pump is regulating its speed to maintain a constant differential pressure over its flanges.

    Declaration

    Swift

    case constantPressure
  • The pump will regulate its speed to maintain a constant differential pressure over its flanges.

    Declaration

    Swift

    case proportionalPressure
  • The pump is regulating its speed to maintain a constant flow through the pump.

    Declaration

    Swift

    case constantFlow
  • The pump is regulating its speed to maintain a constant temperature.

    Declaration

    Swift

    case constantTemperature
  • The operation of the pump is automatically optimized to provide the most suitable performance with respect to comfort and energy savings.

    Declaration

    Swift

    case automatic
  • Creates a new instance with the specified raw value.

    If there is no value of the type that corresponds with the specified raw value, this initializer returns nil. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }
    
    print(PaperSize(rawValue: "Legal"))
    // Prints "Optional("PaperSize.Legal")"
    
    print(PaperSize(rawValue: "Tabloid"))
    // Prints "nil"
    

    Declaration

    Swift

    init?(rawValue: UInt64)

    Parameters

    rawValue

    The raw value to use for the new instance.