Enum Class PipeBeggsAndBrills.HeatTransferMode
java.lang.Object
java.lang.Enum<PipeBeggsAndBrills.HeatTransferMode>
neqsim.process.equipment.pipeline.PipeBeggsAndBrills.HeatTransferMode
- All Implemented Interfaces:
Serializable, Comparable<PipeBeggsAndBrills.HeatTransferMode>, Constable
- Enclosing class:
PipeBeggsAndBrills
public static enum PipeBeggsAndBrills.HeatTransferMode
extends Enum<PipeBeggsAndBrills.HeatTransferMode>
Heat transfer calculation modes for pipeline thermal modeling.
Controls how temperature changes along the pipeline are calculated:
- ADIABATIC: No heat transfer (Q=0), temperature changes only due to Joule-Thomson effect
- ISOTHERMAL: Constant temperature along the pipe (outlet T = inlet T)
- SPECIFIED_U: Use a user-specified overall heat transfer coefficient (U-value)
- ESTIMATED_INNER_H: Calculate inner h from flow (Gnielinski correlation), use as U
- DETAILED_U: Calculate inner h from flow, then compute overall U including pipe wall, insulation, and outer convection resistances
- Version:
- $Id: $Id
- Author:
- Even Solbraa, Sviatoslav Eroshkin
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNo heat transfer - adiabatic pipe.Calculate detailed overall U-value including inner convection, pipe wall conduction, insulation (if present), and outer convection.Calculate inner h from flow conditions (Gnielinski correlation), use as U.Constant temperature along the pipe - isothermal operation.Use a user-specified overall heat transfer coefficient. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static PipeBeggsAndBrills.HeatTransferMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ADIABATIC
No heat transfer - adiabatic pipe. Temperature changes only from Joule-Thomson effect. -
ISOTHERMAL
Constant temperature along the pipe - isothermal operation. -
SPECIFIED_U
Use a user-specified overall heat transfer coefficient. -
ESTIMATED_INNER_H
Calculate inner h from flow conditions (Gnielinski correlation), use as U. -
DETAILED_U
Calculate detailed overall U-value including inner convection, pipe wall conduction, insulation (if present), and outer convection.
-
-
Constructor Details
-
HeatTransferMode
private HeatTransferMode()
-
-
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
-