fix: 句容抽蓄 局放数据异常,特殊处理

dev
huangfeng 2 months ago
parent 52681d2edc
commit 0a77c0afc4

@ -158,6 +158,11 @@ public class IEDCollectService {
value = valueNode.getValueString();
String time = timeNode.getValueString();
log.info("采集到" + fc + " " + paramindexNew + "=" + value + ", t=" + time);
// 句容抽蓄 局放数据为0异常特殊处理
if (paramindexNew.toLowerCase().contains("avdsch") && value.equalsIgnoreCase("0.0")) {
log.warn("avdsch数据异常改为-70");
value = "-70";
}
if ("NaN".equalsIgnoreCase(value)) {
return;
}

Loading…
Cancel
Save