|
@@ -5,8 +5,6 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.gyee.common.contant.ContantXk;
|
|
|
import com.gyee.common.model.PointData;
|
|
|
import com.gyee.common.util.DateUtils;
|
|
|
-import com.gyee.common.util.DoubleUtils;
|
|
|
-import com.gyee.common.util.SortUtils;
|
|
|
import com.gyee.runeconomy.dto.PowercurveVo;
|
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
@@ -822,9 +820,11 @@ public class MonitorService {
|
|
|
for (ProBasicCompany cp : cpls) {
|
|
|
sxzjrl += (cp.getJrwindCapacity() + cp.getJrCapacity()) / 10000;
|
|
|
}
|
|
|
- qt.put("ylyxs", StringUtils.round(((yfdl8 + rfdlsj) / 10000) / sxzjrl,2));
|
|
|
+// qt.put("ylyxs", StringUtils.round(((yfdl8 + rfdlsj) / 10000) / sxzjrl,2));
|
|
|
+ qt.put("ylyxs", StringUtils.round(((yfdl8) / 10000) / sxzjrl,2));
|
|
|
// qt.put("nlyxs", MathUtil.twoBit(nfdl / 1000) / ((rg.getJrwindCapacity() + rg.getJrCapacity()) / 1000));
|
|
|
- qt.put("nlyxs", StringUtils.round(((nfdl8 + rfdlsj) / 10000) / sxzjrl,2));
|
|
|
+// qt.put("nlyxs", StringUtils.round(((nfdl8 + rfdlsj) / 10000) / sxzjrl,2));
|
|
|
+ qt.put("nlyxs", StringUtils.round(((nfdl8) / 10000) / sxzjrl,2));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -847,8 +847,10 @@ public class MonitorService {
|
|
|
}
|
|
|
// qt.put("ylyxs", MathUtil.twoBit(yfdl / 1000) / ((wp.getJrwindCapacity() + wp.getJrCapacity()) / 1000));
|
|
|
// qt.put("nlyxs", MathUtil.twoBit(nfdl / 1000) / ((wp.getJrwindCapacity() + wp.getJrCapacity()) / 1000));
|
|
|
- qt.put("ylyxs", MathUtil.twoBit((yfdl8 + rfdlsj) / 10000) / ((wp.getJrwindCapacity() + wp.getJrCapacity()) / 10000));
|
|
|
- qt.put("nlyxs", MathUtil.twoBit((nfdl8 + rfdlsj)/ 10000) / ((wp.getJrwindCapacity() + wp.getJrCapacity()) / 10000));
|
|
|
+// qt.put("ylyxs", MathUtil.twoBit((yfdl8 + rfdlsj) / 10000) / ((wp.getJrwindCapacity() + wp.getJrCapacity()) / 10000));
|
|
|
+// qt.put("nlyxs", MathUtil.twoBit((nfdl8 + rfdlsj)/ 10000) / ((wp.getJrwindCapacity() + wp.getJrCapacity()) / 10000));
|
|
|
+ qt.put("ylyxs", MathUtil.twoBit((yfdl8) / 10000) / ((wp.getJrwindCapacity() + wp.getJrCapacity()) / 10000));
|
|
|
+ qt.put("nlyxs", MathUtil.twoBit((nfdl8)/ 10000) / ((wp.getJrwindCapacity() + wp.getJrCapacity()) / 10000));
|
|
|
}
|
|
|
}
|
|
|
fnlyl= Math.random() * 10 + 90;
|
|
@@ -1446,172 +1448,4 @@ public class MonitorService {
|
|
|
|
|
|
return vos;
|
|
|
}
|
|
|
-
|
|
|
- //利用小时
|
|
|
- public List<PowercurveVo> hoursvalue(String wpId, String timetype) throws Exception {
|
|
|
-
|
|
|
-
|
|
|
- Calendar twoyear = Calendar.getInstance();
|
|
|
- twoyear.add(Calendar.YEAR, -2);
|
|
|
- Date twoDate = twoyear.getTime();
|
|
|
-// Date beginDate = DateUtils.truncate(beginDate1);
|
|
|
-
|
|
|
- Calendar oneyear = Calendar.getInstance();
|
|
|
- oneyear.add(Calendar.YEAR, -1);
|
|
|
- Date oneDate = oneyear.getTime();
|
|
|
-
|
|
|
- Calendar currentyear = Calendar.getInstance();
|
|
|
- currentyear.add(Calendar.YEAR, 0);
|
|
|
- Date currentDate = currentyear.getTime();
|
|
|
-
|
|
|
-
|
|
|
- double zjrl = 0.0;
|
|
|
-
|
|
|
- Map<String, Object> zjrlmap = new HashMap<>();
|
|
|
- List<PowercurveVo> vos = new ArrayList<PowercurveVo>();
|
|
|
- if (wpId.endsWith(QS) || wpId.endsWith(FD) || wpId.endsWith(GF) || CacheContext.wpmapls.containsKey(wpId)) {
|
|
|
-
|
|
|
- List<ProBasicPowerstation> wplist = new ArrayList<>();
|
|
|
- if (CacheContext.wpmapls.containsKey(wpId)) {
|
|
|
- wplist = CacheContext.wpmapls.get(wpId);
|
|
|
- }
|
|
|
- HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();
|
|
|
- List<ProBasicPowerstation> wplsToken = tokenService.getWpls(request);
|
|
|
- for (ProBasicPowerstation wp : wplsToken) {
|
|
|
- if (wpId.contains(FD)) {
|
|
|
- if (wp.getId().endsWith("FDC_STA")) {
|
|
|
- wplist.add(wp);
|
|
|
- }
|
|
|
- } else if (wpId.contains(GF)) {
|
|
|
- if (wp.getId().endsWith("GDC_STA")) {
|
|
|
- wplist.add(wp);
|
|
|
- }
|
|
|
- } else if (wpId.contains(QS)) {
|
|
|
- wplist.add(wp);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- if (wpId.contains(QS) || wpId.contains(FD) || wpId.contains(GF)) {
|
|
|
- for (ProBasicRegion rg : CacheContext.rgls) {
|
|
|
- if (wpId.contains(rg.getId())) {
|
|
|
- zjrl += rg.getJrCapacity() + rg.getJrwindCapacity();
|
|
|
- }
|
|
|
- }
|
|
|
- for (ProBasicCompany cp : CacheContext.cpls) {
|
|
|
- if (wpId.contains(cp.getId())) {
|
|
|
- zjrl += cp.getJrCapacity() + cp.getJrwindCapacity();
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- for (ProBasicPowerstation wp : wplsToken) {
|
|
|
- if (wpId.equals(wp.getId())) {
|
|
|
- zjrl += wp.getJrCapacity() + wp.getJrwindCapacity();
|
|
|
- }
|
|
|
- }
|
|
|
- for (ProBasicProject pj : CacheContext.pjls) {
|
|
|
- if (wpId.equals(pj.getId())) {
|
|
|
- zjrl += pj.getCapacity();
|
|
|
- }
|
|
|
- }
|
|
|
- for (ProBasicLine ln : CacheContext.lnls) {
|
|
|
- if (wpId.equals(ln.getId())) {
|
|
|
- zjrl += ln.getCapacity();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- zjrlmap.put("zjrl", zjrl);
|
|
|
-
|
|
|
-
|
|
|
- Map<String, ProBasicPowerstationPoint> wtpointmap = null;
|
|
|
- Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap = CacheContext.wppointmap;
|
|
|
- Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap1 = CacheContext.companypointmap;
|
|
|
- Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap2 = CacheContext.regionpointmap;
|
|
|
- Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap3 = CacheContext.grouppointmap;
|
|
|
-
|
|
|
- if (pointwpmap.containsKey(wpId)) {
|
|
|
- wtpointmap = pointwpmap.get(wpId);
|
|
|
- } else if (pointwpmap1.containsKey(wpId)) {
|
|
|
- wtpointmap = pointwpmap1.get(wpId);
|
|
|
- } else if (pointwpmap2.containsKey(wpId)) {
|
|
|
- wtpointmap = pointwpmap2.get(wpId);
|
|
|
- } else if (pointwpmap3.containsKey(wpId)) {
|
|
|
- wtpointmap = pointwpmap3.get(wpId);
|
|
|
- }
|
|
|
-
|
|
|
- List<String> year = new ArrayList<>();
|
|
|
- year.add(wtpointmap.get(ContantXk.NFDL).getNemCode());
|
|
|
-
|
|
|
- String month = wtpointmap.get(ContantXk.YFDL).getNemCode();
|
|
|
-
|
|
|
- if (timetype.contains("year")) {
|
|
|
-
|
|
|
- List<PointData> currentls = edosUtil.getHistMatrix(year, currentDate.getTime() / 1000);
|
|
|
- List<PointData> onels = edosUtil.getHistMatrix(year, oneDate.getTime() / 1000);
|
|
|
- List<PointData> twols = edosUtil.getHistMatrix(year, twoDate.getTime() / 1000);
|
|
|
-
|
|
|
- List<PointData> sj = new ArrayList<>();
|
|
|
- if (!currentls.isEmpty() && !onels.isEmpty() && !twols.isEmpty()) {
|
|
|
- sj.add(currentls.get(0));
|
|
|
- sj.add(onels.get(0));
|
|
|
- sj.add(twols.get(0));
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- double temp0 = 0;
|
|
|
- double temp1 = 0;
|
|
|
- double temp2 = 0;
|
|
|
-
|
|
|
- for (int i = 0; i < 3; i++) {
|
|
|
- PowercurveVo vo2 = new PowercurveVo();
|
|
|
- vo2.setLlgl(0.0); //理论功率
|
|
|
- vo2.setRfdl(0.0); //日发电量
|
|
|
- vo2.setYfdl(0.0); //月发电量
|
|
|
- vo2.setNfdl(0.0); //年发电量
|
|
|
- vo2.setBzgl(0.0); //保证功率
|
|
|
- vo2.setSjgl(0.0); //实际功率
|
|
|
- vo2.setSsfs(0.0); //实时风速
|
|
|
- vo2.setGzzs(0.0); //光照指数
|
|
|
- vo2.setFnlyl(0.0); //风能利用率
|
|
|
- vo2.setHours(i); //时间戳
|
|
|
- vo2.setName(wpId);
|
|
|
- vos.add(vo2);
|
|
|
- }
|
|
|
-
|
|
|
- if (!sj.isEmpty() && sj.size() == 3) {
|
|
|
- temp0 = sj.get(0).getPointValueInDouble();
|
|
|
- temp1 = sj.get(1).getPointValueInDouble();
|
|
|
- temp2 = sj.get(2).getPointValueInDouble();
|
|
|
- vos.get(0).setNfdl(StringUtils.round((temp0 / 1000) / (zjrl / 1000), 2));
|
|
|
- vos.get(1).setNfdl(StringUtils.round((temp1 / 1000) / (zjrl / 1000), 2));
|
|
|
- vos.get(2).setNfdl(StringUtils.round((temp2 / 1000) / (zjrl / 1000), 2));
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- if (timetype.contains("month")) {
|
|
|
-
|
|
|
- int month1 = DateUtils.getMonth(new Date());//4
|
|
|
- DateUtils.getMonthLast(new Date());//4.30
|
|
|
- Date date = DateUtils.getCurrentDate();
|
|
|
-
|
|
|
- for (int i = month1; i > 0; i--) {
|
|
|
-
|
|
|
- PointData data = edosUtil.getSectionData(month, DateUtils.getEndOfDay(DateUtils.getMonthLast(date)).getTime());
|
|
|
- PowercurveVo vo1 = new PowercurveVo();
|
|
|
- vo1.setYfdl(DoubleUtils.keepPrecision((data.getPointValueInDouble() / 1000) / (zjrl / 1000), 2));
|
|
|
- vo1.setHours(i);
|
|
|
- vos.add(vo1);
|
|
|
- date = DateUtils.addMonths(date, -1);
|
|
|
- }
|
|
|
- SortUtils.sort(vos, "hours", SortUtils.ASC);
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
- return vos;
|
|
|
- }
|
|
|
}
|