Class PinchAnalyzer.HeatStream
java.lang.Object
neqsim.process.util.heatintegration.PinchAnalyzer.HeatStream
- All Implemented Interfaces:
Serializable
- Enclosing class:
PinchAnalyzer
Represents a heat stream (hot or cold) in the process.
- Version:
- 1.0
- Author:
- ESOL
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal doubleHeat duty in W (absolute value).final doubleHeat capacity flow rate (W/K), estimated from duty and delta T.final booleanWhether this is a hot stream (needs cooling).final StringName of the equipment or stream.private static final longfinal doubleSupply temperature in K.final doubleTarget temperature in K. -
Constructor Summary
ConstructorsConstructorDescriptionHeatStream(String name, double supplyT, double targetT, double duty, boolean isHot) Creates a heat stream. -
Method Summary
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
name
Name of the equipment or stream. -
supplyTemperature
public final double supplyTemperatureSupply temperature in K. -
targetTemperature
public final double targetTemperatureTarget temperature in K. -
duty
public final double dutyHeat duty in W (absolute value). -
heatCapacityFlowRate
public final double heatCapacityFlowRateHeat capacity flow rate (W/K), estimated from duty and delta T. -
isHot
public final boolean isHotWhether this is a hot stream (needs cooling).
-
-
Constructor Details
-
HeatStream
Creates a heat stream.- Parameters:
name- equipment namesupplyT- supply temperature in KtargetT- target temperature in Kduty- heat duty in W (positive)isHot- true if hot stream
-