123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167 |
- package com.gyee.generation.service;
- import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
- import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
- import com.gyee.common.contant.ContantXk;
- import com.gyee.common.model.PointData;
- import com.gyee.generation.init.CacheContext;
- import com.gyee.generation.model.auto.*;
- import com.gyee.generation.model.vo.StatData;
- import com.gyee.generation.model.vo.StatusDetailValue;
- import com.gyee.generation.model.vo.StatusValue;
- import com.gyee.generation.service.auto.IProEconBrownoutsEvent2Service;
- import com.gyee.generation.service.auto.IProEconBrownoutsEventService;
- import com.gyee.generation.service.auto.IProEconMainBrownouts2Service;
- import com.gyee.generation.service.auto.IProEconMainBrownoutsService;
- import com.gyee.generation.util.DateUtils;
- import com.gyee.generation.util.StringUtils;
- import com.gyee.generation.util.realtimesource.IEdosUtil;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.stereotype.Service;
- import javax.annotation.Resource;
- import java.util.*;
- import java.util.stream.Collectors;
- @Service
- public class LimitEventnewService {
- @Resource
- private IProEconBrownoutsEventService proEconBrownoutsEventService;
- @Resource
- private IProEconMainBrownoutsService proEconMainBrownoutsService;
- @Resource
- private IProEconBrownoutsEvent2Service proEconBrownoutsEvent2Service;
- @Resource
- private IProEconMainBrownouts2Service proEconMainBrownouts2Service;
- @Resource
- private IEdosUtil edosUtil;
- @Value("${frequency.powerrationing}")
- private Integer frequency;
- public static Logger logger = LoggerFactory.getLogger(ShutdownnewService.class);
- public void execBrownouts(Date recordDate) throws Exception {
- Map<String, ProEconBrownoutsEvent> oldBrownoutsStatusMap = new HashMap<>();
- Map<String, ProEconBrownoutsEvent2> oldBrownoutsStatus2Map = new HashMap<>();
- Map<String, ProEconMainBrownouts> oldMainBrownoutsMap = new HashMap<>();
- Map<String, ProEconMainBrownouts2> oldMainBrownouts2Map = new HashMap<>();
- List<String> wpStatusIdLs = new ArrayList<>();
- List<String> wtStatusIdLs = new ArrayList<>();
- List<String> wpSpeedIdLs = new ArrayList<>();
- List<String> wtSpeedIdLs = new ArrayList<>();
- List<String> wpPowerIdLs = new ArrayList<>();
- List<String> wtPowerIdLs = new ArrayList<>();
- Map<String, PointData> wpStatusMap = new HashMap<>();
- Map<String, PointData> wtStatusMap = new HashMap<>();
- Map<String, PointData> wpSpeedMap = new HashMap<>();
- Map<String, PointData> wtSpeedMap = new HashMap<>();
- Map<String, PointData> wpPowerMap = new HashMap<>();
- Map<String, PointData> wtPowerMap = new HashMap<>();
- List<ProBasicPowerstation> wpls=new ArrayList<>();
- for (ProBasicPowerstation wp : CacheContext.wpls) {
- if(wp.getId().contains("GDC"))
- {
- continue;
- }
- wpls.add(wp);
- }
- for (ProBasicPowerstation wp :wpls) {
- //初始化将所有风场编号作为key,value全部赋值为null
- oldMainBrownoutsMap.put(wp.getId(), null);
- oldMainBrownouts2Map.put(wp.getId(), null);
- Map<String, ProBasicPowerstationPoint> wppointmap = CacheContext.wppointmap.get(wp.getId());
- //取实时状态数据 赋值给status
- if (wppointmap.containsKey(ContantXk.CZZT)) {
- ProBasicPowerstationPoint mxztPoint = wppointmap.get(ContantXk.CZZT);
- wpStatusIdLs.add(mxztPoint.getNemCode());
- }
- //取实时风速数据
- if (wppointmap.containsKey(ContantXk.SSPJFS)) {
- ProBasicPowerstationPoint mxztPoint = wppointmap.get(ContantXk.SSPJFS);
- wpSpeedIdLs.add(mxztPoint.getNemCode());
- }
- //取实时功率数据
- if (wppointmap.containsKey(ContantXk.SSZGL)) {
- ProBasicPowerstationPoint mxztPoint = wppointmap.get(ContantXk.SSZGL);
- wpPowerIdLs.add(mxztPoint.getNemCode());
- }
- }
- List<PointData> wpStatusLs = edosUtil.getHistMatrix(wpStatusIdLs,recordDate.getTime()/1000);
- List<PointData> wpSpeedLs = edosUtil.getHistMatrix(wpSpeedIdLs,recordDate.getTime()/1000);
- List<PointData> wpPowerLs = edosUtil.getHistMatrix(wpPowerIdLs,recordDate.getTime()/1000);
- if (wpStatusLs.size() == wpls.size() && wpSpeedLs.size() ==wpls.size() && wpPowerLs.size() == wpls.size()) {
- for (int i = 0; i < wpls.size(); i++) {
- ProBasicPowerstation wp = wpls.get(i);
- wpStatusMap.put(wp.getId(), wpStatusLs.get(i));
- wpSpeedMap.put(wp.getId(), wpSpeedLs.get(i));
- wpPowerMap.put(wp.getId(), wpPowerLs.get(i));
- }
- }
- List<ProBasicEquipment> wtls=new ArrayList<>();
- for (ProBasicEquipment wt : CacheContext.wtls) {
- if(wt.getWindpowerstationId().contains("GDC"))
- {
- continue;
- }
- wtls.add(wt);
- }
- for (ProBasicEquipment wt :wtls) {
- //初始化将所有风机编号作为key,value全部赋值为null
- oldBrownoutsStatusMap.put(wt.getId(), null);
- oldBrownoutsStatus2Map.put(wt.getId(), null);
- Map<String, ProBasicEquipmentPoint> windturbinetestingpointnewMap = CacheContext.wtpAimap.get(wt.getId());
- //取实时状态数据 赋值给status
- if (windturbinetestingpointnewMap.containsKey(ContantXk.MXZT)) {
- ProBasicEquipmentPoint mxztPoint = windturbinetestingpointnewMap.get(ContantXk.MXZT);
- wtStatusIdLs.add(mxztPoint.getNemCode());
- }
- //取实时风速数据
- if (windturbinetestingpointnewMap.containsKey(ContantXk.CJ_SSFS)) {
- ProBasicEquipmentPoint mxztPoint = windturbinetestingpointnewMap.get(ContantXk.CJ_SSFS);
- wtSpeedIdLs.add(mxztPoint.getNemCode());
- }
- //取实时功率数据
- if (windturbinetestingpointnewMap.containsKey(ContantXk.CJ_SSGL)) {
- ProBasicEquipmentPoint mxztPoint = windturbinetestingpointnewMap.get(ContantXk.CJ_SSGL);
- wtPowerIdLs.add(mxztPoint.getNemCode());
- }
- }
- List<PointData> wtStatusLs = edosUtil.getRealData(wtStatusIdLs);
- List<PointData> wtSpeedLs = edosUtil.getRealData(wtSpeedIdLs);
- List<PointData> wtPowerLs = edosUtil.getRealData(wtPowerIdLs);
- if (wtStatusLs.size() == wtls.size() && wtSpeedLs.size() == wtls.size() && wtPowerLs.size() == wtls.size()) {
- for (int i = 0; i < wtls.size(); i++) {
- ProBasicEquipment wt = wtls.get(i);
- wtStatusMap.put(wt.getId(), wtStatusLs.get(i));
- wtSpeedMap.put(wt.getId(), wtSpeedLs.get(i));
- wtPowerMap.put(wt.getId(), wtPowerLs.get(i));
- }
- }
- //******************************************************************************************************/
- //读取数据库存在的恢复时间为NULL的数据,并通过风机编号把数据遍历到对应的map
- QueryWrapper<ProEconMainBrownouts> queryWrapper = new QueryWrapper<>();
- queryWrapper.isNull("start_Time");
- queryWrapper.orderByDesc("stop_Time");
- List<ProEconMainBrownouts> oldStatusQuery = proEconMainBrownoutsService.list(queryWrapper).stream().collect(Collectors.toList());
- for (ProEconMainBrownouts oldMainBrownouts : oldStatusQuery) {
- if (oldMainBrownoutsMap.containsKey(oldMainBrownouts.getWindpowerstationId())) {
- oldMainBrownoutsMap.put(oldMainBrownouts.getWindpowerstationId(), oldMainBrownouts);
- }
- }
- QueryWrapper<ProEconMainBrownouts2> queryWrapper2 = new QueryWrapper<>();
- queryWrapper2.isNull("start_Time");
- queryWrapper2.orderByDesc("stop_Time");
- List<ProEconMainBrownouts2> oldStatus2Query = proEconMainBrownouts2Service.list(queryWrapper2).stream().collect(Collectors.toList());
- for (ProEconMainBrownouts2 oldMainBrownouts2 : oldStatus2Query) {
- if (oldMainBrownouts2Map.containsKey(oldMainBrownouts2.getWindpowerstationId())) {
- oldMainBrownouts2Map.put(oldMainBrownouts2.getWindpowerstationId(), oldMainBrownouts2);
- }
- }
- QueryWrapper<ProEconBrownoutsEvent> queryWrapper3 = new QueryWrapper<>();
- queryWrapper3.isNull("start_Time");
- queryWrapper3.orderByDesc("stop_Time");
- List<ProEconBrownoutsEvent> oldStatus3Query = proEconBrownoutsEventService.list(queryWrapper3).stream().collect(Collectors.toList());
- for (ProEconBrownoutsEvent oldBrownouts : oldStatus3Query) {
- if (oldBrownoutsStatusMap.containsKey(oldBrownouts.getWindturbineId())) {
- oldBrownoutsStatusMap.put(oldBrownouts.getWindturbineId(), oldBrownouts);
- }
- }
- QueryWrapper<ProEconBrownoutsEvent2> queryWrapper4 = new QueryWrapper<>();
- queryWrapper4.isNull("start_Time");
- queryWrapper3.orderByDesc("stop_Time");
- List<ProEconBrownoutsEvent2> oldStatus4Query = proEconBrownoutsEvent2Service.list(queryWrapper4).stream().collect(Collectors.toList());
- for (ProEconBrownoutsEvent2 oldBrownouts2 : oldStatus4Query) {
- if (oldBrownoutsStatus2Map.containsKey(oldBrownouts2.getWindturbineId())) {
- oldBrownoutsStatus2Map.put(oldBrownouts2.getWindturbineId(), oldBrownouts2);
- }
- }
- //*************************主表数据计算*****************************************************************************/
- List<ProEconMainBrownouts2> updateMainBrownouts2ls = new ArrayList<>();
- List<ProEconMainBrownouts> updateMainBrownoutsls = new ArrayList<>();
- List<ProEconMainBrownouts2> insertMainBrownouts2ls = new ArrayList<>();
- List<ProEconMainBrownouts> insertMainBrownoutsls = new ArrayList<>();
- //遍历PG数据库中存在的记录,恢复时间为空的集合
- for (String wpId : oldMainBrownoutsMap.keySet()) {
- ProEconMainBrownouts mainBrownouts = null;
- ProEconMainBrownouts2 mainBrownouts2 = null;
- if (oldMainBrownoutsMap.containsKey(wpId)) {
- mainBrownouts = oldMainBrownoutsMap.get(wpId);
- }
- if (oldMainBrownouts2Map.containsKey(wpId)) {
- mainBrownouts2 = oldMainBrownouts2Map.get(wpId);
- }
- if (wpStatusMap.containsKey(wpId)) {
- PointData wpPoint = wpStatusMap.get(wpId);
- //获取当前时间
- Date currentTime = recordDate;
- if (wpPoint.getPointValueInDouble() == StatusValue.XD.getCode() ) {
- if (StringUtils.empty(mainBrownouts)) {
- mainBrownouts=new ProEconMainBrownouts();
- intialMainBrownouts(insertMainBrownoutsls, wpId, wpStatusMap, wpSpeedMap, wpPowerMap, currentTime, mainBrownouts);
- }
- if (StringUtils.empty(mainBrownouts2)) {
- mainBrownouts2=new ProEconMainBrownouts2();
- intialMainBrownouts2(insertMainBrownouts2ls, wpId, wpStatusMap, wpSpeedMap, wpPowerMap, currentTime, mainBrownouts2);
- }
- }else {
- if (StringUtils.notEmp(mainBrownouts) ) {
- finishMainBrownouts(updateMainBrownoutsls, wpId, mainBrownouts, currentTime);
- }
- if (StringUtils.notEmp(mainBrownouts2)) {
- finishMainBrownouts2(updateMainBrownouts2ls, wpId, wpStatusMap, wpSpeedMap, wpPowerMap, mainBrownouts2, currentTime);
- }
- }
- }
- List<ProEconMainBrownouts> templs = new ArrayList<>();
- for (ProEconMainBrownouts vo : insertMainBrownoutsls) {
- templs.add(vo);
- if (templs.size() == 100) {
- proEconMainBrownoutsService.saveBatch(templs);
- templs = new ArrayList<>();
- }
- }
- if (!templs.isEmpty()) {
- proEconMainBrownoutsService.saveBatch(templs);
- }
- List<ProEconMainBrownouts2> templs2 = new ArrayList<>();
- for (ProEconMainBrownouts2 vo : insertMainBrownouts2ls) {
- templs2.add(vo);
- if (templs2.size() == 100) {
- proEconMainBrownouts2Service.saveBatch(templs2);
- templs2 = new ArrayList<>();
- }
- }
- if (!templs2.isEmpty()) {
- proEconMainBrownouts2Service.saveBatch(templs2);
- }
- for (ProEconMainBrownouts vo : updateMainBrownoutsls) {
- UpdateWrapper<ProEconMainBrownouts> updateWrapper = new UpdateWrapper<>();
- // updateWrapper.set("start_time", vo.getStartTime());
- // updateWrapper.set("loss_power", vo.getLossPower());
- // updateWrapper.set("stop_hours", vo.getStopHours());
- // proEconMainBrownoutsService.update(vo, updateWrapper);
- proEconMainBrownoutsService.updateMainBrownouts(vo.getStartTime(),vo.getLossPower(),vo.getStopHours(),vo.getId());
- }
- for (ProEconMainBrownouts2 vo : updateMainBrownouts2ls) {
- UpdateWrapper<ProEconMainBrownouts2> updateWrapper = new UpdateWrapper<>();
- // updateWrapper.set("start_time", vo.getStartTime());
- // updateWrapper.set("loss_power", vo.getLossPower());
- // updateWrapper.set("stop_hours", vo.getStopHours());
- // proEconMainBrownouts2Service.update(vo, updateWrapper);
- proEconMainBrownouts2Service.updateMainBrownouts2(vo.getStartTime(),vo.getLossPower(),vo.getStopHours(),vo.getId());
- }
- }
- //*************************主表数据计算*****************************************************************************/
- //*************************子表数据计算*****************************************************************************/
- extractedBrownouts(oldBrownoutsStatusMap, wtStatusMap, wtSpeedMap, wtPowerMap, insertMainBrownoutsls);
- extractedBrownouts(oldBrownoutsStatusMap, wtStatusMap, wtSpeedMap, wtPowerMap, updateMainBrownoutsls);
- extractedBrownouts2(oldBrownoutsStatus2Map, wtStatusMap, wtSpeedMap, wtPowerMap, insertMainBrownouts2ls);
- extractedBrownouts2(oldBrownoutsStatus2Map, wtStatusMap, wtSpeedMap, wtPowerMap, updateMainBrownouts2ls);
- //*************************子表数据计算*****************************************************************************/
- //******************************************************************************************************/
- }
- private void extractedBrownouts(Map<String, ProEconBrownoutsEvent> oldBrownoutsStatusMap, Map<String, PointData> wtStatusMap, Map<String, PointData> wtSpeedMap, Map<String, PointData> wtPowerMap, List<ProEconMainBrownouts> mainBrownoutsls) throws Exception {
- //遍历PG数据库中存在的记录,恢复时间为空的集合
- for (ProEconMainBrownouts mb : mainBrownoutsls) {
- List<ProBasicEquipment> wtls = CacheContext.wpwtmap.get(mb.getWindpowerstationId());
- List<ProEconBrownoutsEvent> updateBrownoutsEventls = new ArrayList<>();
- List<ProEconBrownoutsEvent> insertBrownoutsEventls = new ArrayList<>();
- for (ProBasicEquipment wt : wtls) {
- extractedProBasicEquipment(mb, oldBrownoutsStatusMap, wtStatusMap, wtSpeedMap, wtPowerMap, updateBrownoutsEventls, insertBrownoutsEventls, wt);
- }
- List<ProEconBrownoutsEvent> templs = new ArrayList<>();
- for (ProEconBrownoutsEvent vo : insertBrownoutsEventls) {
- templs.add(vo);
- if (templs.size() == 100) {
- proEconBrownoutsEventService.saveBatch(templs);
- templs = new ArrayList<>();
- }
- }
- if (!templs.isEmpty()) {
- proEconBrownoutsEventService.saveBatch(templs);
- }
- for (ProEconBrownoutsEvent vo : updateBrownoutsEventls) {
- UpdateWrapper<ProEconBrownoutsEvent> updateWrapper = new UpdateWrapper<>();
- // updateWrapper.set("start_time", vo.getStartTime());
- // updateWrapper.set("loss_power", vo.getLossPower());
- // updateWrapper.set("stop_hours", vo.getStopHours());
- // proEconBrownoutsEventService.update(vo, updateWrapper);
- proEconBrownoutsEventService.updateBrownouts(vo.getStartTime(),vo.getLossPower(),vo.getStopHours(),vo.getId());
- }
- }
- }
- private void extractedBrownouts2( Map<String, ProEconBrownoutsEvent2> oldBrownoutsStatus2Map, Map<String, PointData> wtStatusMap, Map<String, PointData> wtSpeedMap, Map<String, PointData> wtPowerMap, List<ProEconMainBrownouts2> mainBrownouts2ls) throws Exception {
- //遍历PG数据库中存在的记录,恢复时间为空的集合
- for (ProEconMainBrownouts2 mb : mainBrownouts2ls) {
- List<ProBasicEquipment> wtls = CacheContext.wpwtmap.get(mb.getWindpowerstationId());
- List<ProEconBrownoutsEvent2> updateBrownoutsEvent2ls = new ArrayList<>();
- List<ProEconBrownoutsEvent> updateBrownoutsEventls = new ArrayList<>();
- List<ProEconBrownoutsEvent2> insertBrownoutsEvent2ls = new ArrayList<>();
- List<ProEconBrownoutsEvent> insertBrownoutsEventls = new ArrayList<>();
- for (ProBasicEquipment wt : wtls) {
- extractedProBasicEquipment(mb, oldBrownoutsStatus2Map, wtStatusMap, wtSpeedMap, wtPowerMap, updateBrownoutsEvent2ls, insertBrownoutsEvent2ls, wt);
- }
- List<ProEconBrownoutsEvent2> templs2 = new ArrayList<>();
- for (ProEconBrownoutsEvent2 vo : insertBrownoutsEvent2ls) {
- templs2.add(vo);
- if (templs2.size() == 100) {
- proEconBrownoutsEvent2Service.saveBatch(templs2);
- templs2 = new ArrayList<>();
- }
- }
- if (!templs2.isEmpty()) {
- proEconBrownoutsEvent2Service.saveBatch(templs2);
- }
- for (ProEconBrownoutsEvent2 vo : updateBrownoutsEvent2ls) {
- UpdateWrapper<ProEconBrownoutsEvent2> updateWrapper = new UpdateWrapper<>();
- // updateWrapper.set("start_time", vo.getStartTime());
- // updateWrapper.set("loss_power", vo.getLossPower());
- // updateWrapper.set("stop_hours", vo.getStopHours());
- // proEconBrownoutsEvent2Service.update(vo, updateWrapper);
- proEconBrownoutsEvent2Service.updateBrownouts2(vo.getStartTime(),vo.getLossPower(),vo.getStopHours(),vo.getId());
- }
- }
- }
- private void extractedProBasicEquipment(ProEconMainBrownouts mb, Map<String, ProEconBrownoutsEvent> oldBrownoutsStatusMap, Map<String, PointData> wtStatusMap, Map<String, PointData> wtSpeedMap, Map<String, PointData> wtPowerMap, List<ProEconBrownoutsEvent> updateBrownoutsEventls, List<ProEconBrownoutsEvent> insertBrownoutsEventls, ProBasicEquipment wt) throws Exception {
- String wtId = wt.getId();
- ProEconBrownoutsEvent brownouts = null;
- if (oldBrownoutsStatusMap.containsKey(wtId)) {
- brownouts = oldBrownoutsStatusMap.get(wtId);
- }
- if (wtStatusMap.containsKey(wtId)) {
- PointData wtPoint = wtStatusMap.get(wtId);
- //获取当前时间
- Date currentTime = new Date(wtPoint.getPointTime());
- if (wtPoint.getPointValueInDouble() == StatusDetailValue.XDJCL.getCode() || wtPoint.getPointValueInDouble() == StatusDetailValue.XDTJ.getCode()) {
- if (StringUtils.empty(brownouts)) {
- brownouts=new ProEconBrownoutsEvent();
- intialBrownoutsEvent(mb, insertBrownoutsEventls, wtId, wtStatusMap, wtSpeedMap, wtPowerMap, currentTime, brownouts);
- }
- } else {
- if (StringUtils.notEmp(brownouts)) {
- finishBrownoutsEvent(updateBrownoutsEventls, wtId, brownouts, currentTime);
- }
- }
- }
- }
- private void extractedProBasicEquipment(ProEconMainBrownouts2 mb, Map<String, ProEconBrownoutsEvent2> oldBrownoutsStatus2Map, Map<String, PointData> wtStatusMap, Map<String, PointData> wtSpeedMap, Map<String, PointData> wtPowerMap, List<ProEconBrownoutsEvent2> updateBrownoutsEvent2ls, List<ProEconBrownoutsEvent2> insertBrownoutsEvent2ls, ProBasicEquipment wt) throws Exception {
- String wtId = wt.getId();
- ProEconBrownoutsEvent2 brownouts2 = null;
- if (oldBrownoutsStatus2Map.containsKey(wtId)) {
- brownouts2 = oldBrownoutsStatus2Map.get(wtId);
- }
- if (wtStatusMap.containsKey(wtId)) {
- PointData wtPoint = wtStatusMap.get(wtId);
- //获取当前时间
- Date currentTime = new Date(wtPoint.getPointTime());
- if (wtPoint.getPointValueInDouble() == StatusDetailValue.XDJCL.getCode() || wtPoint.getPointValueInDouble() == StatusDetailValue.XDTJ.getCode()) {
- if (StringUtils.empty(brownouts2)) {
- brownouts2=new ProEconBrownoutsEvent2();
- intialBrownoutsEvent2(mb, insertBrownoutsEvent2ls, wtId, wtStatusMap, wtSpeedMap, wtPowerMap, currentTime, brownouts2);
- }
- } else {
- if (StringUtils.notEmp(brownouts2)) {
- finishBrownoutsEvent2(mb, updateBrownoutsEvent2ls, wtId, wtStatusMap, wtSpeedMap, wtPowerMap, brownouts2, currentTime);
- }
- }
- }
- }
- private void intialBrownoutsEvent(ProEconMainBrownouts mb, List<ProEconBrownoutsEvent> insertBrownoutsEventls, String wtId, Map<String, PointData> wtStatusMap, Map<String, PointData> wtSpeedMap, Map<String, PointData> wtPowerMap, Date currentTime, ProEconBrownoutsEvent brownouts) throws Exception {
- brownouts.setMainId(mb.getId());
- brownouts.setId(StringUtils.getUUID());
- brownouts.setStopTime(currentTime);
- brownouts.setStartTime(null);
- if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.XDTJ.getCode()) {
- brownouts.setStopTypeId(StatusDetailValue.XDTJ.getName());
- }
- if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.XDJCL.getCode()) {
- brownouts.setStopTypeId(StatusDetailValue.XDJCL.getName());
- }
- if (wtSpeedMap.containsKey(wtId)) {
- brownouts.setWindSpeed(StringUtils.round(wtSpeedMap.get(wtId).getPointValueInDouble(), 2));
- }
- if (wtPowerMap.containsKey(wtId)) {
- brownouts.setLimitLoad(StringUtils.round(wtPowerMap.get(wtId).getPointValueInDouble(), 2));
- }
- Map<String, ProBasicEquipmentPoint> wtpointmap = CacheContext.wtpAimap.get(wtId);
- long pried = DateUtils.secondsDiff(DateUtils.addMinutes(currentTime, -5), currentTime);
- List<PointData> hsls = edosUtil.getHistStat(wtpointmap.get(ContantXk.SSZGL), DateUtils.addMinutes(currentTime, -5).getTime() / 1000, currentTime.getTime() / 1000, 1L, pried, StatData.MAX.getValue());
- if (StringUtils.notEmp(hsls) && hsls.size() > 0) {
- brownouts.setThisLoad(hsls.get(0).getPointValueInDouble());
- }
- brownouts.setWindpowerstationId(wtId);
- brownouts.setLossPower(0.0);
- insertBrownoutsEventls.add(brownouts);
- }
- private void intialBrownoutsEvent2(ProEconMainBrownouts2 mb, List<ProEconBrownoutsEvent2> insertBrownoutsEvent2ls, String wtId, Map<String, PointData> wtStatusMap, Map<String, PointData> wtSpeedMap, Map<String, PointData> wtPowerMap, Date currentTime, ProEconBrownoutsEvent2 brownouts) throws Exception {
- brownouts.setMainId(mb.getId());
- brownouts.setId(StringUtils.getUUID());
- brownouts.setStopTime(currentTime);
- brownouts.setStartTime(null);
- if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.XDTJ.getCode()) {
- brownouts.setStopTypeId(StatusDetailValue.XDTJ.getName());
- }
- if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.XDJCL.getCode()) {
- brownouts.setStopTypeId(StatusDetailValue.XDJCL.getName());
- }
- if (wtSpeedMap.containsKey(wtId)) {
- brownouts.setWindSpeed(StringUtils.round(wtSpeedMap.get(wtId).getPointValueInDouble(), 2));
- }
- if (wtPowerMap.containsKey(wtId)) {
- brownouts.setLimitLoad(StringUtils.round(wtPowerMap.get(wtId).getPointValueInDouble(), 2));
- }
- Map<String, ProBasicEquipmentPoint> wtpointmap = CacheContext.wtpAimap.get(wtId);
- long pried = DateUtils.secondsDiff(DateUtils.addMinutes(currentTime, -5), currentTime);
- List<PointData> hsls = edosUtil.getHistStat(wtpointmap.get(ContantXk.SSZGL), DateUtils.addMinutes(currentTime, -5).getTime() / 1000, currentTime.getTime() / 1000, 1L, pried, StatData.MAX.getValue());
- if (StringUtils.notEmp(hsls) && hsls.size() > 0) {
- brownouts.setThisLoad(hsls.get(0).getPointValueInDouble());
- }
- brownouts.setWindpowerstationId(wtId);
- brownouts.setLossPower(0.0);
- insertBrownoutsEvent2ls.add(brownouts);
- }
- private ProEconBrownoutsEvent2 intialBrownoutsEventnew2(ProEconMainBrownouts2 mb, String wtId, Map<String, PointData> wtStatusMap, Map<String, PointData> wtSpeedMap, Map<String, PointData> wtPowerMap, Date currentTime) throws Exception {
- ProEconBrownoutsEvent2 brownouts=new ProEconBrownoutsEvent2();
- brownouts.setMainId(mb.getId());
- brownouts.setId(StringUtils.getUUID());
- brownouts.setStopTime(currentTime);
- brownouts.setStartTime(null);
- if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.XDTJ.getCode()) {
- brownouts.setStopTypeId(StatusDetailValue.XDTJ.getName());
- }
- if (wtStatusMap.get(wtId).getPointValueInDouble() == StatusDetailValue.XDJCL.getCode()) {
- brownouts.setStopTypeId(StatusDetailValue.XDJCL.getName());
- }
- if (wtSpeedMap.containsKey(wtId)) {
- brownouts.setWindSpeed(StringUtils.round(wtSpeedMap.get(wtId).getPointValueInDouble(), 2));
- }
- if (wtPowerMap.containsKey(wtId)) {
- brownouts.setLimitLoad(StringUtils.round(wtPowerMap.get(wtId).getPointValueInDouble(), 2));
- }
- Map<String, ProBasicEquipmentPoint> wtpointmap = CacheContext.wtpAimap.get(wtId);
- long pried = DateUtils.secondsDiff(DateUtils.addMinutes(currentTime, -5), currentTime);
- List<PointData> hsls = edosUtil.getHistStat(wtpointmap.get(ContantXk.SSZGL), DateUtils.addMinutes(currentTime, -5).getTime() / 1000, currentTime.getTime() / 1000, 1L, pried, StatData.MAX.getValue());
- if (StringUtils.notEmp(hsls) && hsls.size() > 0) {
- brownouts.setThisLoad(hsls.get(0).getPointValueInDouble());
- }
- brownouts.setWindpowerstationId(wtId);
- brownouts.setLossPower(0.0);
- return brownouts;
- }
- private void finishBrownoutsEvent2(ProEconMainBrownouts2 mb, List<ProEconBrownoutsEvent2> proEconBrownoutsEvent2ls, String wtId, Map<String, PointData> wtStatusMap, Map<String, PointData> wtSpeedMap, Map<String, PointData> wtPowerMap, ProEconBrownoutsEvent2 brownouts2, Date currentTime) throws Exception {
- brownouts2.setStartTime(currentTime);
- double timehour = DateUtils.hoursDiff2(brownouts2.getStartTime(), brownouts2.getStopTime());
- brownouts2.setStopHours(timehour);
- double losspower = calWpLossPower(wtId, brownouts2.getStartTime(), brownouts2.getStopTime());
- brownouts2.setLossPower(losspower);
- if (timehour <= 24) {
- proEconBrownoutsEvent2ls.add(brownouts2);
- } else {
- int days = DateUtils.daysDiff1(brownouts2.getStartTime(), brownouts2.getStopTime());
- Calendar c = Calendar.getInstance();
- Date startTime = brownouts2.getStartTime();
- c.setTime(brownouts2.getStopTime());
- c.set(Calendar.HOUR_OF_DAY, 23);
- c.set(Calendar.MINUTE, 59);
- c.set(Calendar.SECOND, 59);
- for (int i = 0; i < days; i++) {
- if (i == 0) {
- brownouts2.setStartTime(c.getTime());
- losspower = calLossPower(wtId, brownouts2.getStartTime(), brownouts2.getStopTime());
- brownouts2.setLossPower(losspower);
- proEconBrownoutsEvent2ls.add(brownouts2);
- } else {
- ProEconBrownoutsEvent2 newto =intialBrownoutsEventnew2(mb, wtId, wtStatusMap, wtSpeedMap, wtPowerMap, DateUtils.truncate(c.getTime()));
- if (i == days - 1) {
- newto.setStartTime(startTime);
- } else {
- newto.setStartTime(c.getTime());
- }
- losspower = calLossPower(wtId, newto.getStartTime(), newto.getStopTime());
- newto.setLossPower(losspower);
- proEconBrownoutsEvent2ls.add(newto);
- }
- c.add(Calendar.DAY_OF_MONTH, 1);
- }
- }
- }
- private void finishBrownoutsEvent(List<ProEconBrownoutsEvent> proEconBrownoutsEventls, String wtId, ProEconBrownoutsEvent item, Date currentTime) throws Exception {
- // if(currentStatus != 4 )
- // {
- item.setStartTime(currentTime);
- double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
- item.setStopHours(timehour);
- double losspower = calLossPower(wtId, item.getStartTime(), item.getStopTime());
- item.setLossPower(losspower);
- proEconBrownoutsEventls.add(item);
- }
- private void intialMainBrownouts(List<ProEconMainBrownouts> insertMainBrownoutsls, String wpId, Map<String, PointData> wpStatusMap, Map<String, PointData> wpSpeedMap, Map<String, PointData> wpPowerMap, Date currentTime, ProEconMainBrownouts mainBrownouts) throws Exception {
- mainBrownouts.setId(StringUtils.getUUID());
- mainBrownouts.setStopTime(currentTime);
- mainBrownouts.setStartTime(null);
- if (wpStatusMap.get(wpId).getPointValueInDouble() == StatusValue.XD.getCode()) {
- mainBrownouts.setStopTypeId(StatusValue.XD.getName());
- }
- if (wpStatusMap.get(wpId).getPointValueInDouble() == StatusValue.XD.getCode()) {
- mainBrownouts.setStopTypeId(StatusValue.XD.getName());
- }
- if (wpSpeedMap.containsKey(wpId)) {
- mainBrownouts.setWindSpeed(StringUtils.round(wpSpeedMap.get(wpId).getPointValueInDouble(), 2));
- }
- if (wpPowerMap.containsKey(wpId)) {
- mainBrownouts.setLimitLoad(StringUtils.round(wpPowerMap.get(wpId).getPointValueInDouble(), 2));
- }
- Map<String, ProBasicPowerstationPoint> wppointmap = CacheContext.wppointmap.get(wpId);
- long pried = DateUtils.secondsDiff(DateUtils.addMinutes(currentTime, -5), currentTime);
- List<PointData> hsls = edosUtil.getHistStat(wppointmap.get(ContantXk.SSZGL), DateUtils.addMinutes(currentTime, -5).getTime() / 1000, currentTime.getTime() / 1000, 1L, pried, StatData.MAX.getValue());
- if (StringUtils.notEmp(hsls) && hsls.size() > 0) {
- mainBrownouts.setThisLoad(hsls.get(0).getPointValueInDouble());
- }
- mainBrownouts.setWindpowerstationId(wpId);
- mainBrownouts.setLossPower(0.0);
- insertMainBrownoutsls.add(mainBrownouts);
- }
- private void intialMainBrownouts2(List<ProEconMainBrownouts2> insertMainBrownouts2ls, String wpId, Map<String, PointData> wpStatusMap, Map<String, PointData> wpSpeedMap, Map<String, PointData> wpPowerMap, Date currentTime, ProEconMainBrownouts2 mainBrownouts) throws Exception {
- mainBrownouts.setId(StringUtils.getUUID());
- mainBrownouts.setStopTime(currentTime);
- mainBrownouts.setStartTime(null);
- if (wpStatusMap.get(wpId).getPointValueInDouble() ==StatusValue.XD.getCode()) {
- mainBrownouts.setStopTypeId(StatusValue.XD.getName());
- }
- if (wpStatusMap.get(wpId).getPointValueInDouble() == StatusValue.XD.getCode()) {
- mainBrownouts.setStopTypeId(StatusValue.XD.getName());
- }
- if (wpSpeedMap.containsKey(wpId)) {
- mainBrownouts.setWindSpeed(StringUtils.round(wpSpeedMap.get(wpId).getPointValueInDouble(), 2));
- }
- if (wpPowerMap.containsKey(wpId)) {
- mainBrownouts.setLimitLoad(StringUtils.round(wpPowerMap.get(wpId).getPointValueInDouble(), 2));
- }
- Map<String, ProBasicPowerstationPoint> wppointmap = CacheContext.wppointmap.get(wpId);
- long pried = DateUtils.secondsDiff(DateUtils.addMinutes(currentTime, -5), currentTime);
- List<PointData> hsls = edosUtil.getHistStat(wppointmap.get(ContantXk.SSZGL), DateUtils.addMinutes(currentTime, -5).getTime() / 1000, currentTime.getTime() / 1000, 1L, pried, StatData.MAX.getValue());
- if (StringUtils.notEmp(hsls) && hsls.size() > 0) {
- mainBrownouts.setThisLoad(hsls.get(0).getPointValueInDouble());
- }
- mainBrownouts.setWindpowerstationId(wpId);
- mainBrownouts.setLossPower(0.0);
- insertMainBrownouts2ls.add(mainBrownouts);
- }
- private ProEconMainBrownouts2 intialMainBrownoutsnew2(String wpId, Map<String, PointData> wpStatusMap, Map<String, PointData> wpSpeedMap, Map<String, PointData> wpPowerMap, Date currentTime) throws Exception {
- ProEconMainBrownouts2 mainBrownouts=new ProEconMainBrownouts2();
- mainBrownouts.setId(StringUtils.getUUID());
- mainBrownouts.setStopTime(currentTime);
- mainBrownouts.setStartTime(null);
- if (wpStatusMap.get(wpId).getPointValueInDouble() == StatusValue.XD.getCode()) {
- mainBrownouts.setStopTypeId(StatusValue.XD.getName());
- }
- if (wpStatusMap.get(wpId).getPointValueInDouble() == StatusValue.XD.getCode()) {
- mainBrownouts.setStopTypeId(StatusValue.XD.getName());
- }
- if (wpSpeedMap.containsKey(wpId)) {
- mainBrownouts.setWindSpeed(StringUtils.round(wpSpeedMap.get(wpId).getPointValueInDouble(), 2));
- }
- if (wpPowerMap.containsKey(wpId)) {
- mainBrownouts.setLimitLoad(StringUtils.round(wpPowerMap.get(wpId).getPointValueInDouble(), 2));
- }
- Map<String, ProBasicPowerstationPoint> wppointmap = CacheContext.wppointmap.get(wpId);
- long pried = DateUtils.secondsDiff(DateUtils.addMinutes(currentTime, -5), currentTime);
- List<PointData> hsls = edosUtil.getHistStat(wppointmap.get(ContantXk.SSZGL), DateUtils.addMinutes(currentTime, -5).getTime() / 1000, currentTime.getTime() / 1000, 1L, pried, StatData.MAX.getValue());
- if (StringUtils.notEmp(hsls) && hsls.size() > 0) {
- mainBrownouts.setThisLoad(hsls.get(0).getPointValueInDouble());
- }
- mainBrownouts.setWindpowerstationId(wpId);
- mainBrownouts.setLossPower(0.0);
- return mainBrownouts;
- }
- private void finishMainBrownouts2(List<ProEconMainBrownouts2> proEconMainBrownouts2ls, String wpId, Map<String, PointData> wpStatusMap, Map<String, PointData> wpSpeedMap, Map<String, PointData> wpPowerMap, ProEconMainBrownouts2 mainBrownouts2, Date currentTime) throws Exception {
- mainBrownouts2.setStartTime(currentTime);
- double timehour = DateUtils.hoursDiff2(mainBrownouts2.getStartTime(), mainBrownouts2.getStopTime());
- mainBrownouts2.setStopHours(timehour);
- double losspower = calWpLossPower(wpId, mainBrownouts2.getStartTime(), mainBrownouts2.getStopTime());
- mainBrownouts2.setLossPower(losspower);
- if (timehour <= 24) {
- proEconMainBrownouts2ls.add(mainBrownouts2);
- } else {
- int days = DateUtils.daysDiff1(mainBrownouts2.getStartTime(), mainBrownouts2.getStopTime());
- Calendar c = Calendar.getInstance();
- Date startTime = mainBrownouts2.getStartTime();
- c.setTime(mainBrownouts2.getStopTime());
- c.set(Calendar.HOUR_OF_DAY, 23);
- c.set(Calendar.MINUTE, 59);
- c.set(Calendar.SECOND, 59);
- for (int i = 0; i < days; i++) {
- if (i == 0) {
- mainBrownouts2.setStartTime(c.getTime());
- losspower = calWpLossPower(wpId, mainBrownouts2.getStartTime(), mainBrownouts2.getStopTime());
- mainBrownouts2.setLossPower(losspower);
- proEconMainBrownouts2ls.add(mainBrownouts2);
- } else {
- ProEconMainBrownouts2 newpo = intialMainBrownoutsnew2(wpId, wpStatusMap, wpSpeedMap, wpPowerMap, DateUtils.truncate(c.getTime()));
- if (i == days - 1) {
- newpo.setStartTime(startTime);
- } else {
- newpo.setStartTime(c.getTime());
- }
- losspower = calWpLossPower(wpId, newpo.getStartTime(), newpo.getStopTime());
- newpo.setLossPower(losspower);
- proEconMainBrownouts2ls.add(newpo);
- }
- c.add(Calendar.DAY_OF_MONTH, 1);
- }
- }
- }
- private void finishMainBrownouts(List<ProEconMainBrownouts> proEconMainBrownoutsls, String wpId, ProEconMainBrownouts item, Date currentTime) throws Exception {
- // if(currentStatus != 4 )
- // {
- item.setStartTime(currentTime);
- double timehour = DateUtils.hoursDiff2(item.getStartTime(), item.getStopTime());
- item.setStopHours(timehour);
- double losspower = calWpLossPower(wpId, item.getStartTime(), item.getStopTime());
- item.setLossPower(losspower);
- proEconMainBrownoutsls.add(item);
- }
- //修改后的限电损失统计,通过时序数据库历史切面计算
- private Double calWpLossPower(String wpId, Date startDate, Date endDate) throws Exception {
- double result = 0.0;
- Map<String, Map<String, ProBasicPowerstationPoint>> wppointmap = CacheContext.wppointmap;
- Map<String, ProBasicPowerstationPoint> pointmap = wppointmap.get(wpId);
- Calendar c1 = Calendar.getInstance();
- c1.setTime(startDate);
- Calendar c2 = Calendar.getInstance();
- c2.setTime(endDate);
- //判定限电是否跨年
- if (endDate.after(startDate) && c1.get(Calendar.YEAR) == c2.get(Calendar.YEAR)) {
- //年限电欠发损失电量
- if (pointmap.containsKey(ContantXk.NXDTJSSDL)) {
- double beginvalue;
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(pointmap.get(ContantXk.NXDTJSSDL).getNemCode());
- List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
- if (xdbegin.size() == 1 && xdend.size() == 1) {
- beginvalue = xdbegin.get(0).getPointValueInDouble();
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > beginvalue) {
- result = result + (endvalue - beginvalue);
- }
- }
- }
- //年限电损失电量
- if (pointmap.containsKey(ContantXk.NXDJCLSSDL)) {
- double beginvalue;
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(pointmap.get(ContantXk.NXDJCLSSDL).getNemCode());
- List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
- if (xdbegin.size() == 1 && xdend.size() == 1) {
- beginvalue = xdbegin.get(0).getPointValueInDouble();
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > beginvalue) {
- result = result + (endvalue - beginvalue);
- }
- }
- }
- } else {
- Calendar c = Calendar.getInstance();
- c.setTime(DateUtils.truncate(startDate));
- c.add(Calendar.DAY_OF_MONTH, 1);
- //获得1月1日零点值
- Date endtime = c.getTime();
- //年限电欠发损失电量
- if (pointmap.containsKey(ContantXk.NXDTJSSDL)) {
- double beginvalue;
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(pointmap.get(ContantXk.NXDTJSSDL).getNemCode());
- List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endtime.getTime() / 1000);
- if (xdbegin.size() == 1 && xdend.size() == 1) {
- beginvalue = xdbegin.get(0).getPointValueInDouble();
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > beginvalue) {
- result = result + (endvalue - beginvalue);
- }
- }
- }
- //年限电损失电量
- if (pointmap.containsKey(ContantXk.NXDJCLSSDL)) {
- double beginvalue;
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(pointmap.get(ContantXk.NXDJCLSSDL).getNemCode());
- List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endtime.getTime() / 1000);
- if (xdbegin.size() == 1 && xdend.size() == 1) {
- beginvalue = xdbegin.get(0).getPointValueInDouble();
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > beginvalue) {
- result = result + (endvalue - beginvalue);
- }
- }
- }
- //日限电欠发损失电量
- if (pointmap.containsKey(ContantXk.NXDTJSSDL)) {
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(pointmap.get(ContantXk.NXDTJSSDL).getNemCode());
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
- if (xdend.size() == 1) {
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > 0) {
- result = result + endvalue;
- }
- }
- }
- //日限电损失电量
- if (pointmap.containsKey(ContantXk.NXDJCLSSDL)) {
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(pointmap.get(ContantXk.NXDJCLSSDL).getNemCode());
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
- if (xdend.size() == 1) {
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > 0) {
- result = result + endvalue;
- }
- }
- }
- }
- return result;
- }
- //修改后的限电损失统计,通过时序数据库历史切面计算
- private Double calLossPower(String windturbineId, Date startDate, Date endDate) throws Exception {
- double result = 0.0;
- Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
- Map<String, ProBasicEquipmentPoint> wtpointmap = wtpAimap.get(windturbineId);
- Calendar c1 = Calendar.getInstance();
- c1.setTime(startDate);
- Calendar c2 = Calendar.getInstance();
- c2.setTime(endDate);
- //判定限电是否跨年
- if (endDate.after(startDate) && c1.get(Calendar.YEAR) == c2.get(Calendar.YEAR)) {
- //年限电欠发损失电量
- if (wtpointmap.containsKey(ContantXk.NXDTJSSDL)) {
- double beginvalue;
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(wtpointmap.get(ContantXk.NXDTJSSDL).getNemCode());
- List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
- if (xdbegin.size() == 1 && xdend.size() == 1) {
- beginvalue = xdbegin.get(0).getPointValueInDouble();
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > beginvalue) {
- result = result + (endvalue - beginvalue);
- }
- }
- }
- //年限电损失电量
- if (wtpointmap.containsKey(ContantXk.NXDJCLSSDL)) {
- double beginvalue;
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(wtpointmap.get(ContantXk.NXDJCLSSDL).getNemCode());
- List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
- if (xdbegin.size() == 1 && xdend.size() == 1) {
- beginvalue = xdbegin.get(0).getPointValueInDouble();
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > beginvalue) {
- result = result + (endvalue - beginvalue);
- }
- }
- }
- } else {
- Calendar c = Calendar.getInstance();
- c.setTime(DateUtils.truncate(startDate));
- c.add(Calendar.DAY_OF_MONTH, 1);
- //获得1月1日零点值
- Date endtime = c.getTime();
- //年限电欠发损失电量
- if (wtpointmap.containsKey(ContantXk.NXDTJSSDL)) {
- double beginvalue;
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(wtpointmap.get(ContantXk.NXDTJSSDL).getNemCode());
- List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endtime.getTime() / 1000);
- if (xdbegin.size() == 1 && xdend.size() == 1) {
- beginvalue = xdbegin.get(0).getPointValueInDouble();
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > beginvalue) {
- result = result + (endvalue - beginvalue);
- }
- }
- }
- //年限电损失电量
- if (wtpointmap.containsKey(ContantXk.NXDJCLSSDL)) {
- double beginvalue;
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(wtpointmap.get(ContantXk.NXDJCLSSDL).getNemCode());
- List<PointData> xdbegin = edosUtil.getHistMatrix(pointid, startDate.getTime() / 1000);
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endtime.getTime() / 1000);
- if (xdbegin.size() == 1 && xdend.size() == 1) {
- beginvalue = xdbegin.get(0).getPointValueInDouble();
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > beginvalue) {
- result = result + (endvalue - beginvalue);
- }
- }
- }
- //日限电欠发损失电量
- if (wtpointmap.containsKey(ContantXk.NXDTJSSDL)) {
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(wtpointmap.get(ContantXk.NXDTJSSDL).getNemCode());
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
- if (xdend.size() == 1) {
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > 0) {
- result = result + endvalue;
- }
- }
- }
- //日限电损失电量
- if (wtpointmap.containsKey(ContantXk.NXDJCLSSDL)) {
- double endvalue;
- List<String> pointid = new ArrayList<>();
- pointid.add(wtpointmap.get(ContantXk.NXDJCLSSDL).getNemCode());
- List<PointData> xdend = edosUtil.getHistMatrix(pointid, endDate.getTime() / 1000);
- if (xdend.size() == 1) {
- endvalue = xdend.get(0).getPointValueInDouble();
- if (endvalue > 0) {
- result = result + endvalue;
- }
- }
- }
- }
- return result;
- }
- }
|