Class ConvergenceDiagnostics.RecycleStatus

java.lang.Object
neqsim.process.equipment.util.ConvergenceDiagnostics.RecycleStatus
All Implemented Interfaces:
Serializable
Enclosing class:
ConvergenceDiagnostics

public static class ConvergenceDiagnostics.RecycleStatus extends Object implements Serializable
Status of a single Recycle unit.
Version:
1.0
Author:
Even Solbraa
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • name

      public final String name
      Recycle unit name.
    • converged

      public final boolean converged
      Whether the recycle has converged.
    • flowError

      public final double flowError
      Flow error (relative).
    • tempError

      public final double tempError
      Temperature error (relative).
    • pressError

      public final double pressError
      Pressure error (relative).
    • compError

      public final double compError
      Composition error (relative).
    • iterations

      public final int iterations
      Number of iterations used.
    • dominantError

      public final String dominantError
      Which error type is dominant.
    • flowTolerance

      public final double flowTolerance
      Flow tolerance setting.
    • tempTolerance

      public final double tempTolerance
      Temperature 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 name
      converged - whether converged
      flowError - flow error
      tempError - temperature error
      pressError - pressure error
      compError - composition error
      iterations - iteration count
      dominantError - dominant error type
      flowTolerance - flow tolerance
      tempTolerance - temperature tolerance