Class SystemMechanicalDesign.EquipmentDesignSummary

java.lang.Object
neqsim.process.mechanicaldesign.SystemMechanicalDesign.EquipmentDesignSummary
All Implemented Interfaces:
Serializable
Enclosing class:
SystemMechanicalDesign

public static class SystemMechanicalDesign.EquipmentDesignSummary extends Object implements Serializable
Summary of key design data for a single equipment item.
Version:
2.0
Author:
esol
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • name

      private String name
    • type

      private String type
    • weight

      private double weight
    • designPressure

      private double designPressure
    • designTemperature

      private double designTemperature
    • power

      private double power
    • duty

      private double duty
    • dimensions

      private String dimensions
    • length

      private double length
    • width

      private double width
    • height

      private double height
  • Constructor Details

    • EquipmentDesignSummary

      public EquipmentDesignSummary(String name, String type)
      Constructor for EquipmentDesignSummary.
      Parameters:
      name - equipment name
      type - equipment type
  • Method Details

    • getName

      public String getName()
      Get equipment name.
      Returns:
      name
    • getType

      public String getType()
      Get equipment type.
      Returns:
      type
    • getWeight

      public double getWeight()
      Get equipment weight in kg. @return weight
    • setWeight

      public void setWeight(double weight)
      Set equipment weight. @param weight weight in kg
    • getDesignPressure

      public double getDesignPressure()
      Get design pressure in bara. @return design pressure
    • setDesignPressure

      public void setDesignPressure(double designPressure)
      Set design pressure. @param designPressure pressure in bara
    • getDesignTemperature

      public double getDesignTemperature()
      Get design temperature in °C. @return design temperature
    • setDesignTemperature

      public void setDesignTemperature(double designTemperature)
      Set design temperature. @param designTemperature temperature in °C
    • getPower

      public double getPower()
      Get power in kW. @return power
    • setPower

      public void setPower(double power)
      Set power. @param power power in kW
    • getDuty

      public double getDuty()
      Get duty in kW. @return duty
    • setDuty

      public void setDuty(double duty)
      Set duty. @param duty duty in kW
    • getDimensions

      public String getDimensions()
      Get dimensions string. @return dimensions
    • setDimensions

      public void setDimensions(String dimensions)
      Set dimensions string. @param dimensions dimensions description
    • getLength

      public double getLength()
      Get length in meters. @return length
    • setLength

      public void setLength(double length)
      Set length. @param length length in meters
    • getWidth

      public double getWidth()
      Get width in meters. @return width
    • setWidth

      public void setWidth(double width)
      Set width. @param width width in meters
    • getHeight

      public double getHeight()
      Get height in meters. @return height
    • setHeight

      public void setHeight(double height)
      Set height. @param height height in meters
    • toString

      public String toString()
      Overrides:
      toString in class Object