|
@@ -1,23 +1,19 @@
|
|
package com.gyee.generation.service.realtimelibrary;
|
|
package com.gyee.generation.service.realtimelibrary;
|
|
|
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.gyee.common.contant.ContantXk;
|
|
import com.gyee.common.contant.ContantXk;
|
|
import com.gyee.common.model.PointData;
|
|
import com.gyee.common.model.PointData;
|
|
import com.gyee.common.util.DateUtils;
|
|
import com.gyee.common.util.DateUtils;
|
|
import com.gyee.generation.init.CacheContext;
|
|
import com.gyee.generation.init.CacheContext;
|
|
-import com.gyee.generation.model.auto.ProBasicCompany;
|
|
|
|
-import com.gyee.generation.model.auto.ProBasicPowerstation;
|
|
|
|
-import com.gyee.generation.model.auto.ProBasicPowerstationPoint;
|
|
|
|
-import com.gyee.generation.model.auto.ProBasicRegion;
|
|
|
|
|
|
+import com.gyee.generation.model.auto.*;
|
|
|
|
+import com.gyee.generation.service.auto.IProEconPowerstationInfoDay2Service;
|
|
import com.gyee.generation.util.PointUtil;
|
|
import com.gyee.generation.util.PointUtil;
|
|
import com.gyee.generation.util.realtimesource.IEdosUtil;
|
|
import com.gyee.generation.util.realtimesource.IEdosUtil;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
-import java.util.ArrayList;
|
|
|
|
-import java.util.Date;
|
|
|
|
-import java.util.List;
|
|
|
|
-import java.util.Map;
|
|
|
|
|
|
+import java.util.*;
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
import java.util.concurrent.atomic.AtomicReference;
|
|
import java.util.concurrent.atomic.AtomicReference;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
@@ -34,6 +30,8 @@ public class RegionCalService {
|
|
|
|
|
|
@Resource
|
|
@Resource
|
|
private IEdosUtil edosUtil;
|
|
private IEdosUtil edosUtil;
|
|
|
|
+ @Resource
|
|
|
|
+ private IProEconPowerstationInfoDay2Service proEconPowerstationInfoDay2Service;
|
|
/**
|
|
/**
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
@@ -201,6 +199,17 @@ public class RegionCalService {
|
|
ProBasicPowerstationPoint zycydlPoint = powerstationPointMap.get(ContantXk.YCYDL);
|
|
ProBasicPowerstationPoint zycydlPoint = powerstationPointMap.get(ContantXk.YCYDL);
|
|
ProBasicPowerstationPoint zncydlPoint = powerstationPointMap.get(ContantXk.NCYDL);
|
|
ProBasicPowerstationPoint zncydlPoint = powerstationPointMap.get(ContantXk.NCYDL);
|
|
|
|
|
|
|
|
+ ProBasicPowerstationPoint jymPoint = powerstationPointMap.get(ContantXk.JYM);
|
|
|
|
+ ProBasicPowerstationPoint jysPoint = powerstationPointMap.get(ContantXk.JYS);
|
|
|
|
+ ProBasicPowerstationPoint jyeyhtPoint = powerstationPointMap.get(ContantXk.JYEYHT);
|
|
|
|
+ ProBasicPowerstationPoint jyeyhlPoint = powerstationPointMap.get(ContantXk.JYEYHL);
|
|
|
|
+ ProBasicPowerstationPoint rlyxsPoint = powerstationPointMap.get(ContantXk.RLYXS);
|
|
|
|
+ ProBasicPowerstationPoint ylyxsPoint = powerstationPointMap.get(ContantXk.YLYXS);
|
|
|
|
+ ProBasicPowerstationPoint nlyxsPoint = powerstationPointMap.get(ContantXk.NLYXS);
|
|
|
|
+ ProBasicPowerstationPoint sbklylPoint = powerstationPointMap.get(ContantXk.SBKLYL);
|
|
|
|
+ ProBasicPowerstationPoint dxkyxsPoint = powerstationPointMap.get(ContantXk.DXKYXS);
|
|
|
|
+ ProBasicPowerstationPoint fnlylPoint = powerstationPointMap.get(ContantXk.FNLYL);
|
|
|
|
+
|
|
AtomicReference<Double> rpjgl = new AtomicReference<>((double) 0);
|
|
AtomicReference<Double> rpjgl = new AtomicReference<>((double) 0);
|
|
AtomicReference<Double> rpjfs = new AtomicReference<>((double) 0);
|
|
AtomicReference<Double> rpjfs = new AtomicReference<>((double) 0);
|
|
AtomicReference<Double> rpjgzd = new AtomicReference<>((double) 0);
|
|
AtomicReference<Double> rpjgzd = new AtomicReference<>((double) 0);
|
|
@@ -1536,6 +1545,68 @@ public class RegionCalService {
|
|
resultList.add(PointUtil.createPointData(currentDate,ycydl.get(),zycydlPoint.getNemCode(),zycydlPoint.getName()));
|
|
resultList.add(PointUtil.createPointData(currentDate,ycydl.get(),zycydlPoint.getNemCode(),zycydlPoint.getName()));
|
|
resultList.add(PointUtil.createPointData(currentDate,ncydl.get(),zncydlPoint.getNemCode(),zncydlPoint.getName()));
|
|
resultList.add(PointUtil.createPointData(currentDate,ncydl.get(),zncydlPoint.getNemCode(),zncydlPoint.getName()));
|
|
|
|
|
|
|
|
+ double jym = yfdl.get() * 0.37;
|
|
|
|
+ double jys = yfdl.get() * 3.05;
|
|
|
|
+ double jyeyht = yfdl.get() * 0.8568;
|
|
|
|
+ double jyeyhl = yfdl.get() * 0.0059;
|
|
|
|
+ double rlyxs = 0;
|
|
|
|
+ double ylyxs = 0;
|
|
|
|
+ double nlyxs = 0;
|
|
|
|
+ double ysbklyl = 0;
|
|
|
|
+ double ydxkyxs = 0;
|
|
|
|
+ if (type.equals("-1")){
|
|
|
|
+ rlyxs = rfdl.get() / region.getJrwindCapacity();
|
|
|
|
+ ylyxs = yfdl.get() / region.getJrwindCapacity();
|
|
|
|
+ nlyxs = nfdl.get() / region.getJrwindCapacity();
|
|
|
|
+ }else if(type.equals("-2")){
|
|
|
|
+ rlyxs = rfdl.get() / region.getJrCapacity();
|
|
|
|
+ ylyxs = yfdl.get() / region.getJrCapacity();
|
|
|
|
+ nlyxs = nfdl.get() / region.getJrCapacity();
|
|
|
|
+ }else {
|
|
|
|
+ rlyxs = rfdl.get() / (region.getJrwindCapacity()+region.getJrCapacity());
|
|
|
|
+ ylyxs = yfdl.get() / (region.getJrwindCapacity()+region.getJrCapacity());
|
|
|
|
+ nlyxs = nfdl.get() / (region.getJrwindCapacity()+region.getJrCapacity());
|
|
|
|
+ }
|
|
|
|
+ Date monthFirst = DateUtils.getMonthFirst(currentDate);
|
|
|
|
+ double hoursDiff = DateUtils.hoursDiff2(currentDate, monthFirst);
|
|
|
|
+
|
|
|
|
+ String toDate1 = DateUtils.toDate1(currentDate);
|
|
|
|
+ Map<String, ProEconPowerstationInfoDay2> tempMap = new HashMap<>();
|
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay2> qw = new QueryWrapper<>();
|
|
|
|
+ qw.eq("record_date",toDate1);
|
|
|
|
+ if (type.equals("-1")){
|
|
|
|
+ qw.eq("foreign_key_id",region+"-1");
|
|
|
|
+ }else if(type.equals("-2")){
|
|
|
|
+ qw.eq("foreign_key_id",region+"-2");
|
|
|
|
+ }else {
|
|
|
|
+ qw.eq("foreign_key_id",region+"0");
|
|
|
|
+ }
|
|
|
|
+ List<ProEconPowerstationInfoDay2> powerstationInfoDay2s = proEconPowerstationInfoDay2Service.list(qw);
|
|
|
|
+ powerstationInfoDay2s.stream().forEach(info->{
|
|
|
|
+ tempMap.put(info.getForeignKeyId(),info);
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (hoursDiff!=0){
|
|
|
|
+ if (tempMap.containsKey(region.getId())){
|
|
|
|
+ ProEconPowerstationInfoDay2 powerstationInfoDay2 = tempMap.get(region.getId());
|
|
|
|
+ ysbklyl = (hoursDiff - powerstationInfoDay2.getYhjgztjxs() - powerstationInfoDay2.getYhjjxtjxs())/hoursDiff*100;
|
|
|
|
+ ydxkyxs = (hoursDiff - powerstationInfoDay2.getYhjgztjxs() )/hoursDiff*100;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ double yfnlyl = yllfdl.get() != 0 ?yfdl.get() / yllfdl.get() * 100:0;
|
|
|
|
+
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,jym,jymPoint.getNemCode(),jymPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,jys,jysPoint.getNemCode(),jysPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,jyeyht,jyeyhtPoint.getNemCode(),jyeyhtPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,jyeyhl,jyeyhlPoint.getNemCode(),jyeyhlPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,rlyxs,rlyxsPoint.getNemCode(),rlyxsPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,ylyxs,ylyxsPoint.getNemCode(),ylyxsPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,nlyxs,nlyxsPoint.getNemCode(),nlyxsPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,ysbklyl,sbklylPoint.getNemCode(),sbklylPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,ydxkyxs,dxkyxsPoint.getNemCode(),dxkyxsPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,yfnlyl,fnlylPoint.getNemCode(),fnlylPoint.getName()));
|
|
|
|
+
|
|
}
|
|
}
|
|
private void weightingCompany(Date currentDate, Map<String, Map<String, ProBasicPowerstationPoint>> companypointmap, Map<String, Map<String, ProBasicPowerstationPoint>> wppointmap, List<PointData> resultList, ProBasicCompany company, List<ProBasicPowerstation> wps,String type) {
|
|
private void weightingCompany(Date currentDate, Map<String, Map<String, ProBasicPowerstationPoint>> companypointmap, Map<String, Map<String, ProBasicPowerstationPoint>> wppointmap, List<PointData> resultList, ProBasicCompany company, List<ProBasicPowerstation> wps,String type) {
|
|
Map<String, ProBasicPowerstationPoint> powerstationPointMap = companypointmap.get(company.getId()+type);
|
|
Map<String, ProBasicPowerstationPoint> powerstationPointMap = companypointmap.get(company.getId()+type);
|
|
@@ -1678,6 +1749,17 @@ public class RegionCalService {
|
|
ProBasicPowerstationPoint zycydlPoint = powerstationPointMap.get(ContantXk.YCYDL);
|
|
ProBasicPowerstationPoint zycydlPoint = powerstationPointMap.get(ContantXk.YCYDL);
|
|
ProBasicPowerstationPoint zncydlPoint = powerstationPointMap.get(ContantXk.NCYDL);
|
|
ProBasicPowerstationPoint zncydlPoint = powerstationPointMap.get(ContantXk.NCYDL);
|
|
|
|
|
|
|
|
+ ProBasicPowerstationPoint jymPoint = powerstationPointMap.get(ContantXk.JYM);
|
|
|
|
+ ProBasicPowerstationPoint jysPoint = powerstationPointMap.get(ContantXk.JYS);
|
|
|
|
+ ProBasicPowerstationPoint jyeyhtPoint = powerstationPointMap.get(ContantXk.JYEYHT);
|
|
|
|
+ ProBasicPowerstationPoint jyeyhlPoint = powerstationPointMap.get(ContantXk.JYEYHL);
|
|
|
|
+ ProBasicPowerstationPoint rlyxsPoint = powerstationPointMap.get(ContantXk.RLYXS);
|
|
|
|
+ ProBasicPowerstationPoint ylyxsPoint = powerstationPointMap.get(ContantXk.YLYXS);
|
|
|
|
+ ProBasicPowerstationPoint nlyxsPoint = powerstationPointMap.get(ContantXk.NLYXS);
|
|
|
|
+ ProBasicPowerstationPoint sbklylPoint = powerstationPointMap.get(ContantXk.SBKLYL);
|
|
|
|
+ ProBasicPowerstationPoint dxkyxsPoint = powerstationPointMap.get(ContantXk.DXKYXS);
|
|
|
|
+ ProBasicPowerstationPoint fnlylPoint = powerstationPointMap.get(ContantXk.FNLYL);
|
|
|
|
+
|
|
|
|
|
|
AtomicReference<Double> rpjgl = new AtomicReference<>((double) 0);
|
|
AtomicReference<Double> rpjgl = new AtomicReference<>((double) 0);
|
|
AtomicReference<Double> rpjfs = new AtomicReference<>((double) 0);
|
|
AtomicReference<Double> rpjfs = new AtomicReference<>((double) 0);
|
|
@@ -2927,6 +3009,69 @@ public class RegionCalService {
|
|
resultList.add(PointUtil.createPointData(currentDate,ycydl.get(),zycydlPoint.getNemCode(),zycydlPoint.getName()));
|
|
resultList.add(PointUtil.createPointData(currentDate,ycydl.get(),zycydlPoint.getNemCode(),zycydlPoint.getName()));
|
|
resultList.add(PointUtil.createPointData(currentDate,ncydl.get(),zncydlPoint.getNemCode(),zncydlPoint.getName()));
|
|
resultList.add(PointUtil.createPointData(currentDate,ncydl.get(),zncydlPoint.getNemCode(),zncydlPoint.getName()));
|
|
|
|
|
|
|
|
+
|
|
|
|
+ double jym = yfdl.get() * 0.37;
|
|
|
|
+ double jys = yfdl.get() * 3.05;
|
|
|
|
+ double jyeyht = yfdl.get() * 0.8568;
|
|
|
|
+ double jyeyhl = yfdl.get() * 0.0059;
|
|
|
|
+ double rlyxs = 0;
|
|
|
|
+ double ylyxs = 0;
|
|
|
|
+ double nlyxs = 0;
|
|
|
|
+ double ysbklyl = 0;
|
|
|
|
+ double ydxkyxs = 0;
|
|
|
|
+ if (type.equals("-1")){
|
|
|
|
+ rlyxs = rfdl.get() / company.getJrwindCapacity();
|
|
|
|
+ ylyxs = yfdl.get() / company.getJrwindCapacity();
|
|
|
|
+ nlyxs = nfdl.get() / company.getJrwindCapacity();
|
|
|
|
+ }else if(type.equals("-2")){
|
|
|
|
+ rlyxs = rfdl.get() / company.getJrCapacity();
|
|
|
|
+ ylyxs = yfdl.get() / company.getJrCapacity();
|
|
|
|
+ nlyxs = nfdl.get() / company.getJrCapacity();
|
|
|
|
+ }else {
|
|
|
|
+ rlyxs = rfdl.get() / (company.getJrwindCapacity()+company.getJrCapacity());
|
|
|
|
+ ylyxs = yfdl.get() / (company.getJrwindCapacity()+company.getJrCapacity());
|
|
|
|
+ nlyxs = nfdl.get() / (company.getJrwindCapacity()+company.getJrCapacity());
|
|
|
|
+ }
|
|
|
|
+ Date monthFirst = DateUtils.getMonthFirst(currentDate);
|
|
|
|
+ double hoursDiff = DateUtils.hoursDiff2(currentDate, monthFirst);
|
|
|
|
+
|
|
|
|
+ String toDate1 = DateUtils.toDate1(currentDate);
|
|
|
|
+ Map<String, ProEconPowerstationInfoDay2> tempMap = new HashMap<>();
|
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay2> qw = new QueryWrapper<>();
|
|
|
|
+ qw.eq("record_date",toDate1);
|
|
|
|
+ if (type.equals("-1")){
|
|
|
|
+ qw.eq("foreign_key_id",company+"-1");
|
|
|
|
+ }else if(type.equals("-2")){
|
|
|
|
+ qw.eq("foreign_key_id",company+"-2");
|
|
|
|
+ }else {
|
|
|
|
+ qw.eq("foreign_key_id",company+"0");
|
|
|
|
+ }
|
|
|
|
+ List<ProEconPowerstationInfoDay2> powerstationInfoDay2s = proEconPowerstationInfoDay2Service.list(qw);
|
|
|
|
+ powerstationInfoDay2s.stream().forEach(info->{
|
|
|
|
+ tempMap.put(info.getForeignKeyId(),info);
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (hoursDiff!=0){
|
|
|
|
+ if (tempMap.containsKey(company.getId())){
|
|
|
|
+ ProEconPowerstationInfoDay2 powerstationInfoDay2 = tempMap.get(company.getId());
|
|
|
|
+ ysbklyl = (hoursDiff - powerstationInfoDay2.getYhjgztjxs() - powerstationInfoDay2.getYhjjxtjxs())/hoursDiff*100;
|
|
|
|
+ ydxkyxs = (hoursDiff - powerstationInfoDay2.getYhjgztjxs() )/hoursDiff*100;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ double yfnlyl = yllfdl.get() != 0 ?yfdl.get() / yllfdl.get() * 100:0;
|
|
|
|
+
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,jym,jymPoint.getNemCode(),jymPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,jys,jysPoint.getNemCode(),jysPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,jyeyht,jyeyhtPoint.getNemCode(),jyeyhtPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,jyeyhl,jyeyhlPoint.getNemCode(),jyeyhlPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,rlyxs,rlyxsPoint.getNemCode(),rlyxsPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,ylyxs,ylyxsPoint.getNemCode(),ylyxsPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,nlyxs,nlyxsPoint.getNemCode(),nlyxsPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,ysbklyl,sbklylPoint.getNemCode(),sbklylPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,ydxkyxs,dxkyxsPoint.getNemCode(),dxkyxsPoint.getName()));
|
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,yfnlyl,fnlylPoint.getNemCode(),fnlylPoint.getName()));
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|