link start!
This commit is contained in:
+73
@@ -0,0 +1,73 @@
|
||||
package com.honeywell.honeywellXL10NextGen.xl10Controller.onlineOperation.flowBalancing;
|
||||
|
||||
import javax.baja.driver.BDevice;
|
||||
|
||||
public interface IFlowCalibrationPoints {
|
||||
void disableProxies();
|
||||
|
||||
void enableProxies();
|
||||
|
||||
String getAreaUnit();
|
||||
|
||||
String getErrorString();
|
||||
|
||||
String getFlowOverrideUnit();
|
||||
|
||||
String getFlowUnit();
|
||||
|
||||
String getPressureUnit();
|
||||
|
||||
float readBoxFlow();
|
||||
|
||||
float readBoxFlowControlPoint();
|
||||
|
||||
float readControllerFlow();
|
||||
|
||||
int readControllerMode();
|
||||
|
||||
float readDamperPosition();
|
||||
|
||||
float readDuctArea();
|
||||
|
||||
int readFlowCalibrationFlag();
|
||||
|
||||
float readKFactor();
|
||||
|
||||
float readKFactorSetpoint();
|
||||
|
||||
float readMaxFlow();
|
||||
|
||||
float readMaxFlowSetpoint();
|
||||
|
||||
float readMinFlow();
|
||||
|
||||
float readMinFlowSetpoint();
|
||||
|
||||
float readPressureOffset();
|
||||
|
||||
float readVelocityPressureSensor();
|
||||
|
||||
void setDevice(BDevice bDevice);
|
||||
|
||||
boolean validatePoints();
|
||||
|
||||
boolean writeControllerFlow(float f);
|
||||
|
||||
boolean writeControllerMode(int i);
|
||||
|
||||
boolean writeDuctArea(float f);
|
||||
|
||||
boolean writeFlowCalibrationFlag(int i);
|
||||
|
||||
boolean writeKFactor(float f);
|
||||
|
||||
boolean writeKFactorSetpoint(float f);
|
||||
|
||||
boolean writeMaxFlow(float f);
|
||||
|
||||
boolean writeMaxFlowSetpoint(float f);
|
||||
|
||||
boolean writeMinFlow(float f);
|
||||
|
||||
boolean writeMinFlowSetpoint(float f);
|
||||
}
|
||||
Reference in New Issue
Block a user