Class PumpDeliveryTrouble

java.lang.Object
com.tccc.kos.commons.core.service.trouble.Trouble
com.tccc.kos.ext.dispense.PourAvailabilityTrouble
com.tccc.kos.ext.dispense.PumpTrouble
All Implemented Interfaces:
com.tccc.kos.commons.core.service.trouble.TroubleIface, com.tccc.kos.ext.dispense.troubles.HolderTroubleIface, com.tccc.kos.ext.dispense.troubles.NozzleTroubleIface, com.tccc.kos.ext.dispense.troubles.PumpTroubleIface
Direct Known Subclasses:
FCMPumpOverDeliveryTrouble, FCMPumpUnderDeliveryTrouble, MicroPumpOverDeliveryTrouble, MicroPumpUnderDeliveryTrouble, MSVPumpOverDeliveryTrouble, MSVPumpUnderDeliveryTrouble, PumpFoldBackTrouble

public abstract class PumpDeliveryTrouble extends CANPumpTrouble<AbstractCANPump<?>>
Pump is delivering at a higher rate than requested. Event sequence: 37/45/59 - JET_ST_RATE_ERROR_UNDERDELIVERY / JET_ST_RATE_ERROR_OVERDELIVERY / JET_ST_FOLD_BACK_UNDERDELIVERY 52 - JET_ST_INFO_MANIFOLD_VOLUME 53 - JET_ST_INFO_PUMP_TIME 54 - JET_ST_INFO_PUMP_VOLUME
Version:
Oct-31-17
  • Nested Class Summary

    Nested classes/interfaces inherited from class com.tccc.kos.commons.core.service.trouble.Trouble

    com.tccc.kos.commons.core.service.trouble.Trouble.TroubleView
  • Field Summary

    Fields inherited from class com.tccc.kos.ext.freestyle.hardware.can.troubles.BasePumpTrouble

    TAG_AVAILABLE
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Get the difference in expected volume in ml.
    double
    Return the manifold volume at the time of the error in ml.
    int
    Return the pump time at the time of the error in ms.
    double
    Return the volume pumped by the pump at the time of the error in ml.
    void
    setDeltaVolume(double deltaVolume)
     
    void
    setManifoldVolume(double manifoldVolume)
     
    void
    setPumpTime(int pumpTime)
     
    void
    setPumpVolume(double pumpVolume)
     

    Methods inherited from class com.tccc.kos.ext.freestyle.hardware.can.troubles.BasePumpTrouble

    getFuelGauge, getRFIDTag, isAbort, isAborted, isClearBevPour, isClearIngPour, setAbort, setAborted, toString

    Methods inherited from class com.tccc.kos.ext.dispense.PumpTrouble

    blockBeveragePour, blockIngredientPour, getHolderNames, getHolderPaths, getIngredientId, getNozzlePath, getPump, getPumpPath

    Methods inherited from class com.tccc.kos.ext.dispense.PourAvailabilityTrouble

    blockBeveragePour, blockIngredientPour, blockPour

    Methods inherited from class com.tccc.kos.commons.core.service.trouble.Trouble

    addIface, addImpacted, addLink, addTag, equals, getClientData, getCount, getCreateTime, getGroup, getId, getIfaces, getImpacted, getInfo, getLinked, getReason, getTags, getType, hashCode, incCount, isImpacted, isLinked, isResolvable, isTagged, onRemoved, removeImpacted, removeLink, removeTag, resolvable, resolve, setReason, setResolvable

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • PumpDeliveryTrouble

      public PumpDeliveryTrouble()
  • Method Details

    • getDeltaVolume

      public double getDeltaVolume()
      Get the difference in expected volume in ml.
      Returns:
      difference in expected volume
    • getManifoldVolume

      public double getManifoldVolume()
      Return the manifold volume at the time of the error in ml.
      Returns:
      manifold volume at time of error
    • getPumpTime

      public int getPumpTime()
      Return the pump time at the time of the error in ms.
      Returns:
      how many ms the pump pumped at the time of the error
    • getPumpVolume

      public double getPumpVolume()
      Return the volume pumped by the pump at the time of the error in ml.
      Returns:
      the volume pumped by the pump at the time of the error
    • setDeltaVolume

      public void setDeltaVolume(double deltaVolume)
    • setManifoldVolume

      public void setManifoldVolume(double manifoldVolume)
    • setPumpTime

      public void setPumpTime(int pumpTime)
    • setPumpVolume

      public void setPumpVolume(double pumpVolume)