|
@@ -24,11 +24,11 @@ import java.util.*;
|
|
|
public class GoodnessOfFitService {
|
|
|
|
|
|
|
|
|
-// private static final Logger logger = LoggerFactory.getLogger(GoodnessOfFitService.class);
|
|
|
- @Resource
|
|
|
- private IEdosUtil edosUtil;
|
|
|
- @Resource
|
|
|
- private IProEconWtCurveFittingMonthService proEconWtCurveFittingMonthService;
|
|
|
+ // private static final Logger logger = LoggerFactory.getLogger(GoodnessOfFitService.class);
|
|
|
+ @Resource
|
|
|
+ private IEdosUtil edosUtil;
|
|
|
+ @Resource
|
|
|
+ private IProEconWtCurveFittingMonthService proEconWtCurveFittingMonthService;
|
|
|
|
|
|
public Map<String,Map<String,Double>> goodnessOfFit(String wtId,Date nowDate) throws Exception {
|
|
|
|
|
@@ -57,10 +57,10 @@ public class GoodnessOfFitService {
|
|
|
|
|
|
List<FitClassVo> theList = new ArrayList<>();
|
|
|
|
|
|
- List<ProEconWtCurveFittingMonth> powerList;
|
|
|
+ List<ProEconWtCurveFittingMonth> powerList;
|
|
|
QueryWrapper<ProEconWtCurveFittingMonth> queryWrapper = new QueryWrapper<>();
|
|
|
queryWrapper.eq("year",year).eq("month",month).eq("windturbine_id",wtId);
|
|
|
- powerList = proEconWtCurveFittingMonthService.list(queryWrapper);
|
|
|
+ powerList = proEconWtCurveFittingMonthService.list(queryWrapper);
|
|
|
// .stream().filter(i->i.getMonth().equals(month)
|
|
|
// && i.getWindturbineId().equals(wtId)
|
|
|
// && i.getYear().equals(year)).collect(Collectors.toList());
|
|
@@ -69,126 +69,126 @@ public class GoodnessOfFitService {
|
|
|
//
|
|
|
// {
|
|
|
|
|
|
- List<FitClassVo> fitsD= new ArrayList<>();
|
|
|
- List<FitClassVo> fitsM= new ArrayList<>();
|
|
|
- List<FitClassVo> fitsY= new ArrayList<>();
|
|
|
+ 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());
|
|
|
+ //月数据筛选日分钟间隔
|
|
|
+ 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());
|
|
|
+ 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);
|
|
|
- }
|
|
|
- }
|
|
|
+ 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,900L, StatData.AVG.getValue());
|
|
|
- glls=edosUtil.getHistStat(glpoint.getNemCode(),startDateM.getTime()/1000,endDate.getTime()/1000,null,900L, StatData.AVG.getValue());
|
|
|
+ //月数据筛选15分钟间隔
|
|
|
+ fsls=edosUtil.getHistStat(fspoint.getNemCode(),startDateM.getTime()/1000,endDate.getTime()/1000,null,900L, StatData.AVG.getValue());
|
|
|
+ glls=edosUtil.getHistStat(glpoint.getNemCode(),startDateM.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));
|
|
|
- fitsM.add(po);
|
|
|
- }
|
|
|
- }
|
|
|
- //年数据筛选15分钟间隔
|
|
|
- fsls=edosUtil.getHistStat(fspoint.getNemCode(),startDateY.getTime()/1000,endDate.getTime()/1000,null,900L, StatData.AVG.getValue());
|
|
|
- glls=edosUtil.getHistStat(glpoint.getNemCode(),startDateY.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));
|
|
|
+ fitsM.add(po);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //年数据筛选15分钟间隔
|
|
|
+ fsls=edosUtil.getHistStat(fspoint.getNemCode(),startDateY.getTime()/1000,endDate.getTime()/1000,null,900L, StatData.AVG.getValue());
|
|
|
+ glls=edosUtil.getHistStat(glpoint.getNemCode(),startDateY.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));
|
|
|
- fitsY.add(po);
|
|
|
- }
|
|
|
- }
|
|
|
+ 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);
|
|
|
+ buildList(theMapY, theList, wt.getWindpowerstationId(), fitsY, powerList);
|
|
|
+ buildList(theMapM, theList, wt.getWindpowerstationId(), fitsM, powerList);
|
|
|
+ buildList(theMapD, theList, wt.getWindpowerstationId(), fitsD, powerList);
|
|
|
|
|
|
|
|
|
- theMapD.forEach((key,value)->{
|
|
|
- if(resultmap.containsKey(key))
|
|
|
- {
|
|
|
- Map<String,Double> tempmap=resultmap.get(key);
|
|
|
- tempmap.put("day",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
- resultmap.put(key,tempmap);
|
|
|
- }else
|
|
|
- {
|
|
|
- Map<String,Double> tempmap=new HashMap<>();
|
|
|
- tempmap.put("day",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
- resultmap.put(key,tempmap);
|
|
|
- }
|
|
|
+ theMapD.forEach((key,value)->{
|
|
|
+ if(resultmap.containsKey(key))
|
|
|
+ {
|
|
|
+ Map<String,Double> tempmap=resultmap.get(key);
|
|
|
+ tempmap.put("day",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
+ resultmap.put(key,tempmap);
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ Map<String,Double> tempmap=new HashMap<>();
|
|
|
+ tempmap.put("day",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
+ resultmap.put(key,tempmap);
|
|
|
+ }
|
|
|
|
|
|
- });
|
|
|
+ });
|
|
|
|
|
|
- theMapM.forEach((key,value)->{
|
|
|
- if(resultmap.containsKey(key))
|
|
|
- {
|
|
|
- Map<String,Double> tempmap=resultmap.get(key);
|
|
|
- tempmap.put("month",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
- resultmap.put(key,tempmap);
|
|
|
- }else
|
|
|
- {
|
|
|
- Map<String,Double> tempmap=new HashMap<>();
|
|
|
- tempmap.put("month",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
- resultmap.put(key,tempmap);
|
|
|
- }
|
|
|
+ theMapM.forEach((key,value)->{
|
|
|
+ if(resultmap.containsKey(key))
|
|
|
+ {
|
|
|
+ Map<String,Double> tempmap=resultmap.get(key);
|
|
|
+ tempmap.put("month",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
+ resultmap.put(key,tempmap);
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ Map<String,Double> tempmap=new HashMap<>();
|
|
|
+ tempmap.put("month",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
+ 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 : value.getPower());
|
|
|
- resultmap.put(key,tempmap);
|
|
|
- }else
|
|
|
- {
|
|
|
- Map<String,Double> tempmap=new HashMap<>();
|
|
|
- tempmap.put("year",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
- 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 : value.getPower());
|
|
|
+ resultmap.put(key,tempmap);
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ Map<String,Double> tempmap=new HashMap<>();
|
|
|
+ tempmap.put("year",value.getPower() > 1 ? 1 : value.getPower());
|
|
|
+ resultmap.put(key,tempmap);
|
|
|
+ }
|
|
|
|
|
|
- });
|
|
|
+ });
|
|
|
// }
|
|
|
|
|
|
|
|
@@ -311,7 +311,7 @@ public class GoodnessOfFitService {
|
|
|
int number=vo.getNumber();
|
|
|
vo.setSpeed(item.getSpeed()+speed);
|
|
|
vo.setPower(item.getPower()+value1);
|
|
|
- vo.setEpower(item.getEpower()+value2);
|
|
|
+ vo.setEpower(epower+value2);
|
|
|
number=number+1;
|
|
|
vo.setNumber(number);
|
|
|
theMap.put(item.getWindturbineId(),vo);
|