作者 wwmin

供热末端 风机盘管对负荷计算的系数2->1.6

... ... @@ -2469,7 +2469,7 @@ public class ProjectServiceImpl implements ProjectService {
* 风机盘管
* * 2
*/
hotLoadAll = synthesize_no_2_1.getDesignHeatLoadIndex() * 2;
hotLoadAll = synthesize_no_2_1.getDesignHeatLoadIndex() * 1.6;
}
Assert.notNull(synthesize_no_2_1.getHeatDay(), "供热天数为空了");
Integer di = calculatedTemperatureInHeatingRoomMapper.queryName(zd_name, dict.getId());
... ... @@ -2652,10 +2652,10 @@ public class ProjectServiceImpl implements ProjectService {
designHeatLoad += synthesize_no_2_1.getDesignHeatLoadIndex() * 0.9;
} else if ("3".equals(synthesize_no_2_1.getHeatEnd())) {
/**
* 等级盘管
* 风机盘管
* * 2
*/
designHeatLoad += synthesize_no_2_1.getDesignHeatLoadIndex() * 2;
designHeatLoad += synthesize_no_2_1.getDesignHeatLoadIndex() * 1.6;
}
}
double v = annualHeatSupply * 1000 / (heatingArea * designHeatLoad) / 130;
... ... @@ -2693,10 +2693,10 @@ public class ProjectServiceImpl implements ProjectService {
designCoolingLoad += synthesize_no_2_1.getDesignHeatLoadIndex() * 0.9;
} else if ("3".equals(synthesize_no_2_1.getHeatEnd())) {
/**
* 等级盘管
* 风机盘管
* * 2
*/
designCoolingLoad += synthesize_no_2_1.getDesignHeatLoadIndex() * 2;
designCoolingLoad += synthesize_no_2_1.getDesignHeatLoadIndex() * 1.6;
}
}
double v = annualCoolingCapacity * 1000 / (coolingArea * designCoolingLoad) / 150;
... ... @@ -2829,10 +2829,10 @@ public class ProjectServiceImpl implements ProjectService {
hotLoadAll = synthesizeNo21.getDesignHeatLoadIndex() * 0.9;
} else if ("3".equals(synthesizeNo21.getHeatEnd())) {
/**
* 等级盘管
* 风机盘管
* * 2
*/
hotLoadAll = synthesizeNo21.getDesignHeatLoadIndex() * 2;
hotLoadAll = synthesizeNo21.getDesignHeatLoadIndex() * 1.6;
}
Assert.notNull(synthesizeNo21.getHeatDay(), "供热天数为空了");
Integer di = calculatedTemperatureInHeatingRoomMapper.queryName(zd_name, dict.getId());
... ...