74 lines
1.3 KiB
Java
74 lines
1.3 KiB
Java
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);
|
|
}
|