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
  • Enum Constant Details

  • Constructor Details

    • HeatTransferMode

      private HeatTransferMode()
  • Method Details

    • values

      public static PipeBeggsAndBrills.HeatTransferMode[] 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 PipeBeggsAndBrills.HeatTransferMode 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