Enum Class VesselDepressurization.VesselMaterial

java.lang.Object
java.lang.Enum<VesselDepressurization.VesselMaterial>
neqsim.process.equipment.tank.VesselDepressurization.VesselMaterial
All Implemented Interfaces:
Serializable, Comparable<VesselDepressurization.VesselMaterial>, Constable
Enclosing class:
VesselDepressurization

public static enum VesselDepressurization.VesselMaterial extends Enum<VesselDepressurization.VesselMaterial>
Preset material properties for common vessel constructions.

Usage:

vessel.setVesselMaterial(VesselMaterial.CARBON_STEEL);
Author:
ESOL
  • Enum Constant Details

  • Field Details

    • density

      private final double density
    • heatCapacity

      private final double heatCapacity
    • thermalConductivity

      private final double thermalConductivity
  • Constructor Details

    • VesselMaterial

      private VesselMaterial(double density, double heatCapacity, double thermalConductivity)
  • Method Details

    • values

      public static VesselDepressurization.VesselMaterial[] 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 VesselDepressurization.VesselMaterial 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
    • getDensity

      public double getDensity()
      Returns:
      Material density [kg/m³]
    • getHeatCapacity

      public double getHeatCapacity()
      Returns:
      Material heat capacity [J/(kg·K)]
    • getThermalConductivity

      public double getThermalConductivity()
      Returns:
      Material thermal conductivity [W/(m·K)]