|
@@ -7,6 +7,7 @@ import com.gyee.common.util.DateUtils;
|
|
|
import com.gyee.common.util.algorithm.Underdelivery;
|
|
|
import com.gyee.generation.init.CacheContext;
|
|
|
import com.gyee.generation.model.auto.*;
|
|
|
+import com.gyee.generation.util.SpringUtils;
|
|
|
import com.gyee.generation.util.realtimesource.IEdosUtil;
|
|
|
import com.gyee.generation.util.redis.RedisService;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -27,8 +28,7 @@ public class Status_HF_Service {
|
|
|
@Resource
|
|
|
private IEdosUtil edosUtil;
|
|
|
|
|
|
- @Resource
|
|
|
- private RedisService redisService;
|
|
|
+
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -38,10 +38,65 @@ public class Status_HF_Service {
|
|
|
*/
|
|
|
public void calculateGzStatus() throws Exception {
|
|
|
|
|
|
+
|
|
|
+ RedisService redisService= SpringUtils.getBean("redisService");
|
|
|
+ Date date = new Date();
|
|
|
Map<String, Map<String, Object>> pipelinedmap = new HashMap<>();
|
|
|
if (!CacheContext.wtls.isEmpty()) {
|
|
|
|
|
|
+ Map<Integer,List<String>> pointmap=new LinkedHashMap<>();
|
|
|
+ for (Windturbine wt : CacheContext.wtls) {
|
|
|
+
|
|
|
+ List<Windturbinetestingpointdis> disLs = CacheContext.pointdis.stream().filter(i -> i.getWindturbineid().equals(wt.getId()) && i.getUniformcode().equals("ZT001")).collect(Collectors.toList());
|
|
|
+
|
|
|
+ if (!disLs.isEmpty()) {
|
|
|
+ Windturbinetestingpointdis key = disLs.get(0);
|
|
|
+ if (CacheContext.redisDbMap.containsKey(key.getId())) {
|
|
|
+ int dbnum = CacheContext.redisDbMap.get(key.getId());
|
|
|
+
|
|
|
+ if(pointmap.containsKey(dbnum))
|
|
|
+ {
|
|
|
+ List<String> ls=pointmap.get(dbnum);
|
|
|
+ ls.add(key.getId());
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ List<String> ls=new ArrayList<>();
|
|
|
+ ls.add(key.getId());
|
|
|
+ pointmap.put(dbnum,ls);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ disLs = CacheContext.pointdis.stream().filter(i -> i.getWindturbineid().equals(wt.getId()) && i.getUniformcode().equals("ZT002")).collect(Collectors.toList());
|
|
|
+
|
|
|
+
|
|
|
+ if (!disLs.isEmpty()) {
|
|
|
+ Windturbinetestingpointdis key = disLs.get(0);
|
|
|
+ if (CacheContext.redisDbMap.containsKey(key.getId())) {
|
|
|
+ int dbnum = CacheContext.redisDbMap.get(key.getId());
|
|
|
+
|
|
|
+
|
|
|
+ if(pointmap.containsKey(dbnum))
|
|
|
+ {
|
|
|
+ List<String> ls=pointmap.get(dbnum);
|
|
|
+ ls.add(key.getId());
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ List<String> ls=new ArrayList<>();
|
|
|
+ ls.add(key.getId());
|
|
|
+ pointmap.put(dbnum,ls);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String,Map<String,String>> valuemap=redisService.hgetall(pointmap);
|
|
|
for (Windturbine wt : CacheContext.wtls) {
|
|
|
|
|
|
|
|
@@ -49,12 +104,12 @@ public class Status_HF_Service {
|
|
|
Map<String, Windturbinetestingpointai> map = CacheContext.wtPointmap.get(wt.getId());
|
|
|
if (map.containsKey(Contant.GZZT)) {
|
|
|
Windturbinetestingpointai pt = map.get(Contant.GZZT);
|
|
|
- redisService.select(8);
|
|
|
+ // redisService.select(8);
|
|
|
|
|
|
Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
|
|
|
pomap.put("pointid", pt.getId());
|
|
|
- Date date = new Date();
|
|
|
+
|
|
|
pomap.put("value", 0);
|
|
|
pomap.put("timestamp", date.getTime() / 1000);
|
|
|
pomap.put("datetime", DateUtils.toDate(date));
|
|
@@ -70,49 +125,44 @@ public class Status_HF_Service {
|
|
|
|
|
|
if (!disLs.isEmpty()) {
|
|
|
Windturbinetestingpointdis key = disLs.get(0);
|
|
|
- if (CacheContext.redisDbMap.containsKey(key.getId())) {
|
|
|
- int dbnum = CacheContext.redisDbMap.get(key.getId());
|
|
|
- redisService.select(dbnum);
|
|
|
+ if (valuemap.containsKey(key.getId())) {
|
|
|
|
|
|
- if (redisService.hasKey(key.getId(), "value")) {
|
|
|
+ double value = 0.0;
|
|
|
|
|
|
- double value = 0.0;
|
|
|
- try {
|
|
|
- Map<Object, Object> map = redisService.getHashEntries(key.getId());
|
|
|
- if (map.containsKey("value")) {
|
|
|
- value = Double.valueOf((String) map.get("value"));
|
|
|
- }
|
|
|
- } catch (Exception e) {
|
|
|
- System.out.println("calculateGzStatus" + " " + e.getMessage());
|
|
|
+ if(valuemap.containsKey(key.getId()))
|
|
|
+ {
|
|
|
+ Map<String, String> tempmap = valuemap.get(key.getId());
|
|
|
+ if (tempmap.containsKey("value")) {
|
|
|
+ value = Double.valueOf((String) tempmap.get("value"));
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
- Map<String, Windturbinetestingpointai> map = CacheContext.wtPointmap.get(wt.getId());
|
|
|
- if (map.containsKey(Contant.GZZT)) {
|
|
|
- Windturbinetestingpointai pt = map.get(Contant.GZZT);
|
|
|
|
|
|
- if (StringUtils.notEmp(value) && value == 3) {
|
|
|
- redisService.select(8);
|
|
|
+ if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
+ Map<String, Windturbinetestingpointai> map = CacheContext.wtPointmap.get(wt.getId());
|
|
|
+ if (map.containsKey(Contant.GZZT)) {
|
|
|
+ Windturbinetestingpointai pt = map.get(Contant.GZZT);
|
|
|
+
|
|
|
+ if (StringUtils.notEmp(value) && value == 3) {
|
|
|
+ redisService.select(8);
|
|
|
|
|
|
|
|
|
- Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
+ Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
|
|
|
- pomap.put("pointid", pt.getId());
|
|
|
- Date date = new Date();
|
|
|
- pomap.put("value", 1);
|
|
|
- pomap.put("timestamp", date.getTime() / 1000);
|
|
|
- pomap.put("datetime", DateUtils.toDate(date));
|
|
|
- pomap.put("status", 0);
|
|
|
+ pomap.put("pointid", pt.getId());
|
|
|
+ pomap.put("value", 1);
|
|
|
+ pomap.put("timestamp", date.getTime() / 1000);
|
|
|
+ pomap.put("datetime", DateUtils.toDate(date));
|
|
|
+ pomap.put("status", 0);
|
|
|
|
|
|
- pipelinedmap.put(pt.getId(), pomap);
|
|
|
- // redisService.putHashAllObj(pt.getId(),pomap);
|
|
|
+ pipelinedmap.put(pt.getId(), pomap);
|
|
|
+ // redisService.putHashAllObj(pt.getId(),pomap);
|
|
|
|
|
|
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
@@ -123,57 +173,48 @@ public class Status_HF_Service {
|
|
|
|
|
|
if (!disLs.isEmpty()) {
|
|
|
Windturbinetestingpointdis key = disLs.get(0);
|
|
|
- if (CacheContext.redisDbMap.containsKey(key.getId())) {
|
|
|
- int dbnum = CacheContext.redisDbMap.get(key.getId());
|
|
|
- redisService.select(dbnum);
|
|
|
-
|
|
|
- if (redisService.hasKey(key.getId(), "value")) {
|
|
|
- double value = 0.0;
|
|
|
- try {
|
|
|
-
|
|
|
- Map<Object, Object> map = redisService.getHashEntries(key.getId());
|
|
|
- if (map.containsKey("value")) {
|
|
|
- value = Double.valueOf((String) map.get("value"));
|
|
|
- }
|
|
|
- } catch (Exception e) {
|
|
|
- System.out.println("calculateGzStatus" + " " + e.getMessage());
|
|
|
+ if (valuemap.containsKey(key.getId())) {
|
|
|
+ double value = 0.0;
|
|
|
+ if(valuemap.containsKey(key.getId()))
|
|
|
+ {
|
|
|
+ Map<String, String> tempmap = valuemap.get(key.getId());
|
|
|
+ if (tempmap.containsKey("value")) {
|
|
|
+ value = Double.valueOf((String) tempmap.get("value"));
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
- Map<String, Windturbinetestingpointai> map = CacheContext.wtPointmap.get(wt.getId());
|
|
|
- if (map.containsKey(Contant.GZZT)) {
|
|
|
- Windturbinetestingpointai pt = map.get(Contant.GZZT);
|
|
|
+ if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
+ Map<String, Windturbinetestingpointai> map = CacheContext.wtPointmap.get(wt.getId());
|
|
|
+ if (map.containsKey(Contant.GZZT)) {
|
|
|
+ Windturbinetestingpointai pt = map.get(Contant.GZZT);
|
|
|
|
|
|
- if (StringUtils.notEmp(value) && value == 1) {
|
|
|
- redisService.select(8);
|
|
|
+ if (StringUtils.notEmp(value) && value == 1) {
|
|
|
+ // redisService.select(8);
|
|
|
|
|
|
|
|
|
- Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
+ Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
|
|
|
- pomap.put("pointid", pt.getId());
|
|
|
- Date date = new Date();
|
|
|
- pomap.put("value", 1);
|
|
|
- pomap.put("timestamp", date.getTime() / 1000);
|
|
|
- pomap.put("datetime", DateUtils.toDate(date));
|
|
|
- pomap.put("status", 0);
|
|
|
- pipelinedmap.put(pt.getId(), pomap);
|
|
|
- //redisService.putHashAllObj(pt.getId(),pomap);
|
|
|
+ pomap.put("pointid", pt.getId());
|
|
|
+ pomap.put("value", 1);
|
|
|
+ pomap.put("timestamp", date.getTime() / 1000);
|
|
|
+ pomap.put("datetime", DateUtils.toDate(date));
|
|
|
+ pomap.put("status", 0);
|
|
|
+ pipelinedmap.put(pt.getId(), pomap);
|
|
|
+ //redisService.putHashAllObj(pt.getId(),pomap);
|
|
|
|
|
|
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+ redisService.select(8);
|
|
|
redisService.putHashAllPipeObj(pipelinedmap);
|
|
|
+
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -185,9 +226,56 @@ public class Status_HF_Service {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public void calculateQfStatus() throws Exception {
|
|
|
-
|
|
|
+ RedisService redisService= SpringUtils.getBean("redisService");
|
|
|
+ Date date = new Date();
|
|
|
Map<String, Map<String, Object>> pipelinedmap = new HashMap<>();
|
|
|
if (!CacheContext.wtls.isEmpty()) {
|
|
|
+ Map<Integer,List<String>> pointmap=new LinkedHashMap<>();
|
|
|
+
|
|
|
+ for (Windturbine wt : CacheContext.wtls) {
|
|
|
+
|
|
|
+ if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
+ Map<String, Windturbinetestingpointai> map = CacheContext.wtPointmap.get(wt.getId());
|
|
|
+
|
|
|
+
|
|
|
+ if (map.containsKey(Contant.AI130) && map.containsKey(Contant.AI022)) {
|
|
|
+ Windturbinetestingpointai powerpoint = map.get(Contant.AI130);
|
|
|
+ Windturbinetestingpointai speedpoint = map.get(Contant.AI022);
|
|
|
+ if (CacheContext.redisDbMap.containsKey(powerpoint.getId()) && CacheContext.redisDbMap.containsKey(speedpoint.getId())) {
|
|
|
+
|
|
|
+ int dbnum = CacheContext.redisDbMap.get(powerpoint.getId());
|
|
|
+ if(pointmap.containsKey(dbnum))
|
|
|
+ {
|
|
|
+ List<String> ls=pointmap.get(dbnum);
|
|
|
+ ls.add(powerpoint.getId());
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ List<String> ls=new ArrayList<>();
|
|
|
+ ls.add(powerpoint.getId());
|
|
|
+ pointmap.put(dbnum,ls);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ dbnum = CacheContext.redisDbMap.get(speedpoint.getId());
|
|
|
+ if(pointmap.containsKey(dbnum))
|
|
|
+ {
|
|
|
+ List<String> ls=pointmap.get(dbnum);
|
|
|
+ ls.add(speedpoint.getId());
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ List<String> ls=new ArrayList<>();
|
|
|
+ ls.add(speedpoint.getId());
|
|
|
+ pointmap.put(dbnum,ls);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String,Map<String,String>> valuemap=redisService.hgetall(pointmap);
|
|
|
+
|
|
|
for (Windturbine wt : CacheContext.wtls) {
|
|
|
|
|
|
if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
@@ -196,11 +284,11 @@ public class Status_HF_Service {
|
|
|
|
|
|
if (map.containsKey(Contant.RSSQFZT)) {
|
|
|
Windturbinetestingpointai qfpt = map.get(Contant.RSSQFZT);
|
|
|
- redisService.select(8);
|
|
|
+ // redisService.select(8);
|
|
|
Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
|
|
|
pomap.put("pointid", qfpt.getId());
|
|
|
- Date date = new Date();
|
|
|
+
|
|
|
pomap.put("value", 0);
|
|
|
pomap.put("timestamp", date.getTime() / 1000);
|
|
|
pomap.put("datetime", DateUtils.toDate(date));
|
|
@@ -211,81 +299,66 @@ public class Status_HF_Service {
|
|
|
if (map.containsKey(Contant.AI130) && map.containsKey(Contant.AI022)) {
|
|
|
Windturbinetestingpointai powerpoint = map.get(Contant.AI130);
|
|
|
Windturbinetestingpointai speedpoint = map.get(Contant.AI022);
|
|
|
- if (CacheContext.redisDbMap.containsKey(powerpoint.getId()) && CacheContext.redisDbMap.containsKey(speedpoint.getId())) {
|
|
|
-
|
|
|
- int dbnum = CacheContext.redisDbMap.get(powerpoint.getId());
|
|
|
- redisService.select(dbnum);
|
|
|
- double power = 0.0;
|
|
|
- if (redisService.hasKey(powerpoint.getId(), "value")) {
|
|
|
+ double power = 0.0;
|
|
|
|
|
|
- try {
|
|
|
-
|
|
|
- Map<Object, Object> tempmap = redisService.getHashEntries(powerpoint.getId());
|
|
|
- if (tempmap.containsKey("value")) {
|
|
|
- power = Double.valueOf((String) tempmap.get("value"));
|
|
|
- }
|
|
|
- } catch (Exception e) {
|
|
|
- System.out.println("calculateQfStatus" + " " + e.getMessage());
|
|
|
- }
|
|
|
+ if(valuemap.containsKey(powerpoint.getId()))
|
|
|
+ {
|
|
|
+ Map<String, String> tempmap = valuemap.get(powerpoint.getId());
|
|
|
|
|
|
+ if (tempmap.containsKey("value")) {
|
|
|
+ power = Double.valueOf((String) tempmap.get("value"));
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- dbnum = CacheContext.redisDbMap.get(speedpoint.getId());
|
|
|
- redisService.select(dbnum);
|
|
|
|
|
|
- double speed = 0.0;
|
|
|
- if (redisService.hasKey(speedpoint.getId(), "value")) {
|
|
|
- try {
|
|
|
+ double speed = 0.0;
|
|
|
+ if(valuemap.containsKey(speedpoint.getId()))
|
|
|
+ {
|
|
|
+ Map<String, String> tempmap2 = valuemap.get(speedpoint.getId());
|
|
|
+ if (tempmap2.containsKey("value")) {
|
|
|
+ speed = Double.valueOf((String) tempmap2.get("value"));
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- Map<Object, Object> tempmap = redisService.getHashEntries(speedpoint.getId());
|
|
|
- if (tempmap.containsKey("value")) {
|
|
|
- speed = Double.valueOf((String) tempmap.get("value"));
|
|
|
- }
|
|
|
- } catch (Exception e) {
|
|
|
- System.out.println("calculateQfStatus" + " " + e.getMessage());
|
|
|
- }
|
|
|
|
|
|
- }
|
|
|
|
|
|
+ if ((speed != 0 && power != 0) && CacheContext.curveFittingPowerMap.containsKey(wt.getId()) && StringUtils.notEmp(power) && StringUtils.notEmp(speed)) {
|
|
|
+ Map<Double, Windturbinepowercurvefitting> wtcurvemap = CacheContext.curveFittingPowerMap.get(wt.getId());
|
|
|
|
|
|
- if ((speed != 0 && power != 0) && CacheContext.curveFittingPowerMap.containsKey(wt.getId()) && StringUtils.notEmp(power) && StringUtils.notEmp(speed)) {
|
|
|
- Map<Double, Windturbinepowercurvefitting> wtcurvemap = CacheContext.curveFittingPowerMap.get(wt.getId());
|
|
|
+ if (wtcurvemap.containsKey(StringUtils.round(speed, 2))) {
|
|
|
+ Windturbinepowercurvefitting wtcurve = wtcurvemap.get(StringUtils.round(speed, 2));
|
|
|
+ //拟合功率
|
|
|
+ Double actualpower = wtcurve.getActualpower();
|
|
|
|
|
|
- if (wtcurvemap.containsKey(StringUtils.round(speed, 2))) {
|
|
|
- Windturbinepowercurvefitting wtcurve = wtcurvemap.get(StringUtils.round(speed, 2));
|
|
|
- //拟合功率
|
|
|
- Double actualpower = wtcurve.getActualpower();
|
|
|
+ double qfzt = Underdelivery.underdeliveryStatusReal(power, actualpower);
|
|
|
+ if (map.containsKey(Contant.RSSQFZT)) {
|
|
|
+ Windturbinetestingpointai qfpt = map.get(Contant.RSSQFZT);
|
|
|
+// redisService.select(8);
|
|
|
|
|
|
- double qfzt = Underdelivery.underdeliveryStatusReal(power, actualpower);
|
|
|
- if (map.containsKey(Contant.RSSQFZT)) {
|
|
|
- Windturbinetestingpointai qfpt = map.get(Contant.RSSQFZT);
|
|
|
- redisService.select(8);
|
|
|
|
|
|
+ Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
|
|
|
- Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
+ pomap.put("pointid", qfpt.getId());
|
|
|
|
|
|
- pomap.put("pointid", qfpt.getId());
|
|
|
- Date date = new Date();
|
|
|
- pomap.put("value", qfzt);
|
|
|
- pomap.put("timestamp", date.getTime() / 1000);
|
|
|
- pomap.put("datetime", DateUtils.toDate(date));
|
|
|
- pomap.put("status", 0);
|
|
|
- pipelinedmap.put(qfpt.getId(), pomap);
|
|
|
- //redisService.putHashAllObj(qfpt.getId(),pomap);
|
|
|
+ pomap.put("value", qfzt);
|
|
|
+ pomap.put("timestamp", date.getTime() / 1000);
|
|
|
+ pomap.put("datetime", DateUtils.toDate(date));
|
|
|
+ pomap.put("status", 0);
|
|
|
+ pipelinedmap.put(qfpt.getId(), pomap);
|
|
|
+ //redisService.putHashAllObj(qfpt.getId(),pomap);
|
|
|
|
|
|
|
|
|
- }
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+ redisService.select(8);
|
|
|
redisService.putHashAllPipeObj(pipelinedmap);
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -296,22 +369,55 @@ public class Status_HF_Service {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public void calculateLlgl() throws Exception {
|
|
|
-
|
|
|
+ RedisService redisService= SpringUtils.getBean("redisService");
|
|
|
+ Date date = new Date();
|
|
|
Map<String, Map<String, Object>> pipelinedmap = new HashMap<>();
|
|
|
if (!CacheContext.wtls.isEmpty()) {
|
|
|
+
|
|
|
+ Map<Integer,List<String>> pointmap=new LinkedHashMap<>();
|
|
|
+ for (Windturbine wt : CacheContext.wtls) {
|
|
|
+
|
|
|
+ if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
+ Map<String, Windturbinetestingpointai> map = CacheContext.wtPointmap.get(wt.getId());
|
|
|
+
|
|
|
+
|
|
|
+ if (map.containsKey(Contant.AI022)) {
|
|
|
+ Windturbinetestingpointai speedpoint = map.get(Contant.AI022);
|
|
|
+ if (CacheContext.redisDbMap.containsKey(speedpoint.getId())) {
|
|
|
+
|
|
|
+ int dbnum = CacheContext.redisDbMap.get(speedpoint.getId());
|
|
|
+ if(pointmap.containsKey(dbnum))
|
|
|
+ {
|
|
|
+ List<String> ls=pointmap.get(dbnum);
|
|
|
+ ls.add(speedpoint.getId());
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ List<String> ls=new ArrayList<>();
|
|
|
+ ls.add(speedpoint.getId());
|
|
|
+ pointmap.put(dbnum,ls);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String,Map<String,String>> valuemap=redisService.hgetall(pointmap);
|
|
|
for (Windturbine wt : CacheContext.wtls) {
|
|
|
|
|
|
if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
Map<String, Windturbinetestingpointai> map = CacheContext.wtPointmap.get(wt.getId());
|
|
|
if (map.containsKey(Contant.LLGL)) {
|
|
|
Windturbinetestingpointai qfpt = map.get(Contant.LLGL);
|
|
|
- redisService.select(8);
|
|
|
+ //redisService.select(8);
|
|
|
|
|
|
|
|
|
Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
|
|
|
pomap.put("pointid", qfpt.getId());
|
|
|
- Date date = new Date();
|
|
|
+
|
|
|
pomap.put("value", 0);
|
|
|
pomap.put("timestamp", date.getTime() / 1000);
|
|
|
pomap.put("datetime", DateUtils.toDate(date));
|
|
@@ -320,66 +426,59 @@ public class Status_HF_Service {
|
|
|
// redisService.putHashAllObj(qfpt.getId(),pomap);
|
|
|
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
- Map<String, Windturbinetestingpointai> map = CacheContext.wtPointmap.get(wt.getId());
|
|
|
if (map.containsKey(Contant.AI022)) {
|
|
|
Windturbinetestingpointai speedpoint = map.get(Contant.AI022);
|
|
|
- if (CacheContext.redisDbMap.containsKey(speedpoint.getId())) {
|
|
|
-
|
|
|
- int dbnum = CacheContext.redisDbMap.get(speedpoint.getId());
|
|
|
- redisService.select(dbnum);
|
|
|
- double speed = 0.0;
|
|
|
- if (redisService.hasKey(speedpoint.getId(), "value")) {
|
|
|
- try {
|
|
|
-
|
|
|
- Map<Object, Object> tempmap = redisService.getHashEntries(speedpoint.getId());
|
|
|
- if (tempmap.containsKey("value")) {
|
|
|
- speed = Double.valueOf((String) tempmap.get("value"));
|
|
|
- }
|
|
|
- } catch (Exception e) {
|
|
|
- System.out.println("calculateLlgl " + e.getMessage());
|
|
|
- }
|
|
|
+ double speed = 0.0;
|
|
|
+ if(valuemap.containsKey(speedpoint.getId()))
|
|
|
+ {
|
|
|
+ Map<String, String> tempmap = valuemap.get(speedpoint.getId());
|
|
|
+ if (tempmap.containsKey("value")) {
|
|
|
+ speed = Double.valueOf((String) tempmap.get("value"));
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- if (speed != 0 && CacheContext.curveFittingPowerMap.containsKey(wt.getId()) && StringUtils.notEmp(speed)) {
|
|
|
- Map<Double, Windturbinepowercurvefitting> wtcurvemap = CacheContext.curveFittingPowerMap.get(wt.getId());
|
|
|
|
|
|
- if (wtcurvemap.containsKey(StringUtils.round(speed, 2))) {
|
|
|
- Windturbinepowercurvefitting wtcurve = wtcurvemap.get(StringUtils.round(speed, 2));
|
|
|
- //拟合功率
|
|
|
- Double actualpower = wtcurve.getOptimalpower();
|
|
|
+ if (speed != 0 && CacheContext.curveFittingPowerMap.containsKey(wt.getId()) && StringUtils.notEmp(speed)) {
|
|
|
+ Map<Double, Windturbinepowercurvefitting> wtcurvemap = CacheContext.curveFittingPowerMap.get(wt.getId());
|
|
|
|
|
|
- if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
+ if (wtcurvemap.containsKey(StringUtils.round(speed, 2))) {
|
|
|
+ Windturbinepowercurvefitting wtcurve = wtcurvemap.get(StringUtils.round(speed, 2));
|
|
|
+ //拟合功率
|
|
|
+ Double actualpower = wtcurve.getOptimalpower();
|
|
|
|
|
|
- if (map.containsKey(Contant.LLGL)) {
|
|
|
- Windturbinetestingpointai qfpt = map.get(Contant.LLGL);
|
|
|
- redisService.select(8);
|
|
|
+ if (CacheContext.wtPointmap.containsKey(wt.getId())) {
|
|
|
|
|
|
+ if (map.containsKey(Contant.LLGL)) {
|
|
|
+ Windturbinetestingpointai qfpt = map.get(Contant.LLGL);
|
|
|
+ // redisService.select(8);
|
|
|
|
|
|
- Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
|
|
|
- pomap.put("pointid", qfpt.getId());
|
|
|
- Date date = new Date();
|
|
|
- pomap.put("value", actualpower);
|
|
|
- pomap.put("timestamp", date.getTime() / 1000);
|
|
|
- pomap.put("datetime", DateUtils.toDate(date));
|
|
|
- pomap.put("status", 0);
|
|
|
- pipelinedmap.put(qfpt.getId(), pomap);
|
|
|
- //redisService.putHashAllObj(qfpt.getId(),pomap);
|
|
|
+ Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
+
|
|
|
+ pomap.put("pointid", qfpt.getId());
|
|
|
+
|
|
|
+ pomap.put("value", actualpower);
|
|
|
+ pomap.put("timestamp", date.getTime() / 1000);
|
|
|
+ pomap.put("datetime", DateUtils.toDate(date));
|
|
|
+ pomap.put("status", 0);
|
|
|
+ pipelinedmap.put(qfpt.getId(), pomap);
|
|
|
+ //redisService.putHashAllObj(qfpt.getId(),pomap);
|
|
|
|
|
|
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
+ redisService.select(8);
|
|
|
redisService.putHashAllPipeObj(pipelinedmap);
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -390,6 +489,8 @@ public class Status_HF_Service {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public void calculateWpPoint() throws Exception {
|
|
|
+ RedisService redisService= SpringUtils.getBean("redisService");
|
|
|
+ Date date = new Date();
|
|
|
Map<String, Map<String, Object>> pipelinedmap = new HashMap<>();
|
|
|
if (!CacheContext.wpls.isEmpty()) {
|
|
|
for (Windpowerstation wp : CacheContext.wpls) {
|
|
@@ -417,14 +518,14 @@ public class Status_HF_Service {
|
|
|
|
|
|
List<PointData> vos = edosUtil.getRealData(ls);
|
|
|
if (!vos.isEmpty()) {
|
|
|
- redisService.select(8);
|
|
|
+
|
|
|
for (PointData vo : vos) {
|
|
|
Map<String, Object> pomap = new LinkedHashMap<>();
|
|
|
|
|
|
pomap.put("pointid", vo.getEdnaId());
|
|
|
pomap.put("value", vo.getPointValueInDouble());
|
|
|
- pomap.put("timestamp", vo.getPointTime());
|
|
|
- pomap.put("datetime", DateUtils.toDate(new Date(vo.getPointTime())));
|
|
|
+ pomap.put("timestamp", date.getTime()/ 1000);
|
|
|
+ pomap.put("datetime", DateUtils.toDate(date));
|
|
|
pomap.put("status", 0);
|
|
|
pipelinedmap.put(vo.getEdnaId(), pomap);
|
|
|
//redisService.putHashAllObj(vo.getEdnaId(),pomap);
|
|
@@ -433,7 +534,9 @@ public class Status_HF_Service {
|
|
|
|
|
|
}
|
|
|
}
|
|
|
+ redisService.select(8);
|
|
|
redisService.putHashAllPipeObj(pipelinedmap);
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|