Enum Class OilWaterFlowRegimeDetector.OilWaterFlowRegime
java.lang.Object
java.lang.Enum<OilWaterFlowRegimeDetector.OilWaterFlowRegime>
neqsim.process.equipment.pipeline.twophasepipe.closure.OilWaterFlowRegimeDetector.OilWaterFlowRegime
- All Implemented Interfaces:
Serializable, Comparable<OilWaterFlowRegimeDetector.OilWaterFlowRegime>, Constable
- Enclosing class:
OilWaterFlowRegimeDetector
public static enum OilWaterFlowRegimeDetector.OilWaterFlowRegime
extends Enum<OilWaterFlowRegimeDetector.OilWaterFlowRegime>
Oil-water flow regime enumeration.
- Version:
- 1.0
- Author:
- Even Solbraa
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAnnular flow: oil core with water annulus or vice versa.Dispersed oil-in-water (water is continuous phase).Dispersed water-in-oil (oil is continuous phase).Dual dispersion: both O/W and W/O regions coexist.Single phase (only oil or only water present).Fully stratified: separate oil and water layers.Stratified with interfacial mixing zone. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRATIFIED
Fully stratified: separate oil and water layers. -
STRATIFIED_WITH_MIXING
Stratified with interfacial mixing zone. -
DISPERSED_OIL_IN_WATER
Dispersed oil-in-water (water is continuous phase). -
DISPERSED_WATER_IN_OIL
Dispersed water-in-oil (oil is continuous phase). -
DUAL_DISPERSION
Dual dispersion: both O/W and W/O regions coexist. Typically occurs near the inversion point. -
ANNULAR
Annular flow: oil core with water annulus or vice versa. -
SINGLE_PHASE
Single phase (only oil or only water present).
-
-
Constructor Details
-
OilWaterFlowRegime
private OilWaterFlowRegime()
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-