瀏覽代碼

修改计算湿球温度逻辑

miaolijing 3 年之前
父節點
當前提交
3a14c61ae3

+ 3 - 3
src/main/java/com/persagy/apm/diagnose/maintenance/service/impl/ProjectDataRecordServiceImpl.java

@@ -1157,7 +1157,7 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
     /**
      * 根据允许范围推出Tw值
      */
-    public Double getTw(Double Td, Double hVal, Double limit){
+    public Double getTw(Double Td, Double hVal, Double limit) throws InterruptedException {
         Double Tw = Td-3;
         Double num = 0.0;
         Boolean isOk = false;
@@ -1180,7 +1180,7 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
                 jNum++;
             }
             num++;
-            if (num > 20){
+            if (num > 10){
                 isOk = true;
             }
         }
@@ -1190,7 +1190,7 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
             if (zNum > 0 && jNum > 0){
                 return Tw;
             }else{
-                return getTw(Td,hVal,limit+0.5);
+                return getTw(Tw,hVal,limit+0.5);
             }
         }
     }