Class TankHeatTransferModel.HeatTransferZone
java.lang.Object
neqsim.process.equipment.lng.TankHeatTransferModel.HeatTransferZone
- All Implemented Interfaces:
Serializable
- Enclosing class:
TankHeatTransferModel
A single heat transfer zone with its own U-value, area, and boundary condition.
- Version:
- 1.0
- Author:
- NeqSim
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate doubleHeat transfer area (m2).private doubleBoundary temperature (K).private StringZone name (e.g., "bottom", "sidewalls", "roof").private static final longSerialization version UID.private doubleOverall heat transfer coefficient (W/(m2*K)). -
Constructor Summary
ConstructorsConstructorDescriptionHeatTransferZone(String name, double uValue, double area, double boundaryTemperature) Constructor for HeatTransferZone. -
Method Summary
Modifier and TypeMethodDescriptiondoublegetArea()Get area.doubleGet boundary temperature.getName()Get zone name.doubleGet U-value.voidsetArea(double area) Set area.voidsetBoundaryTemperature(double boundaryTemperature) Set boundary temperature.voidsetUValue(double uValue) Set U-value.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerialization version UID.- See Also:
-
name
Zone name (e.g., "bottom", "sidewalls", "roof"). -
uValue
private double uValueOverall heat transfer coefficient (W/(m2*K)). -
area
private double areaHeat transfer area (m2). -
boundaryTemperature
private double boundaryTemperatureBoundary temperature (K).
-
-
Constructor Details
-
HeatTransferZone
Constructor for HeatTransferZone.- Parameters:
name- zone nameuValue- overall heat transfer coefficient (W/(m2*K))area- heat transfer area (m2)boundaryTemperature- boundary temperature (K)
-
-
Method Details
-
getName
-
getUValue
public double getUValue()Get U-value.- Returns:
- U-value (W/(m2*K))
-
setUValue
public void setUValue(double uValue) Set U-value.- Parameters:
uValue- U-value (W/(m2*K))
-
getArea
public double getArea()Get area.- Returns:
- area (m2)
-
setArea
public void setArea(double area) Set area.- Parameters:
area- area (m2)
-
getBoundaryTemperature
public double getBoundaryTemperature()Get boundary temperature.- Returns:
- boundary temperature (K)
-
setBoundaryTemperature
public void setBoundaryTemperature(double boundaryTemperature) Set boundary temperature.- Parameters:
boundaryTemperature- boundary temperature (K)
-