|
@@ -10,10 +10,12 @@ import com.gyee.generation.init.CacheContext;
|
|
|
import com.gyee.generation.model.auto.ProBasicEquipment;
|
|
|
import com.gyee.generation.model.auto.ProBasicEquipmentPoint;
|
|
|
import com.gyee.generation.model.auto.ProEconWtCurveFittingMonth;
|
|
|
+import com.gyee.generation.model.auto.TurbineInfoMin;
|
|
|
import com.gyee.generation.model.vo.CurveType;
|
|
|
import com.gyee.generation.model.vo.FitClassVo;
|
|
|
import com.gyee.generation.model.vo.StatData;
|
|
|
import com.gyee.generation.service.auto.IProEconWtCurveFittingMonthService;
|
|
|
+import com.gyee.generation.service.auto.ITurbineInfoMinService;
|
|
|
import com.gyee.generation.util.DateUtils;
|
|
|
import com.gyee.generation.util.StringUtils;
|
|
|
import com.gyee.generation.util.realtimesource.IEdosUtil;
|
|
@@ -21,6 +23,7 @@ import com.gyee.generation.util.redis.RedisService;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
import java.util.concurrent.Executor;
|
|
|
|
|
@@ -35,7 +38,8 @@ public class GoodnessOfFitService {
|
|
|
private IProEconWtCurveFittingMonthService proEconWtCurveFittingMonthService;
|
|
|
@Resource
|
|
|
private RedisService redisService;
|
|
|
-
|
|
|
+ @Resource
|
|
|
+ private ITurbineInfoMinService turbineInfoMinService;
|
|
|
|
|
|
public Map<String, Map<String, Double>> goodnessOfFit(String wtId, Date nowDate) throws Exception {
|
|
|
|
|
@@ -55,155 +59,200 @@ public class GoodnessOfFitService {
|
|
|
c.set(Calendar.MONTH, 0);
|
|
|
Date startDateY = c.getTime();
|
|
|
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
+ String beginDateString = sdf.format(startDate);
|
|
|
+ String endDateString = sdf.format(endDate);
|
|
|
+ String startDateMString = sdf.format(startDateM);
|
|
|
+ String startDateYString = sdf.format(startDateY);
|
|
|
+
|
|
|
+
|
|
|
Map<String, Map<String, Double>> resultmap = new HashMap<>();
|
|
|
|
|
|
Map<String, FitClassVo> theMapY = new HashMap<>();
|
|
|
Map<String, FitClassVo> theMapM = new HashMap<>();
|
|
|
Map<String, FitClassVo> theMapD = new HashMap<>();
|
|
|
+// if (wtId.equals("NX_FGS_HA_F_WT_0027_EQ")) {
|
|
|
+ List<FitClassVo> theList = new ArrayList<>();
|
|
|
|
|
|
- List<FitClassVo> theList = new ArrayList<>();
|
|
|
-
|
|
|
- List<ProEconWtCurveFittingMonth> powerList = new ArrayList<>();
|
|
|
-
|
|
|
-
|
|
|
- if (redisService.hasKey(CurveType.monthCurve.id + "_" + wtId)) {
|
|
|
- String cp0String = redisService.get(CurveType.monthCurve.id + "_" + wtId);
|
|
|
- powerList = JSONObject.parseObject(cp0String, new TypeReference<List<ProEconWtCurveFittingMonth>>() {
|
|
|
- });
|
|
|
- } else {
|
|
|
- QueryWrapper<ProEconWtCurveFittingMonth> queryWrapper = new QueryWrapper<>();
|
|
|
- queryWrapper.eq("year", year).eq("month", month).eq("windturbine_id", wtId);
|
|
|
- powerList = proEconWtCurveFittingMonthService.list(queryWrapper);
|
|
|
- }
|
|
|
- ProBasicEquipment wt = CacheContext.wtmap.get(wtId);
|
|
|
-
|
|
|
-
|
|
|
- List<FitClassVo> fitsD = new ArrayList<>();
|
|
|
- List<FitClassVo> fitsM = new ArrayList<>();
|
|
|
- List<FitClassVo> fitsY = new ArrayList<>();
|
|
|
+ List<ProEconWtCurveFittingMonth> powerList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
- //月数据筛选日分钟间隔
|
|
|
- Map<String, ProBasicEquipmentPoint> wtpointmap = CacheContext.wtpAimap.get(wt.getId());
|
|
|
- ProBasicEquipmentPoint fspoint = wtpointmap.get(ContantXk.CJ_SSFS);
|
|
|
- List<PointData> fsls = edosUtil.getHistStat(fspoint.getNemCode(), startDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L, StatData.AVG.getValue());
|
|
|
-
|
|
|
- ProBasicEquipmentPoint glpoint = wtpointmap.get(ContantXk.CJ_SSGL);
|
|
|
- List<PointData> glls = edosUtil.getHistStat(glpoint.getNemCode(), startDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L, StatData.AVG.getValue());
|
|
|
-
|
|
|
- if (!fsls.isEmpty() && !glls.isEmpty() && fsls.size() == glls.size()) {
|
|
|
- for (int i = 0; i < fsls.size(); i++) {
|
|
|
- PointData fspd = fsls.get(i);
|
|
|
- PointData glpd = glls.get(i);
|
|
|
- FitClassVo po = new FitClassVo();
|
|
|
- po.setWindturbineId(wt.getId());
|
|
|
- po.setModelId(wt.getModelId());
|
|
|
- po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
-
|
|
|
- po.setSpeed(StringUtils.round(fspd.getPointValueInDouble(), 2));
|
|
|
- po.setPower(StringUtils.round(glpd.getPointValueInDouble(), 2));
|
|
|
- fitsD.add(po);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //月数据筛选15分钟间隔
|
|
|
- fsls = edosUtil.getHistStat(fspoint.getNemCode(), startDateM.getTime() / 1000, endDate.getTime() / 1000, null, 60 * 60L, StatData.AVG.getValue());
|
|
|
- glls = edosUtil.getHistStat(glpoint.getNemCode(), startDateM.getTime() / 1000, endDate.getTime() / 1000, null, 60 * 60L, StatData.AVG.getValue());
|
|
|
-
|
|
|
- if (!fsls.isEmpty() && !glls.isEmpty() && fsls.size() == glls.size()) {
|
|
|
- for (int i = 0; i < fsls.size(); i++) {
|
|
|
- PointData fspd = fsls.get(i);
|
|
|
- PointData glpd = glls.get(i);
|
|
|
- FitClassVo po = new FitClassVo();
|
|
|
- po.setWindturbineId(wt.getId());
|
|
|
- po.setModelId(wt.getModelId());
|
|
|
- po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
-
|
|
|
- po.setSpeed(StringUtils.round(fspd.getPointValueInDouble(), 2));
|
|
|
- po.setPower(StringUtils.round(glpd.getPointValueInDouble(), 2));
|
|
|
- fitsM.add(po);
|
|
|
+ if (redisService.hasKey(CurveType.monthCurve.id + "_" + wtId)) {
|
|
|
+ String cp0String = redisService.get(CurveType.monthCurve.id + "_" + wtId);
|
|
|
+ powerList = JSONObject.parseObject(cp0String, new TypeReference<List<ProEconWtCurveFittingMonth>>() {
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ QueryWrapper<ProEconWtCurveFittingMonth> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("year", year).eq("month", month).eq("windturbine_id", wtId);
|
|
|
+ powerList = proEconWtCurveFittingMonthService.list(queryWrapper);
|
|
|
}
|
|
|
- }
|
|
|
- //年数据筛选15分钟间隔
|
|
|
- fsls = edosUtil.getHistStat(fspoint.getNemCode(), startDateY.getTime() / 1000, endDate.getTime() / 1000, null, 60 * 60L * 6, StatData.AVG.getValue());
|
|
|
- glls = edosUtil.getHistStat(glpoint.getNemCode(), startDateY.getTime() / 1000, endDate.getTime() / 1000, null, 60 * 60L * 6, StatData.AVG.getValue());
|
|
|
-
|
|
|
- if (!fsls.isEmpty() && !glls.isEmpty() && fsls.size() == glls.size()) {
|
|
|
- for (int i = 0; i < fsls.size(); i++) {
|
|
|
- PointData fspd = fsls.get(i);
|
|
|
- PointData glpd = glls.get(i);
|
|
|
- FitClassVo po = new FitClassVo();
|
|
|
- po.setWindturbineId(wt.getId());
|
|
|
- po.setModelId(wt.getModelId());
|
|
|
- po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
-
|
|
|
- po.setSpeed(StringUtils.round(fspd.getPointValueInDouble(), 2));
|
|
|
- po.setPower(StringUtils.round(glpd.getPointValueInDouble(), 2));
|
|
|
- fitsY.add(po);
|
|
|
+ ProBasicEquipment wt = CacheContext.wtmap.get(wtId);
|
|
|
+
|
|
|
+
|
|
|
+ List<FitClassVo> fitsD = new ArrayList<>();
|
|
|
+ List<FitClassVo> fitsM = new ArrayList<>();
|
|
|
+ List<FitClassVo> fitsY = new ArrayList<>();
|
|
|
+
|
|
|
+
|
|
|
+ //月数据筛选日分钟间隔
|
|
|
+// Map<String, ProBasicEquipmentPoint> wtpointmap = CacheContext.wtpAimap.get(wt.getId());
|
|
|
+// ProBasicEquipmentPoint fspoint = wtpointmap.get(ContantXk.CJ_SSFS);
|
|
|
+// List<PointData> fsls = edosUtil.getHistStat(fspoint.getNemCode(), startDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L, StatData.AVG.getValue());
|
|
|
+//
|
|
|
+// ProBasicEquipmentPoint glpoint = wtpointmap.get(ContantXk.CJ_SSGL);
|
|
|
+// List<PointData> glls = edosUtil.getHistStat(glpoint.getNemCode(), startDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L, StatData.AVG.getValue());
|
|
|
+ List<TurbineInfoMin> dayinfoMins = turbineInfoMinService.selectByTurbineId(wt.getId(), beginDateString, endDateString);
|
|
|
+ if (!dayinfoMins.isEmpty()) {
|
|
|
+ for (TurbineInfoMin min : dayinfoMins) {
|
|
|
+ FitClassVo po = new FitClassVo();
|
|
|
+ po.setWindturbineId(wt.getId());
|
|
|
+ po.setModelId(wt.getModelId());
|
|
|
+ po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
+
|
|
|
+ po.setSpeed(StringUtils.round(min.getPjfs(), 2));
|
|
|
+ po.setPower(StringUtils.round(min.getPjgl(), 2));
|
|
|
+ fitsD.add(po);
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- buildList(theMapY, theList, wt.getWindpowerstationId(), fitsY, powerList);
|
|
|
- buildList(theMapM, theList, wt.getWindpowerstationId(), fitsM, powerList);
|
|
|
- buildList(theMapD, theList, wt.getWindpowerstationId(), fitsD, powerList);
|
|
|
-
|
|
|
-
|
|
|
- for (FitClassVo item : theList) {
|
|
|
- double rnew = 0;
|
|
|
- double speed = 0;
|
|
|
-
|
|
|
- if (item.getEpower() != 0) {
|
|
|
- rnew = (double) Math.sqrt((double) (item.getPower() / item.getEpower()));
|
|
|
+// if (!fsls.isEmpty() && !glls.isEmpty() && fsls.size() == glls.size()) {
|
|
|
+// for (int i = 0; i < fsls.size(); i++) {
|
|
|
+// PointData fspd = fsls.get(i);
|
|
|
+// PointData glpd = glls.get(i);
|
|
|
+// FitClassVo po = new FitClassVo();
|
|
|
+// po.setWindturbineId(wt.getId());
|
|
|
+// po.setModelId(wt.getModelId());
|
|
|
+// po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
+//
|
|
|
+// po.setSpeed(StringUtils.round(fspd.getPointValueInDouble(), 2));
|
|
|
+// po.setPower(StringUtils.round(glpd.getPointValueInDouble(), 2));
|
|
|
+// fitsD.add(po);
|
|
|
+// }
|
|
|
+// }
|
|
|
+
|
|
|
+
|
|
|
+ //月数据筛选15分钟间隔
|
|
|
+// fsls = edosUtil.getHistStat(fspoint.getNemCode(), startDateM.getTime() / 1000, endDate.getTime() / 1000, null, 60 * 60L, StatData.AVG.getValue());
|
|
|
+// glls = edosUtil.getHistStat(glpoint.getNemCode(), startDateM.getTime() / 1000, endDate.getTime() / 1000, null, 60 * 60L, StatData.AVG.getValue());
|
|
|
+ List<TurbineInfoMin> monthinfoMins = turbineInfoMinService.selectByTurbineId(wt.getId(), startDateMString, endDateString);
|
|
|
+ if (!monthinfoMins.isEmpty()) {
|
|
|
+ for (TurbineInfoMin min : monthinfoMins) {
|
|
|
+ FitClassVo po = new FitClassVo();
|
|
|
+ po.setWindturbineId(wt.getId());
|
|
|
+ po.setModelId(wt.getModelId());
|
|
|
+ po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
+ po.setSpeed(StringUtils.round(min.getPjfs(), 2));
|
|
|
+ po.setPower(StringUtils.round(min.getPjgl(), 2));
|
|
|
+ fitsM.add(po);
|
|
|
+ }
|
|
|
}
|
|
|
- if (item.getNumber() != 0) {
|
|
|
- speed = item.getSpeed() / item.getNumber();
|
|
|
+// if (!fsls.isEmpty() && !glls.isEmpty() && fsls.size() == glls.size()) {
|
|
|
+// for (int i = 0; i < fsls.size(); i++) {
|
|
|
+// PointData fspd = fsls.get(i);
|
|
|
+// PointData glpd = glls.get(i);
|
|
|
+// FitClassVo po = new FitClassVo();
|
|
|
+// po.setWindturbineId(wt.getId());
|
|
|
+// po.setModelId(wt.getModelId());
|
|
|
+// po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
+//
|
|
|
+// po.setSpeed(StringUtils.round(fspd.getPointValueInDouble(), 2));
|
|
|
+// po.setPower(StringUtils.round(glpd.getPointValueInDouble(), 2));
|
|
|
+// fitsM.add(po);
|
|
|
+// }
|
|
|
+// }
|
|
|
+
|
|
|
+ //年数据筛选15分钟间隔
|
|
|
+// fsls = edosUtil.getHistStat(fspoint.getNemCode(), startDateY.getTime() / 1000, endDate.getTime() / 1000, null, 60 * 60L * 6, StatData.AVG.getValue());
|
|
|
+// glls = edosUtil.getHistStat(glpoint.getNemCode(), startDateY.getTime() / 1000, endDate.getTime() / 1000, null, 60 * 60L * 6, StatData.AVG.getValue());
|
|
|
+
|
|
|
+ List<TurbineInfoMin> yearMins = turbineInfoMinService.selectByTurbineId(wt.getId(), startDateYString, endDateString);
|
|
|
+ if (!yearMins.isEmpty()) {
|
|
|
+ for (TurbineInfoMin min : yearMins) {
|
|
|
+ FitClassVo po = new FitClassVo();
|
|
|
+ po.setWindturbineId(wt.getId());
|
|
|
+ po.setModelId(wt.getModelId());
|
|
|
+ po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
+ po.setSpeed(StringUtils.round(min.getPjfs(), 2));
|
|
|
+ po.setPower(StringUtils.round(min.getPjgl(), 2));
|
|
|
+ fitsY.add(po);
|
|
|
+ }
|
|
|
}
|
|
|
- item.setSpeed(speed);
|
|
|
- item.setPower(rnew);
|
|
|
- }
|
|
|
-
|
|
|
|
|
|
- theMapD.forEach((key, value) -> {
|
|
|
- if (resultmap.containsKey(key)) {
|
|
|
- Map<String, Double> tempmap = resultmap.get(key);
|
|
|
- tempmap.put("day", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
- resultmap.put(key, tempmap);
|
|
|
- } else {
|
|
|
- Map<String, Double> tempmap = new HashMap<>();
|
|
|
- tempmap.put("day", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
- resultmap.put(key, tempmap);
|
|
|
+// if (!fsls.isEmpty() && !glls.isEmpty() && fsls.size() == glls.size()) {
|
|
|
+// for (int i = 0; i < fsls.size(); i++) {
|
|
|
+// PointData fspd = fsls.get(i);
|
|
|
+// PointData glpd = glls.get(i);
|
|
|
+// FitClassVo po = new FitClassVo();
|
|
|
+// po.setWindturbineId(wt.getId());
|
|
|
+// po.setModelId(wt.getModelId());
|
|
|
+// po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
+//
|
|
|
+// po.setSpeed(StringUtils.round(fspd.getPointValueInDouble(), 2));
|
|
|
+// po.setPower(StringUtils.round(glpd.getPointValueInDouble(), 2));
|
|
|
+// fitsY.add(po);
|
|
|
+// }
|
|
|
+// }
|
|
|
+
|
|
|
+ buildList(theMapY, theList, wt.getWindpowerstationId(), fitsY, powerList);
|
|
|
+ buildList(theMapM, theList, wt.getWindpowerstationId(), fitsM, powerList);
|
|
|
+ buildList(theMapD, theList, wt.getWindpowerstationId(), fitsD, powerList);
|
|
|
+
|
|
|
+
|
|
|
+ for (FitClassVo item : theList) {
|
|
|
+ double rnew = 0;
|
|
|
+ double speed = 0;
|
|
|
+
|
|
|
+ if (item.getEpower() != 0) {
|
|
|
+ rnew = (double) Math.sqrt((double) (item.getPower() / item.getEpower()));
|
|
|
+ }
|
|
|
+ if (item.getNumber() != 0) {
|
|
|
+ speed = item.getSpeed() / item.getNumber();
|
|
|
+ }
|
|
|
+ item.setSpeed(speed);
|
|
|
+ item.setPower(rnew);
|
|
|
}
|
|
|
|
|
|
- });
|
|
|
|
|
|
- theMapM.forEach((key, value) -> {
|
|
|
+ theMapD.forEach((key, value) -> {
|
|
|
+ if (resultmap.containsKey(key)) {
|
|
|
+ Map<String, Double> tempmap = resultmap.get(key);
|
|
|
+ tempmap.put("day", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
+ resultmap.put(key, tempmap);
|
|
|
+ } else {
|
|
|
+ Map<String, Double> tempmap = new HashMap<>();
|
|
|
+ tempmap.put("day", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
+ resultmap.put(key, tempmap);
|
|
|
+ }
|
|
|
|
|
|
- if (resultmap.containsKey(key)) {
|
|
|
- Map<String, Double> tempmap = resultmap.get(key);
|
|
|
- tempmap.put("month", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
- resultmap.put(key, tempmap);
|
|
|
- } else {
|
|
|
- Map<String, Double> tempmap = new HashMap<>();
|
|
|
- tempmap.put("month", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
- resultmap.put(key, tempmap);
|
|
|
- }
|
|
|
+ });
|
|
|
|
|
|
- });
|
|
|
+ theMapM.forEach((key, value) -> {
|
|
|
|
|
|
- theMapY.forEach((key, value) -> {
|
|
|
- if (resultmap.containsKey(key)) {
|
|
|
- Map<String, Double> tempmap = resultmap.get(key);
|
|
|
- tempmap.put("year", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
- resultmap.put(key, tempmap);
|
|
|
- } else {
|
|
|
- Map<String, Double> tempmap = new HashMap<>();
|
|
|
- tempmap.put("year", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
- resultmap.put(key, tempmap);
|
|
|
- }
|
|
|
+ if (resultmap.containsKey(key)) {
|
|
|
+ Map<String, Double> tempmap = resultmap.get(key);
|
|
|
+ tempmap.put("month", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
+ resultmap.put(key, tempmap);
|
|
|
+ } else {
|
|
|
+ Map<String, Double> tempmap = new HashMap<>();
|
|
|
+ tempmap.put("month", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
+ resultmap.put(key, tempmap);
|
|
|
+ }
|
|
|
|
|
|
- });
|
|
|
+ });
|
|
|
|
|
|
+ theMapY.forEach((key, value) -> {
|
|
|
+ if (resultmap.containsKey(key)) {
|
|
|
+ Map<String, Double> tempmap = resultmap.get(key);
|
|
|
+ tempmap.put("year", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
+ resultmap.put(key, tempmap);
|
|
|
+ } else {
|
|
|
+ Map<String, Double> tempmap = new HashMap<>();
|
|
|
+ tempmap.put("year", value.getPower() > 1 ? 1 : StringUtils.round(value.getPower(), 2));
|
|
|
+ resultmap.put(key, tempmap);
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
|
|
|
+// }
|
|
|
return resultmap;
|
|
|
}
|
|
|
|