42 lines
1.0 KiB
Java
42 lines
1.0 KiB
Java
package com.honeywellVenomTools.balance;
|
|
|
|
import com.honeywellVenomTools.balance.data.BVenomBalanceDevicePoint;
|
|
|
|
public interface IVenomBalanceDeviceDef {
|
|
BVenomBalanceDevicePoint getBalBoxKFactorOffset();
|
|
|
|
BVenomBalanceDevicePoint getBalBoxZeroOffset();
|
|
|
|
BVenomBalanceDevicePoint getBalMaxMeasFlowAct();
|
|
|
|
BVenomBalanceDevicePoint getBalMaxMeasFlowSpt();
|
|
|
|
BVenomBalanceDevicePoint getBalMinMeasFlowAct();
|
|
|
|
BVenomBalanceDevicePoint getBalMinMeasFlowSpt();
|
|
|
|
BVenomBalanceDevicePoint getBoxFlow();
|
|
|
|
BVenomBalanceDevicePoint getDamperPos();
|
|
|
|
BVenomBalanceDevicePoint getDuctArea();
|
|
|
|
BVenomBalanceDevicePoint getFlowOvrdFlow();
|
|
|
|
BVenomBalanceDevicePoint getFlowOvrdPct();
|
|
|
|
BVenomBalanceDevicePoint getFlowOvrdState();
|
|
|
|
BVenomBalanceDevicePoint getKFactor();
|
|
|
|
BVenomBalanceDevicePoint getMaxFlowSetpt();
|
|
|
|
BVenomBalanceDevicePoint getMinFlowSetpt();
|
|
|
|
BVenomBalanceDevicePoint getOvrPeriphPos();
|
|
|
|
BVenomBalanceDevicePoint getOvrReheatPos();
|
|
|
|
BVenomBalanceDevicePoint getVelSenPress();
|
|
}
|