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 Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEquipmentDesignSummary(String name, String type) Constructor for EquipmentDesignSummary. -
Method Summary
Modifier and TypeMethodDescriptiondoubleGet design pressure in bara.doubleGet design temperature in °C.Get dimensions string.doublegetDuty()Get duty in kW.doubleGet height in meters.doubleGet length in meters.getName()Get equipment name.doublegetPower()Get power in kW.getType()Get equipment type.doubleGet equipment weight in kg.doublegetWidth()Get width in meters.voidsetDesignPressure(double designPressure) Set design pressure.voidsetDesignTemperature(double designTemperature) Set design temperature.voidsetDimensions(String dimensions) Set dimensions string.voidsetDuty(double duty) Set duty.voidsetHeight(double height) Set height.voidsetLength(double length) Set length.voidsetPower(double power) Set power.voidsetWeight(double weight) Set equipment weight.voidsetWidth(double width) Set width.toString()
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
name
-
type
-
weight
private double weight -
designPressure
private double designPressure -
designTemperature
private double designTemperature -
power
private double power -
duty
private double duty -
dimensions
-
length
private double length -
width
private double width -
height
private double height
-
-
Constructor Details
-
EquipmentDesignSummary
-
-
Method Details
-
getName
-
getType
-
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
Get dimensions string. @return dimensions -
setDimensions
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
-