소스 검색

修改计算湿球温度逻辑

miaolijing 3 년 전
부모
커밋
3a14c61ae3
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/main/java/com/persagy/apm/diagnose/maintenance/service/impl/ProjectDataRecordServiceImpl.java

+ 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);
             }
         }
     }