Enum Class HIPPSValve.VotingLogic

java.lang.Object
java.lang.Enum<HIPPSValve.VotingLogic>
neqsim.process.equipment.valve.HIPPSValve.VotingLogic
All Implemented Interfaces:
Serializable, Comparable<HIPPSValve.VotingLogic>, Constable
Enclosing class:
HIPPSValve

public static enum HIPPSValve.VotingLogic extends Enum<HIPPSValve.VotingLogic>
Voting logic options for redundant pressure transmitters.
Version:
$Id: $Id
Author:
ESOL
  • Enum Constant Details

    • ONE_OUT_OF_ONE

      public static final HIPPSValve.VotingLogic ONE_OUT_OF_ONE
      1 out of 1: Single transmitter (simplest, used for SIL 1).
    • ONE_OUT_OF_TWO

      public static final HIPPSValve.VotingLogic ONE_OUT_OF_TWO
      1 out of 2: Any one trips (high availability, some spurious trips).
    • TWO_OUT_OF_TWO

      public static final HIPPSValve.VotingLogic TWO_OUT_OF_TWO
      2 out of 2: Both must trip (low spurious, lower availability).
    • TWO_OUT_OF_THREE

      public static final HIPPSValve.VotingLogic TWO_OUT_OF_THREE
      2 out of 3: Any two trip (balanced, typical for SIL 2/3).
    • TWO_OUT_OF_FOUR

      public static final HIPPSValve.VotingLogic TWO_OUT_OF_FOUR
      2 out of 4: Any two trip (higher availability).
  • Field Details

    • notation

      private final String notation
  • Constructor Details

    • VotingLogic

      private VotingLogic(String notation)
  • Method Details

    • values

      public static HIPPSValve.VotingLogic[] 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 HIPPSValve.VotingLogic 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
    • getNotation

      public String getNotation()