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