Class ConvergenceDiagnostics.RecycleStatus
java.lang.Object
neqsim.process.equipment.util.ConvergenceDiagnostics.RecycleStatus
- All Implemented Interfaces:
Serializable
- Enclosing class:
ConvergenceDiagnostics
Status of a single Recycle unit.
- Version:
- 1.0
- Author:
- Even Solbraa
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal doubleComposition error (relative).final booleanWhether the recycle has converged.final StringWhich error type is dominant.final doubleFlow error (relative).final doubleFlow tolerance setting.final intNumber of iterations used.final StringRecycle unit name.final doublePressure error (relative).private static final longfinal doubleTemperature error (relative).final doubleTemperature tolerance setting. -
Constructor Summary
ConstructorsConstructorDescriptionRecycleStatus(String name, boolean converged, double flowError, double tempError, double pressError, double compError, int iterations, String dominantError, double flowTolerance, double tempTolerance) Creates a recycle status. -
Method Summary
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
name
Recycle unit name. -
converged
public final boolean convergedWhether the recycle has converged. -
flowError
public final double flowErrorFlow error (relative). -
tempError
public final double tempErrorTemperature error (relative). -
pressError
public final double pressErrorPressure error (relative). -
compError
public final double compErrorComposition error (relative). -
iterations
public final int iterationsNumber of iterations used. -
dominantError
Which error type is dominant. -
flowTolerance
public final double flowToleranceFlow tolerance setting. -
tempTolerance
public final double tempToleranceTemperature tolerance setting.
-
-
Constructor Details
-
RecycleStatus
RecycleStatus(String name, boolean converged, double flowError, double tempError, double pressError, double compError, int iterations, String dominantError, double flowTolerance, double tempTolerance) Creates a recycle status.- Parameters:
name- recycle nameconverged- whether convergedflowError- flow errortempError- temperature errorpressError- pressure errorcompError- composition erroriterations- iteration countdominantError- dominant error typeflowTolerance- flow tolerancetempTolerance- temperature tolerance
-