123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- package com.gyee.generation.service;
- import com.alibaba.fastjson.JSONObject;
- import com.alibaba.fastjson.TypeReference;
- import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
- import com.gyee.common.contant.ContantXk;
- import com.gyee.common.model.PointData;
- 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.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.util.DateUtils;
- import com.gyee.generation.util.StringUtils;
- import com.gyee.generation.util.realtimesource.IEdosUtil;
- import com.gyee.generation.util.redis.RedisService;
- import org.springframework.stereotype.Service;
- import javax.annotation.Resource;
- import java.util.*;
- import java.util.concurrent.Executor;
- @Service
- public class GoodnessOfFitService {
- // private static final Logger logger = LoggerFactory.getLogger(GoodnessOfFitService.class);
- @Resource
- private IEdosUtil edosUtil;
- @Resource
- private IProEconWtCurveFittingMonthService proEconWtCurveFittingMonthService;
- @Resource
- private RedisService redisService;
- @Resource
- private Executor executor;
- public Map<String,Map<String,Double>> goodnessOfFit(String wtId,Date nowDate) throws Exception {
- Date endDate =DateUtils.truncate(nowDate);
- Date startDate = DateUtils.addDays(nowDate,-1);
- Calendar c= Calendar.getInstance();
- c.setTime(startDate);
- String year =String.valueOf(c.get(Calendar.YEAR));
- String month = String.valueOf(c.get(Calendar.MONTH)+1);
- c.setTime(nowDate);
- c.set(Calendar.DAY_OF_MONTH,1);
- Date startDateM = c.getTime();
- c.set(Calendar.MONTH,0);
- Date startDateY = c.getTime();
- 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<>();
- 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<>();
- //月数据筛选日分钟间隔
- 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);
- }
- }
- //年数据筛选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);
- }
- }
- 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);
- }
- });
- 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);
- }
- });
- return resultmap;
- }
- private void buildList(Map<String, FitClassVo> theMap, List<FitClassVo> theList, String windpowerstationId, List<FitClassVo> fitsY, List<ProEconWtCurveFittingMonth> powerList)
- {
- for (FitClassVo item : fitsY)
- {
- Double speed=StringUtils.round(item.getSpeed(), 1);
- String windturbineId = item.getWindturbineId();
- if (CacheContext.theoreticalPowerMap.containsKey(item.getModelId()))
- {
- if (CacheContext.theoreticalPowerMap.get(item.getModelId()).size() > 0)
- {
- if (CacheContext.theoreticalPowerMap.get(item.getModelId()).containsKey(speed))
- {
- Double epower = CacheContext.theoreticalPowerMap.get(item.getModelId()).get(speed).getEnsurePower();
- buildtheMap(theMap, theList, windpowerstationId, item, speed, epower);
- }
- }
- else
- {
- if (powerList != null && powerList.size()>0)
- {
- Double finalSpeed = speed;
- OptionalDouble tempp=powerList.stream()
- .filter(i-> Objects.equals(i.getSpeed(), finalSpeed) && i.getWindturbineId().equals(windturbineId))
- .mapToDouble(ProEconWtCurveFittingMonth::getOptimalPower).findFirst();
- double p;
- if (tempp.isPresent())
- {
- Double epower = tempp.getAsDouble();
- buildtheMap(theMap, theList, windpowerstationId, item, speed, epower);
- }
- else
- {
- DoubleSummaryStatistics summaryStatistics=powerList.stream().filter(i->i.getWindturbineId().equals(windturbineId))
- .mapToDouble(ProEconWtCurveFittingMonth::getSpeed).summaryStatistics();
- double max = summaryStatistics.getMax();
- if (speed > max)
- {
- summaryStatistics=powerList.stream().filter(i->i.getWindturbineId().equals(windturbineId)).mapToDouble(ProEconWtCurveFittingMonth::getActualPower).summaryStatistics();
- p = summaryStatistics.getMax();
- Double epower = p;
- buildtheMap(theMap, theList, windpowerstationId, item, speed, epower);
- }
- }
- }
- }
- }
- }
- }
- private static void buildtheMap(Map<String, FitClassVo> theMap, List<FitClassVo> theList, String windpowerstationId, FitClassVo item, Double speed, Double epower)
- {
- Double value1 = item.getPower() - epower;
- value1 *= value1;
- Double value2 = item.getPower();
- value2 *= value2;
- if (theMap.containsKey(item.getWindturbineId()))
- {
- FitClassVo vo= theMap.get(item.getWindturbineId());
- int number=vo.getNumber();
- vo.setSpeed(item.getSpeed()+speed);
- vo.setPower(item.getPower()+value1);
- vo.setEpower(epower+value2);
- number=number+1;
- vo.setNumber(number);
- theMap.put(item.getWindturbineId(),vo);
- }
- else
- {
- FitClassVo fit = new FitClassVo();
- fit.setWindturbineId(item.getWindturbineId());
- fit.setWindpowerstationId(windpowerstationId);
- fit.setModelId(item.getModelId());
- fit.setSpeed(speed);
- fit.setPower(value1);
- fit.setEpower(value2);
- fit.setNumber(1);
- theList.add(fit);
- theMap.put(item.getWindturbineId(), fit);
- }
- }
- }
|