Enum Class PipeSection.FlowRegime
java.lang.Object
java.lang.Enum<PipeSection.FlowRegime>
neqsim.process.equipment.pipeline.twophasepipe.PipeSection.FlowRegime
- All Implemented Interfaces:
Serializable, Comparable<PipeSection.FlowRegime>, Constable
- Enclosing class:
PipeSection
Flow regimes for two-phase pipe flow.
- 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 - liquid film on wall, gas core.Bubble flow - larger bubbles.Churn flow - chaotic vertical flow.Dispersed bubble flow - bubbles in liquid.Mist flow - droplets in gas.Single phase gas.Single phase liquid.Intermittent/slug flow.Stratified smooth flow - calm interface.Stratified wavy flow - waves on interface. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic PipeSection.FlowRegimeReturns the enum constant of this class with the specified name.static PipeSection.FlowRegime[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRATIFIED_SMOOTH
Stratified smooth flow - calm interface. -
STRATIFIED_WAVY
Stratified wavy flow - waves on interface. -
SLUG
Intermittent/slug flow. -
ANNULAR
Annular flow - liquid film on wall, gas core. -
DISPERSED_BUBBLE
Dispersed bubble flow - bubbles in liquid. -
BUBBLE
Bubble flow - larger bubbles. -
CHURN
Churn flow - chaotic vertical flow. -
MIST
Mist flow - droplets in gas. -
SINGLE_PHASE_GAS
Single phase gas. -
SINGLE_PHASE_LIQUID
Single phase liquid.
-
-
Constructor Details
-
FlowRegime
private FlowRegime()
-
-
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
-