123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278 |
- package com.gyee.generation.service;//package com.gyee.generation.service;
- import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
- import com.gyee.common.contant.ContantXk;
- import com.gyee.common.model.PointData;
- import com.gyee.common.model.StringUtils;
- import com.gyee.generation.init.CacheContext;
- import com.gyee.generation.model.auto.*;
- import com.gyee.generation.model.vo.CompanyType;
- import com.gyee.generation.model.vo.Location;
- import com.gyee.generation.model.vo.WpType;
- import com.gyee.generation.service.auto.IProEconPowerstationInfoDay2Service;
- import com.gyee.generation.util.DateUtils;
- import com.gyee.generation.util.realtimesource.IEdosUtil;
- import com.gyee.generation.util.statisticcs.Initial;
- import org.springframework.stereotype.Service;
- import javax.annotation.Resource;
- import java.math.BigDecimal;
- import java.math.RoundingMode;
- import java.util.*;
- import java.util.stream.Collectors;
- @Service
- public class WindPowerInfo2Service {
- // private static final Logger logger = LoggerFactory.getLogger(WindPowerInfo2Service.class);
- @Resource
- private IEdosUtil edosUtil;
- @Resource
- private IProEconPowerstationInfoDay2Service proEconPowerstationInfoDay2Service;
- /**
- * 计算区域日信息
- */
- public void calRegionInfoDay(Date recordDate) {
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper = new QueryWrapper<>();
- queryWrapper.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.cp.getValue());
- List<ProEconPowerstationInfoDay2> wpinfodayls = proEconPowerstationInfoDay2Service.list(queryWrapper);
- // .stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
- //// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
- // && i.getLocation().equals(Location.cp.getValue()))
- // .collect(Collectors.toList());
- if (!wpinfodayls.isEmpty()) {
- Map<String, Map<String, List<ProEconPowerstationInfoDay2>>> rgmap = new HashMap<>();
- for (ProEconPowerstationInfoDay2 wpinfo : wpinfodayls) {
- if (rgmap.containsKey(wpinfo.getRegionId())) {
- Map<String, List<ProEconPowerstationInfoDay2>> map = rgmap.get(wpinfo.getRegionId());
- List<ProEconPowerstationInfoDay2> qbls = map.get(CompanyType.qb.id);
- List<ProEconPowerstationInfoDay2> fdls = map.get(CompanyType.fd.id);
- List<ProEconPowerstationInfoDay2> gfls = map.get(CompanyType.gf.id);
- if (wpinfo.getForeignKeyId().contains("-1")) {
- fdls.add(wpinfo);
- } else if (wpinfo.getForeignKeyId().contains("-2")) {
- gfls.add(wpinfo);
- } else if (wpinfo.getForeignKeyId().contains("0")) {
- qbls.add(wpinfo);
- }
- } else {
- Map<String, List<ProEconPowerstationInfoDay2>> map = new HashMap<>();
- List<ProEconPowerstationInfoDay2> qbls = new ArrayList<>();
- List<ProEconPowerstationInfoDay2> gfls = new ArrayList<>();
- List<ProEconPowerstationInfoDay2> fdls = new ArrayList<>();
- if (wpinfo.getForeignKeyId().contains("-1")) {
- fdls.add(wpinfo);
- } else if (wpinfo.getForeignKeyId().contains("-2")) {
- gfls.add(wpinfo);
- } else if (wpinfo.getForeignKeyId().contains("0")) {
- qbls.add(wpinfo);
- }
- map.put(CompanyType.qb.id, qbls);
- map.put(CompanyType.fd.id, fdls);
- map.put(CompanyType.gf.id, gfls);
- rgmap.put(wpinfo.getRegionId(), map);
- }
- }
- //判断是否有重复记录,先删除重复记录
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper2 = new QueryWrapper<>();
- queryWrapper2.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.rg.getValue());
- List<String> idls = proEconPowerstationInfoDay2Service.list(queryWrapper2).stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
- //// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
- // && i.getLocation().equals(Location.rg.getValue()))
- .map(ProEconPowerstationInfoDay2::getId)
- .collect(Collectors.toList());
- if (idls.size() > 0) {
- proEconPowerstationInfoDay2Service.removeByIds(idls);
- }
- for (Map.Entry<String, Map<String, List<ProEconPowerstationInfoDay2>>> entry : rgmap.entrySet()) {
- Map<String, List<ProEconPowerstationInfoDay2>> map = entry.getValue();
- List<ProEconPowerstationInfoDay2> qbls = map.get(CompanyType.qb.id);
- List<ProEconPowerstationInfoDay2> fdls = map.get(CompanyType.fd.id);
- List<ProEconPowerstationInfoDay2> gfls = map.get(CompanyType.gf.id);
- // if(CacheContext.cpwpmap.size()==qbls.size())
- // {
- ProEconPowerstationInfoDay2 qb = new ProEconPowerstationInfoDay2();
- ProEconPowerstationInfoDay2 fd = new ProEconPowerstationInfoDay2();
- ProEconPowerstationInfoDay2 gf = new ProEconPowerstationInfoDay2();
- if (CacheContext.rgmap.containsKey(entry.getKey())) {
- ProBasicRegion cp = CacheContext.rgmap.get(entry.getKey());
- gf.setRegionId(cp.getId());
- gf.setRecordDate(DateUtils.truncate(recordDate));
- gf.setForeignKeyId(cp.getId()+"-2");
- gf.setLocation(Location.rg.getValue());
- fd.setRegionId(cp.getId());
- fd.setRecordDate(DateUtils.truncate(recordDate));
- fd.setForeignKeyId(cp.getId()+"-1");
- fd.setLocation(Location.rg.getValue());
- qb.setRegionId(cp.getId());
- qb.setRecordDate(DateUtils.truncate(recordDate));
- qb.setForeignKeyId(cp.getId()+"0");
- qb.setLocation(Location.rg.getValue());
- Initial.initial(qb);
- Initial.initial(fd);
- Initial.initial(gf);
- //计算区域级全部
- calCp(qb, qbls);
- //计算公司级风电场站
- calCp(fd, fdls);
- //计算公司级光电场站
- calCp(gf, gfls);
- proEconPowerstationInfoDay2Service.save(qb);
- proEconPowerstationInfoDay2Service.save(fd);
- proEconPowerstationInfoDay2Service.save(gf);
- }
- // }else
- // {
- // logger.debug("公司所属场站数量与保存的场站日信息数量不一致,未进行{0}统计-------结束", entry.getKey());
- //
- // }
- }
- }
- }
- /**
- * 计算公司日信息
- */
- public void calCompanyInfoDay(Date recordDate) {
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper = new QueryWrapper<>();
- queryWrapper.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.wp.getValue());
- List<ProEconPowerstationInfoDay2> wpinfodayls = proEconPowerstationInfoDay2Service.list(queryWrapper);
- // .stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
- //// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
- // && i.getLocation().equals(Location.wp.getValue()))
- // .collect(Collectors.toList());
- if (!wpinfodayls.isEmpty()) {
- Map<String, Map<String, List<ProEconPowerstationInfoDay2>>> cpmap = new HashMap<>();
- for (ProEconPowerstationInfoDay2 wpinfo : wpinfodayls) {
- if (cpmap.containsKey(wpinfo.getCompanyId())) {
- Map<String, List<ProEconPowerstationInfoDay2>> map = cpmap.get(wpinfo.getCompanyId());
- List<ProEconPowerstationInfoDay2> qbls = map.get(CompanyType.qb.id);
- List<ProEconPowerstationInfoDay2> fdls = map.get(CompanyType.fd.id);
- List<ProEconPowerstationInfoDay2> gfls = map.get(CompanyType.gf.id);
- if (wpinfo.getWindpowerstationId().contains(WpType.FDC.id)) {
- fdls.add(wpinfo);
- } else {
- gfls.add(wpinfo);
- }
- qbls.add(wpinfo);
- } else {
- Map<String, List<ProEconPowerstationInfoDay2>> map = new HashMap<>();
- List<ProEconPowerstationInfoDay2> qbls = new ArrayList<>();
- List<ProEconPowerstationInfoDay2> gfls = new ArrayList<>();
- List<ProEconPowerstationInfoDay2> fdls = new ArrayList<>();
- if (wpinfo.getWindpowerstationId().contains(WpType.FDC.id)) {
- fdls.add(wpinfo);
- } else {
- gfls.add(wpinfo);
- }
- qbls.add(wpinfo);
- map.put(CompanyType.qb.id, qbls);
- map.put(CompanyType.fd.id, fdls);
- map.put(CompanyType.gf.id, gfls);
- cpmap.put(wpinfo.getCompanyId(), map);
- }
- }
- //判断是否有重复记录,先删除重复记录
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper2 = new QueryWrapper<>();
- queryWrapper2.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.cp.getValue());
- List<String> idls = proEconPowerstationInfoDay2Service.list(queryWrapper2).stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
- //// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
- // && i.getLocation().equals(Location.cp.getValue()))
- .map(ProEconPowerstationInfoDay2::getId)
- .collect(Collectors.toList());
- if (idls.size() > 0) {
- proEconPowerstationInfoDay2Service.removeByIds(idls);
- }
- for (Map.Entry<String, Map<String, List<ProEconPowerstationInfoDay2>>> entry : cpmap.entrySet()) {
- Map<String, List<ProEconPowerstationInfoDay2>> map = entry.getValue();
- List<ProEconPowerstationInfoDay2> qbls = map.get(CompanyType.qb.id);
- List<ProEconPowerstationInfoDay2> fdls = map.get(CompanyType.fd.id);
- List<ProEconPowerstationInfoDay2> gfls = map.get(CompanyType.gf.id);
- // if(CacheContext.cpwpmap.size()==qbls.size())
- // {
- ProEconPowerstationInfoDay2 qb = new ProEconPowerstationInfoDay2();
- ProEconPowerstationInfoDay2 fd = new ProEconPowerstationInfoDay2();
- ProEconPowerstationInfoDay2 gf = new ProEconPowerstationInfoDay2();
- if (CacheContext.cpmap.containsKey(entry.getKey())) {
- ProBasicCompany cp = CacheContext.cpmap.get(entry.getKey());
- gf.setRegionId(cp.getRegionId());
- gf.setCompanyId(cp.getId());
- gf.setRecordDate(DateUtils.truncate(recordDate));
- gf.setForeignKeyId(cp.getId()+"-2");
- gf.setLocation(Location.cp.getValue());
- fd.setRegionId(cp.getRegionId());
- fd.setCompanyId(cp.getId());
- fd.setRecordDate(DateUtils.truncate(recordDate));
- fd.setForeignKeyId(cp.getId()+"-1");
- fd.setLocation(Location.cp.getValue());
- qb.setRegionId(cp.getRegionId());
- qb.setCompanyId(cp.getId());
- qb.setRecordDate(DateUtils.truncate(recordDate));
- qb.setForeignKeyId(cp.getId()+"0");
- qb.setLocation(Location.cp.getValue());
- Initial.initial(qb);
- Initial.initial(fd);
- Initial.initial(gf);
- //计算公司级全部场站
- calCp(qb, qbls);
- //计算公司级风电场站
- calCp(fd, fdls);
- //计算公司级光电场站
- calCp(gf, gfls);
- proEconPowerstationInfoDay2Service.save(qb);
- proEconPowerstationInfoDay2Service.save(fd);
- proEconPowerstationInfoDay2Service.save(gf);
- }
- // }else
- // {
- // logger.debug("公司所属场站数量与保存的场站日信息数量不一致,未进行{0}统计-------结束", entry.getKey());
- //
- // }
- }
- }
- }
- private void calCp(ProEconPowerstationInfoDay2 pewp, List<ProEconPowerstationInfoDay2> ls) {
- if (!ls.isEmpty()) {
- for (ProEconPowerstationInfoDay2 pepid : ls) {
- //日合计故障小时(明细)
- pewp.setRhjgzxsmx(StringUtils.round(pewp.getRhjgzxsmx() + pepid.getRhjgzxsmx(), 2));
- //日合计场内受累故障小时(明细)
- pewp.setRhjcnslgzxsmx(StringUtils.round(pewp.getRhjcnslgzxsmx() + pepid.getRhjcnslgzxsmx(), 2));
- //日合计检修小时(明细)
- pewp.setRhjjxxsmx(StringUtils.round(pewp.getRhjjxxsmx() + pepid.getRhjjxxsmx(), 2));
- //日合计场内受累检修小时(明细)
- pewp.setRhjcnsljxxsmx(StringUtils.round(pewp.getRhjcnsljxxsmx() + pepid.getRhjcnsljxxsmx(), 2));
- //日合计待机小时(明细)
- pewp.setRhjdjxsmx(StringUtils.round(pewp.getRhjdjxsmx() + pepid.getRhjdjxsmx(), 2));
- //日合计缺陷降出力小时(明细)
- pewp.setRhjqxjclxsmx(StringUtils.round(pewp.getRhjqxjclxsmx() + pepid.getRhjqxjclxsmx(), 2));
- //日合计手动停机小时(明细)
- pewp.setRhjsdtjxsmx(StringUtils.round(pewp.getRhjsdtjxsmx() + pepid.getRhjsdtjxsmx(), 2));
- //日合计性能小时(明细)
- pewp.setRhjbwxsmx(StringUtils.round(pewp.getRhjbwxsmx() + pepid.getRhjbwxsmx(), 2));
- //日合计限电停机小时(明细)
- pewp.setRhjxdtjxsmx(StringUtils.round(pewp.getRhjxdtjxsmx() + pepid.getRhjxdtjxsmx(), 2));
- //日合计限电降出力小时(明细)
- pewp.setRhjxdjclxsmx(StringUtils.round(pewp.getRhjxdjclxsmx() + pepid.getRhjxdjclxsmx(), 2));
- //日合计场外受累电网小时(明细)
- pewp.setRhjcwsldwxsmx(StringUtils.round(pewp.getRhjcwsldwxsmx() + pepid.getRhjcwsldwxsmx(), 2));
- //日合计场外受累电网小时(明细)
- pewp.setRhjcwsltqxsmx(StringUtils.round(pewp.getRhjcwsltqxsmx() + pepid.getRhjcwsltqxsmx(), 2));
- //日合计通讯中断小时(明细)
- pewp.setRhjtxzdxsmx(StringUtils.round(pewp.getRhjtxzdxsmx() + pepid.getRhjtxzdxsmx(), 2));
- //日合计离线小时(明细)
- pewp.setRhjlxxsmx(StringUtils.round(pewp.getRhjlxxsmx() + pepid.getRhjlxxsmx(), 2));
- //月合计故障小时(明细)
- pewp.setYhjgzxsmx(StringUtils.round(pewp.getYhjgzxsmx() + pepid.getYhjgzxsmx(), 2));
- //月合计场内受累故障小时(明细)
- pewp.setYhjcnslgzxsmx(StringUtils.round(pewp.getYhjcnslgzxsmx() + pepid.getYhjcnslgzxsmx(), 2));
- //月合计检修小时(明细)
- pewp.setYhjjxxsmx(StringUtils.round(pewp.getYhjjxxsmx() + pepid.getYhjjxxsmx(), 2));
- //月合计场内受累检修小时(明细)
- pewp.setYhjcnsljxxsmx(StringUtils.round(pewp.getYhjcnsljxxsmx() + pepid.getYhjcnsljxxsmx(), 2));
- //月合计待机小时(明细)
- pewp.setYhjdjxsmx(StringUtils.round(pewp.getYhjdjxsmx() + pepid.getYhjdjxsmx(), 2));
- //月合计缺陷降出力小时(明细)
- pewp.setYhjqxjclxsmx(StringUtils.round(pewp.getYhjqxjclxsmx() + pepid.getYhjqxjclxsmx(), 2));
- //月合计手动停机小时(明细)
- pewp.setYhjsdtjxsmx(StringUtils.round(pewp.getYhjsdtjxsmx() + pepid.getYhjsdtjxsmx(), 2));
- //月合计性能小时(明细)
- pewp.setYhjbwxsmx(StringUtils.round(pewp.getYhjbwxsmx() + pepid.getYhjbwxsmx(), 2));
- //月合计限电停机小时(明细)
- pewp.setYhjxdtjxsmx(StringUtils.round(pewp.getYhjxdtjxsmx() + pepid.getYhjxdtjxsmx(), 2));
- //月合计限电降出力小时(明细)
- pewp.setYhjxdjclxsmx(StringUtils.round(pewp.getYhjxdjclxsmx() + pepid.getYhjxdjclxsmx(), 2));
- //月合计场外受累电网小时(明细)
- pewp.setYhjcwsldwxsmx(StringUtils.round(pewp.getYhjcwsldwxsmx() + pepid.getYhjcwsldwxsmx(), 2));
- //月合计场外受累电网小时(明细)
- pewp.setYhjcwsltqxsmx(StringUtils.round(pewp.getYhjcwsltqxsmx() + pepid.getYhjcwsltqxsmx(), 2));
- //月合计通讯中断小时(明细)
- pewp.setYhjtxzdxsmx(StringUtils.round(pewp.getYhjtxzdxsmx() + pepid.getYhjtxzdxsmx(), 2));
- //月合计离线小时(明细)
- pewp.setYhjlxxsmx(StringUtils.round(pewp.getYhjlxxsmx() + pepid.getYhjlxxsmx(), 2));
- //年合计故障小时(明细)
- pewp.setNhjgzxsmx(StringUtils.round(pewp.getNhjgzxsmx() + pepid.getNhjgzxsmx(), 2));
- //年合计场内受累故障小时(明细)
- pewp.setNhjcnslgzxsmx(StringUtils.round(pewp.getNhjcnslgzxsmx() + pepid.getNhjcnslgzxsmx(), 2));
- //年合计检修小时(明细)
- pewp.setNhjjxxsmx(StringUtils.round(pewp.getNhjjxxsmx() + pepid.getNhjjxxsmx(), 2));
- //年合计场内受累检修小时(明细)
- pewp.setNhjcnsljxxsmx(StringUtils.round(pewp.getNhjcnsljxxsmx() + pepid.getNhjcnsljxxsmx(), 2));
- //年合计待机小时(明细)
- pewp.setNhjdjxsmx(StringUtils.round(pewp.getNhjdjxsmx() + pepid.getNhjdjxsmx(), 2));
- //年合计缺陷降出力小时(明细)
- pewp.setNhjqxjclxsmx(StringUtils.round(pewp.getNhjqxjclxsmx() + pepid.getNhjqxjclxsmx(), 2));
- //年合计手动停机小时(明细)
- pewp.setNhjsdtjxsmx(StringUtils.round(pewp.getNhjsdtjxsmx() + pepid.getNhjsdtjxsmx(), 2));
- //年合计性能小时(明细)
- pewp.setNhjbwxsmx(StringUtils.round(pewp.getNhjbwxsmx() + pepid.getNhjbwxsmx(), 2));
- //年合计限电停机小时(明细)
- pewp.setNhjxdtjxsmx(StringUtils.round(pewp.getNhjxdtjxsmx() + pepid.getNhjxdtjxsmx(), 2));
- //年合计限电降出力小时(明细)
- pewp.setNhjxdjclxsmx(StringUtils.round(pewp.getNhjxdjclxsmx() + pepid.getNhjxdjclxsmx(), 2));
- //年合计场外受累电网小时(明细)
- pewp.setNhjcwsldwxsmx(StringUtils.round(pewp.getNhjcwsldwxsmx() + pepid.getNhjcwsldwxsmx(), 2));
- //年合计场外受累电网小时(明细)
- pewp.setNhjcwsltqxsmx(StringUtils.round(pewp.getNhjcwsltqxsmx() + pepid.getNhjcwsltqxsmx(), 2));
- //年合计通讯中断小时(明细)
- pewp.setNhjtxzdxsmx(StringUtils.round(pewp.getNhjtxzdxsmx() + pepid.getNhjtxzdxsmx(), 2));
- //年合计离线小时(明细)
- pewp.setNhjlxxsmx(StringUtils.round(pewp.getNhjlxxsmx() + pepid.getNhjlxxsmx(), 2));
- }
- }
- }
- /**
- * 计算场站日信息
- */
- public void calWindpowerInfoDay(Date recordDate) throws Exception {
- Calendar c = Calendar.getInstance();
- c.setTime(recordDate);
- Date end = c.getTime();
- Date begin = DateUtils.truncate(c.getTime());
- List<ProEconPowerstationInfoDay2> dayls=new ArrayList<>();
- for (ProBasicPowerstation wp : CacheContext.wpls) {
- if (CacheContext.wppointmap.containsKey(wp.getId())) {
- // Map<String, ProBasicPowerstationPoint> pointmap=CacheContext.wppointmap.get(wp.getId());
- ProEconPowerstationInfoDay2 pewp = new ProEconPowerstationInfoDay2();
- Initial.initial(pewp);
- pewp.setRegionId(wp.getRegionId());
- pewp.setCompanyId(wp.getCompanyId());
- pewp.setRecordDate(DateUtils.truncate(recordDate));
- pewp.setForeignKeyId(wp.getId());
- pewp.setWindpowerstationId(wp.getId());
- pewp.setLocation(Location.wp.getValue());
- //昨日的统计结果
- List<ProEconPowerstationInfoDay2> pepidls = new ArrayList<>();
- Calendar cl = Calendar.getInstance();
- cl.setTime(recordDate);
- //昨日的统计结果
- cl.add(Calendar.DAY_OF_MONTH, -1);
- if (cl.get(Calendar.DAY_OF_MONTH) != 1) {
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper2 = new QueryWrapper<>();
- queryWrapper2.eq("record_date",DateUtils.truncate(cl.getTime()))
- .eq("windpowerstation_id","wp.getId()")
- .eq("location",Location.wp.getValue());
- pepidls = proEconPowerstationInfoDay2Service.list(queryWrapper2);
- // .stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
- //
- // && i.getLocation().equals(Location.wp.getValue())
- // && i.getWindpowerstationId().equals(wp.getId())
- // )
- // .collect(Collectors.toList());
- }
- calDetiall(pewp, end, begin, CacheContext.wpwtmap.get(wp.getId()), pepidls);
- calSimple(pewp, end, begin, CacheContext.wpwtmap.get(wp.getId()), pepidls);
- //*******************************************年信息统计*********************************************************/
- // wpinfodayls.add(pewp);
- dayls.add(pewp);
- // proEconPowerstationInfoDay2Service.save(pewp);
- }
- }
- //判断是否有重复记录,先删除重复记录
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper = new QueryWrapper<>();
- queryWrapper.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.wp.getValue());
- List<String> idls = proEconPowerstationInfoDay2Service.list(queryWrapper).stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
- // && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
- // && i.getLocation().equals(Location.wp.getValue()))
- .map(ProEconPowerstationInfoDay2::getId)
- .collect(Collectors.toList());
- if (idls.size() > 0) {
- proEconPowerstationInfoDay2Service.removeByIds(idls);
- }
- List<ProEconPowerstationInfoDay2> templs=new ArrayList<>();
- for(ProEconPowerstationInfoDay2 vo:dayls)
- {
- templs.add(vo);
- if(templs.size()==1000)
- {
- proEconPowerstationInfoDay2Service.saveBatch(templs);
- templs=new ArrayList<>();
- }
- }
- if(!templs.isEmpty())
- {
- proEconPowerstationInfoDay2Service.saveBatch(templs);
- }
- // proEconPowerstationInfoDay2Service.saveBatch(dayls);
- }
- /**
- * 计算项目日信息
- */
- public void calProjectInfoDay(Date recordDate) throws Exception {
- Calendar c = Calendar.getInstance();
- c.setTime(recordDate);
- Date end = c.getTime();
- Date begin = DateUtils.truncate(c.getTime());
- List<ProEconPowerstationInfoDay2> dayls=new ArrayList<>();
- for (ProBasicProject pj : CacheContext.pjls) {
- // if(CacheContext.wppointmap.containsKey(pj.getId()))
- // {
- // Map<String, ProBasicPowerstationPoint> pointmap=CacheContext.wppointmap.get(pj.getId());
- ProEconPowerstationInfoDay2 pewp = new ProEconPowerstationInfoDay2();
- if (CacheContext.wpmap.containsKey(pj.getWindpowerstationId())) {
- ProBasicPowerstation wp = CacheContext.wpmap.get(pj.getWindpowerstationId());
- pewp.setRegionId(wp.getRegionId());
- pewp.setCompanyId(wp.getCompanyId());
- }
- Initial.initial(pewp);
- pewp.setForeignKeyId(pj.getId());
- pewp.setWindpowerstationId(pj.getWindpowerstationId());
- pewp.setProjectId(pj.getId());
- pewp.setLocation(Location.pj.getValue());
- pewp.setRecordDate(DateUtils.truncate(recordDate));
- //昨日的统计结果
- List<ProEconPowerstationInfoDay2> pepidls = new ArrayList<>();
- Calendar cl = Calendar.getInstance();
- cl.setTime(recordDate);
- //昨日的统计结果
- cl.add(Calendar.DAY_OF_MONTH, -1);
- if (cl.get(Calendar.DAY_OF_MONTH) != 1) {
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper2 = new QueryWrapper<>();
- queryWrapper2.eq("record_date",DateUtils.truncate(cl.getTime()))
- .eq("location",Location.pj.getValue())
- .eq("project_id",pj.getId());
- pepidls = proEconPowerstationInfoDay2Service.list(queryWrapper2);
- // .stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
- //
- // && i.getLocation().equals(Location.pj.getValue())
- // && i.getProjectId().equals(pj.getId())
- // )
- // .collect(Collectors.toList());
- }
- calDetiall(pewp, end, begin, CacheContext.pjwtmap.get(pj.getId()), pepidls);
- calSimple(pewp, end, begin, CacheContext.pjwtmap.get(pj.getId()), pepidls);
- dayls.add(pewp);
- // proEconPowerstationInfoDay2Service.save(pewp);
- // }
- }
- //判断是否有重复记录,先删除重复记录
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper = new QueryWrapper<>();
- queryWrapper.eq("record_date",DateUtils.truncate(recordDate))
- .eq("location",Location.pj.getValue());
- List<String> idls = proEconPowerstationInfoDay2Service.list(queryWrapper).stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
- // && CacheContext.pjmap.containsKey(i.getProjectId())
- // && i.getLocation().equals(Location.pj.getValue()))
- .map(ProEconPowerstationInfoDay2::getId)
- .collect(Collectors.toList());
- if (idls.size() > 0) {
- proEconPowerstationInfoDay2Service.removeByIds(idls);
- }
- List<ProEconPowerstationInfoDay2> templs=new ArrayList<>();
- for(ProEconPowerstationInfoDay2 vo:dayls)
- {
- templs.add(vo);
- if(templs.size()==1000)
- {
- proEconPowerstationInfoDay2Service.saveBatch(templs);
- templs=new ArrayList<>();
- }
- }
- if(!templs.isEmpty())
- {
- proEconPowerstationInfoDay2Service.saveBatch(templs);
- }
- // proEconPowerstationInfoDay2Service.saveBatch(dayls);
- }
- /**
- * 计算线路日信息
- */
- public void calLineInfoDay(Date recordDate) throws Exception {
- Calendar c = Calendar.getInstance();
- c.setTime(recordDate);
- Date end = c.getTime();
- Date begin = DateUtils.truncate(c.getTime());
- List<ProEconPowerstationInfoDay2> dayls=new ArrayList<>();
- for (ProBasicLine ln : CacheContext.lnls) {
- // if(CacheContext.wppointmap.containsKey(ln.getId()))
- // {
- // Map<String, ProBasicPowerstationPoint> pointmap=CacheContext.wppointmap.get(ln.getId());
- ProEconPowerstationInfoDay2 pewp = new ProEconPowerstationInfoDay2();
- if (CacheContext.pjmap.containsKey(ln.getProjectId())) {
- ProBasicProject pj = CacheContext.pjmap.get(ln.getProjectId());
- if (CacheContext.wpmap.containsKey(pj.getWindpowerstationId())) {
- ProBasicPowerstation wp = CacheContext.wpmap.get(pj.getWindpowerstationId());
- pewp.setRegionId(wp.getRegionId());
- pewp.setCompanyId(wp.getCompanyId());
- pewp.setWindpowerstationId(wp.getId());
- }
- }
- Initial.initial(pewp);
- pewp.setForeignKeyId(ln.getId());
- pewp.setLineId(ln.getId());
- pewp.setLocation(Location.ln.getValue());
- pewp.setProjectId(ln.getProjectId());
- pewp.setRecordDate(DateUtils.truncate(recordDate));
- //昨日的统计结果
- List<ProEconPowerstationInfoDay2> pepidls = new ArrayList<>();
- Calendar cl = Calendar.getInstance();
- cl.setTime(recordDate);
- //昨日的统计结果
- cl.add(Calendar.DAY_OF_MONTH, -1);
- if (cl.get(Calendar.DAY_OF_MONTH) != 1) {
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper2 = new QueryWrapper<>();
- queryWrapper2.eq("record_date",DateUtils.truncate(cl.getTime()))
- .eq("location",Location.ln.getValue())
- .eq("line_id",ln.getId());
- pepidls = proEconPowerstationInfoDay2Service.list(queryWrapper2);
- // .stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
- // && i.getLocation().equals(Location.ln.getValue())
- // && i.getLineId().equals(ln.getId())
- // )
- // .collect(Collectors.toList());
- }
- calDetiall(pewp, end, begin, CacheContext.lnwtmap.get(ln.getId()), pepidls);
- calSimple(pewp, end, begin, CacheContext.lnwtmap.get(ln.getId()), pepidls);
- dayls.add(pewp);
- // proEconPowerstationInfoDay2Service.save(pewp);
- }
- // }
- //判断是否有重复记录,先删除重复记录
- QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper = new QueryWrapper<>();
- queryWrapper.eq("record_date",DateUtils.truncate(recordDate))
- .eq("location",Location.ln.getValue());
- List<String> idls = proEconPowerstationInfoDay2Service.list(queryWrapper).stream()
- // .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
- // && CacheContext.lnmap.containsKey(i.getLineId())
- // && i.getLocation().equals(Location.ln.getValue()))
- .map(ProEconPowerstationInfoDay2::getId)
- .collect(Collectors.toList());
- if (idls.size() > 0) {
- proEconPowerstationInfoDay2Service.removeByIds(idls);
- }
- List<ProEconPowerstationInfoDay2> templs=new ArrayList<>();
- for(ProEconPowerstationInfoDay2 vo:dayls)
- {
- templs.add(vo);
- if(templs.size()==1000)
- {
- proEconPowerstationInfoDay2Service.saveBatch(templs);
- templs=new ArrayList<>();
- }
- }
- if(!templs.isEmpty())
- {
- proEconPowerstationInfoDay2Service.saveBatch(templs);
- }
- // proEconPowerstationInfoDay2Service.saveBatch(dayls);
- }
- private void calDetiall(ProEconPowerstationInfoDay2 pewp, Date end, Date begin, List<ProBasicEquipment> wtls, List<ProEconPowerstationInfoDay2> pepidls) throws Exception {
- // // 0 待机
- // 1 手动停机
- // 2 正常发电
- // 3 发电降出力
- // 4 故障
- // 5 故障受累
- // 6 检修
- // 7 检修受累
- // 8 限电降出力
- // 9 限电停机
- // 10 电网受累
- // 11 环境受累
- // 12 通讯中断
- // 13 设备离线
- double lastState;//上一分钟状态
- double djsc = 0;//待机时长
- double sdtjsc = 0;//手动停机时长
- double zcfdsc = 0;//正常发电时长
- double fdjclsc = 0;//发电降出力时长
- double gzsc = 0;//故障时长
- double gzslsc = 0;//故障受累时长
- double jxsc = 0;//检修时长
- double jxslsc = 0;//检修受累时长
- double xdjclsc = 0;//限电降出力时长
- double xdtjsc = 0;//限电停机时长
- double dwslsc = 0;//电网受累时长
- double hjslsc = 0;//环境受累时长
- double txzdsc = 0;//通讯中断时长
- double sblxsc = 0;//设备离线时长
- Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
- if(!wtls.isEmpty())
- {
- for (ProBasicEquipment wt : wtls) {
- lastState = -1;//上一分钟状态
- Map<String, ProBasicEquipmentPoint> aimap = wtpAimap.get(wt.getId());
- if (aimap.containsKey(ContantXk.MXZT)) {
- ProBasicEquipmentPoint point = aimap.get(ContantXk.MXZT);
- //按照分钟时间进行统计状态快照值
- List<PointData> pointls = edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime() / 1000, end.getTime() / 1000);
- if (!pointls.isEmpty()) {
- for (PointData po : pointls) {
- if (po.getPointValueInDouble() == 0) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //待机时长加1分钟
- djsc++;
- } else if (po.getPointValueInDouble() == 1) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //手动停机时长加1分钟
- sdtjsc++;
- } else if (po.getPointValueInDouble() == 2) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //正常发电时长加1分钟
- zcfdsc++;
- } else if (po.getPointValueInDouble() == 3) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //发电降出力时长加1分钟
- fdjclsc++;
- } else if (po.getPointValueInDouble() == 4) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //故障时长加1分钟
- gzsc++;
- } else if (po.getPointValueInDouble() == 5) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //故障受累时长加1分钟
- gzslsc++;
- } else if (po.getPointValueInDouble() == 6) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //检修时长加1分钟
- jxsc++;
- } else if (po.getPointValueInDouble() == 7) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //检修受累时长加1分钟
- jxslsc++;
- } else if (po.getPointValueInDouble() == 8) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //限电降出力时长加1分钟
- xdjclsc++;
- } else if (po.getPointValueInDouble() == 9) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //限电停机时长加1分钟
- xdtjsc++;
- } else if (po.getPointValueInDouble() == 10) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //电网受累时长加1分钟
- dwslsc++;
- } else if (po.getPointValueInDouble() == 11) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //环境受累时长加1分钟
- hjslsc++;
- } else if (po.getPointValueInDouble() == 12) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //通讯中断时长加1分钟
- txzdsc++;
- } else if (po.getPointValueInDouble() == 13) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //设备离线时长加1分钟
- sblxsc++;
- }
- }
- }
- }
- }
- }
- //日合计故障小时(明细)
- pewp.setRhjgzxsmx(new BigDecimal(gzsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计场内受累故障小时(明细)
- pewp.setRhjcnslgzxsmx(new BigDecimal(gzslsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计检修小时(明细)
- pewp.setRhjjxxsmx(new BigDecimal(jxsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计场内受累检修小时(明细)
- pewp.setRhjcnsljxxsmx(new BigDecimal(jxslsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计待机小时(明细)
- pewp.setRhjdjxsmx(new BigDecimal(djsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计缺陷降出力小时(明细)
- pewp.setRhjqxjclxsmx(new BigDecimal(fdjclsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计手动停机小时(明细)
- pewp.setRhjsdtjxsmx(new BigDecimal(sdtjsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计性能小时(明细)
- pewp.setRhjbwxsmx(new BigDecimal(zcfdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计限电停机小时(明细)
- pewp.setRhjxdtjxsmx(new BigDecimal(xdtjsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计限电降出力小时(明细)
- pewp.setRhjxdjclxsmx(new BigDecimal(xdjclsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计场外受累电网小时(明细)
- pewp.setRhjcwsldwxsmx(new BigDecimal(dwslsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计场外受累电网小时(明细)
- pewp.setRhjcwsltqxsmx(new BigDecimal(hjslsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计通讯中断小时(明细)
- pewp.setRhjtxzdxsmx(new BigDecimal(txzdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计离线小时(明细)
- pewp.setRhjlxxsmx(new BigDecimal(sblxsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //*******************************************日信息统计*********************************************************/
- //*******************************************月信息统计*********************************************************/
- if (pepidls.isEmpty()) {
- setLossHoursMonth(pewp);
- } else {
- ProEconPowerstationInfoDay2 pepid = pepidls.get(0);
- //月合计故障小时(明细)
- pewp.setYhjgzxsmx(StringUtils.round(pepid.getYhjgzxsmx() + pewp.getRhjgzxsmx(), 2));
- //月合计场内受累故障小时(明细)
- pewp.setYhjcnslgzxsmx(StringUtils.round(pepid.getYhjcnslgzxsmx() + pewp.getRhjcnslgzxsmx(), 2));
- //月合计检修小时(明细)
- pewp.setYhjjxxsmx(StringUtils.round(pepid.getYhjjxxsmx() + pewp.getRhjjxxsmx(), 2));
- //月合计场内受累检修小时(明细)
- pewp.setYhjcnsljxxsmx(StringUtils.round(pepid.getYhjcnsljxxsmx() + pewp.getRhjcnsljxxsmx(), 2));
- //月合计待机小时(明细)
- pewp.setYhjdjxsmx(StringUtils.round(pepid.getYhjdjxsmx() + pewp.getRhjdjxsmx(), 2));
- //月合计缺陷降出力小时(明细)
- pewp.setYhjqxjclxsmx(StringUtils.round(pepid.getYhjqxjclxsmx() + pewp.getRhjqxjclxsmx(), 2));
- //月合计手动停机小时(明细)
- pewp.setYhjsdtjxsmx(StringUtils.round(pepid.getYhjsdtjxsmx() + pewp.getRhjsdtjxsmx(), 2));
- //月合计性能小时(明细)
- pewp.setYhjbwxsmx(StringUtils.round(pepid.getYhjbwxsmx() + pewp.getRhjbwxsmx(), 2));
- //月合计限电停机小时(明细)
- pewp.setYhjxdtjxsmx(StringUtils.round(pepid.getYhjxdtjxsmx() + pewp.getRhjxdtjxsmx(), 2));
- //月合计限电降出力小时(明细)
- pewp.setYhjxdjclxsmx(StringUtils.round(pepid.getYhjxdjclxsmx() + pewp.getRhjxdjclxsmx(), 2));
- //月合计场外受累电网小时(明细)
- pewp.setYhjcwsldwxsmx(StringUtils.round(pepid.getYhjcwsldwxsmx() + pewp.getRhjcwsldwxsmx(), 2));
- //月合计场外受累电网小时(明细)
- pewp.setYhjcwsltqxsmx(StringUtils.round(pepid.getYhjcwsltqxsmx() + pewp.getRhjcwsltqxsmx(), 2));
- //月合计通讯中断小时(明细)
- pewp.setYhjtxzdxsmx(StringUtils.round(pepid.getYhjtxzdxsmx() + pewp.getRhjtxzdxsmx(), 2));
- //月合计离线小时(明细)
- pewp.setYhjlxxsmx(StringUtils.round(pepid.getYhjlxxsmx() + pewp.getRhjlxxsmx(), 2));
- }
- //*******************************************月信息统计*********************************************************/
- //*******************************************年信息统计*********************************************************/
- if (pepidls.isEmpty()) {
- setLossHoursYear(pewp);
- } else {
- ProEconPowerstationInfoDay2 pepid = pepidls.get(0);
- //年合计故障小时(明细)
- pewp.setNhjgzxsmx(StringUtils.round(pepid.getNhjgzxsmx() + pewp.getRhjgzxsmx(), 2));
- //年合计场内受累故障小时(明细)
- pewp.setNhjcnslgzxsmx(StringUtils.round(pepid.getNhjcnslgzxsmx() + pewp.getRhjcnslgzxsmx(), 2));
- //年合计检修小时(明细)
- pewp.setNhjjxxsmx(StringUtils.round(pepid.getNhjjxxsmx() + pewp.getRhjjxxsmx(), 2));
- //年合计场内受累检修小时(明细)
- pewp.setNhjcnsljxxsmx(StringUtils.round(pepid.getNhjcnsljxxsmx() + pewp.getRhjcnsljxxsmx(), 2));
- //年合计待机小时(明细)
- pewp.setNhjdjxsmx(StringUtils.round(pepid.getNhjdjxsmx() + pewp.getRhjdjxsmx(), 2));
- //年合计缺陷降出力小时(明细)
- pewp.setNhjqxjclxsmx(StringUtils.round(pepid.getNhjqxjclxsmx() + pewp.getRhjqxjclxsmx(), 2));
- //年合计手动停机小时(明细)
- pewp.setNhjsdtjxsmx(StringUtils.round(pepid.getNhjsdtjxsmx() + pewp.getRhjsdtjxsmx(), 2));
- //年合计性能小时(明细)
- pewp.setNhjbwxsmx(StringUtils.round(pepid.getNhjbwxsmx() + pewp.getRhjbwxsmx(), 2));
- //年合计限电停机小时(明细)
- pewp.setNhjxdtjxsmx(StringUtils.round(pepid.getNhjxdtjxsmx() + pewp.getRhjxdtjxsmx(), 2));
- //年合计限电降出力小时(明细)
- pewp.setNhjxdjclxsmx(StringUtils.round(pepid.getNhjxdjclxsmx() + pewp.getRhjxdjclxsmx(), 2));
- //年合计场外受累电网小时(明细)
- pewp.setNhjcwsldwxsmx(StringUtils.round(pepid.getNhjcwsldwxsmx() + pewp.getRhjcwsldwxsmx(), 2));
- //年合计场外受累电网小时(明细)
- pewp.setNhjcwsltqxsmx(StringUtils.round(pepid.getNhjcwsltqxsmx() + pewp.getRhjcwsltqxsmx(), 2));
- //年合计通讯中断小时(明细)
- pewp.setNhjtxzdxsmx(StringUtils.round(pepid.getNhjtxzdxsmx() + pewp.getRhjtxzdxsmx(), 2));
- //年合计离线小时(明细)
- pewp.setNhjlxxsmx(StringUtils.round(pepid.getNhjlxxsmx() + pewp.getRhjlxxsmx(), 2));
- }
- }
- private static void setLossHoursYear(ProEconPowerstationInfoDay2 pewp) {
- //年合计故障小时(明细)
- pewp.setNhjgzxsmx(pewp.getRhjgzxsmx());
- //年合计场内受累故障小时(明细)
- pewp.setNhjcnslgzxsmx(pewp.getRhjcnslgzxsmx());
- //年合计检修小时(明细)
- pewp.setNhjjxxsmx(pewp.getRhjjxxsmx());
- //年合计场内受累检修小时(明细)
- pewp.setNhjcnsljxxsmx(pewp.getRhjcnsljxxsmx());
- //年合计待机小时(明细)
- pewp.setNhjdjxsmx(pewp.getRhjdjxsmx());
- //年合计缺陷降出力小时(明细)
- pewp.setNhjqxjclxsmx(pewp.getRhjqxjclxsmx());
- //年合计手动停机小时(明细)
- pewp.setNhjsdtjxsmx(pewp.getRhjsdtjxsmx());
- //年合计性能小时(明细)
- pewp.setNhjbwxsmx(pewp.getRhjbwxsmx());
- //年合计限电停机小时(明细)
- pewp.setNhjxdtjxsmx(pewp.getRhjxdtjxsmx());
- //年合计限电降出力小时(明细)
- pewp.setNhjxdjclxsmx(pewp.getRhjxdjclxsmx());
- //年合计场外受累电网小时(明细)
- pewp.setNhjcwsldwxsmx(pewp.getRhjcwsldwxsmx());
- //年合计场外受累电网小时(明细)
- pewp.setNhjcwsltqxsmx(pewp.getRhjcwsltqxsmx());
- //年合计通讯中断小时(明细)
- pewp.setNhjtxzdxsmx(pewp.getRhjtxzdxsmx());
- //年合计离线小时(明细)
- pewp.setNhjlxxsmx(pewp.getRhjlxxsmx());
- }
- private static void setLossHoursMonth(ProEconPowerstationInfoDay2 pewp) {
- //月合计故障小时(明细)
- pewp.setYhjgzxsmx(pewp.getRhjgzxsmx());
- //月合计场内受累故障小时(明细)
- pewp.setYhjcnslgzxsmx(pewp.getRhjcnslgzxsmx());
- //月合计检修小时(明细)
- pewp.setYhjjxxsmx(pewp.getRhjjxxsmx());
- //月合计场内受累检修小时(明细)
- pewp.setYhjcnsljxxsmx(pewp.getRhjcnsljxxsmx());
- //月合计待机小时(明细)
- pewp.setYhjdjxsmx(pewp.getRhjdjxsmx());
- //月合计缺陷降出力小时(明细)
- pewp.setYhjqxjclxsmx(pewp.getRhjqxjclxsmx());
- //月合计手动停机小时(明细)
- pewp.setYhjsdtjxsmx(pewp.getRhjsdtjxsmx());
- //月合计性能小时(明细)
- pewp.setYhjbwxsmx(pewp.getRhjbwxsmx());
- //月合计限电停机小时(明细)
- pewp.setYhjxdtjxsmx(pewp.getRhjxdtjxsmx());
- //月合计限电降出力小时(明细)
- pewp.setYhjxdjclxsmx(pewp.getRhjxdjclxsmx());
- //月合计场外受累电网小时(明细)
- pewp.setYhjcwsldwxsmx(pewp.getRhjcwsldwxsmx());
- //月合计场外受累电网小时(明细)
- pewp.setYhjcwsltqxsmx(pewp.getRhjcwsltqxsmx());
- //月合计通讯中断小时(明细)
- pewp.setYhjtxzdxsmx(pewp.getRhjtxzdxsmx());
- //月合计离线小时(明细)
- pewp.setYhjlxxsmx(pewp.getRhjlxxsmx());
- }
- private static void setLossHoursMonthSimple(ProEconPowerstationInfoDay2 pewp) {
- //月合计待机小时
- pewp.setYhjdjxs(pewp.getRhjdjxs());
- //月合计维护停机小时
- pewp.setYhjjxtjxs(pewp.getRhjjxtjxs());
- // 月合计故障停机小时
- pewp.setYhjgztjxs(pewp.getRhjgztjxs());
- //月合计运行小时
- pewp.setYhjyxxs(pewp.getRhjyxxs());
- //月合计限电小时
- pewp.setYhjxdxs(pewp.getRhjxdxs());
- //月合计通讯中断小时
- pewp.setYhjtxzdxs(pewp.getRhjtxzdxs());
- //月合计受累小时
- pewp.setYhjslxs(pewp.getRhjslxs());
- }
- private static void setLossHoursYearSimple(ProEconPowerstationInfoDay2 pewp) {
- //年合计待机小时
- pewp.setNhjdjxs(pewp.getRhjdjxs());
- //年合计维护停机小时
- pewp.setNhjjxtjxs(pewp.getRhjjxtjxs());
- // 年合计故障小时
- pewp.setNhjgztjxs(pewp.getRhjgztjxs());
- //年合计运行小时
- pewp.setNhjyxxs(pewp.getRhjyxxs());
- //年合计限电小时
- pewp.setNhjxdxs(pewp.getRhjxdxs());
- //年合计通讯中断小时
- pewp.setNhjtxzdxs(pewp.getRhjtxzdxs());
- //年合计受累小时
- pewp.setNhjslxs(pewp.getRhjslxs());
- }
- private void calSimple(ProEconPowerstationInfoDay2 pewp, Date end, Date begin, List<ProBasicEquipment> wtls, List<ProEconPowerstationInfoDay2> pepidls) throws Exception {
- // 0 待机
- // 1 运行
- // 2 故障
- // 3 检修
- // 4 限电
- // 5 受累
- // 6 离线
- //*******************************************日信息统计*********************************************************/
- double lastState = -1;//上一分钟状态
- double djsc = 0;//待机时长
- double zcfdsc = 0;//正常发电时长
- double gzsc = 0;//故障时长
- double jxsc = 0;//检修时长
- double xdtjsc = 0;//限电停机时长
- double slsc = 0;//受累时长
- double txzdsc = 0;//通讯中断时长
- Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
- for (ProBasicEquipment wt : wtls) {
- Map<String, ProBasicEquipmentPoint> aimap = wtpAimap.get(wt.getId());
- if (aimap.containsKey(ContantXk.SBZT)) {
- ProBasicEquipmentPoint point = aimap.get(ContantXk.SBZT);
- //按照分钟时间进行统计状态快照值
- List<PointData> pointls = edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime() / 1000, end.getTime() / 1000);
- if (!pointls.isEmpty()) {
- for (PointData po : pointls) {
- if (po.getPointValueInDouble() == 0) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //待机时长加1分钟
- djsc++;
- } else if (po.getPointValueInDouble() == 1) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //正常发电时长加1分钟
- zcfdsc++;
- } else if (po.getPointValueInDouble() == 2) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //故障时长加1分钟
- gzsc++;
- } else if (po.getPointValueInDouble() == 3) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //检修时长加1分钟
- jxsc++;
- } else if (po.getPointValueInDouble() == 4) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //限电停机时长加1分钟
- xdtjsc++;
- } else if (po.getPointValueInDouble() == 5) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //受累时长加1分钟
- slsc++;
- } else if (po.getPointValueInDouble() == 6) {
- if (lastState != po.getPointValueInDouble()) {
- //将当前状态保存到上一分钟状态
- lastState = po.getPointValueInDouble();
- }
- //通讯中断时长加1分钟
- txzdsc++;
- }
- }
- }
- }
- }
- //日合计待机小时
- pewp.setRhjdjxs(new BigDecimal(gzsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计维护停机小时
- pewp.setRhjjxtjxs(new BigDecimal(jxsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- // 日合计待机小时
- pewp.setRhjdjxs(new BigDecimal(djsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计运行小时
- pewp.setRhjyxxs(new BigDecimal(zcfdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计限电小时
- pewp.setRhjxdxs(new BigDecimal(xdtjsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计通讯中断小时
- pewp.setRhjtxzdxs(new BigDecimal(txzdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //日合计受累小时
- pewp.setRhjslxs(new BigDecimal(slsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
- //*******************************************日信息统计*********************************************************/
- //*******************************************月信息统计*********************************************************/
- if (pepidls.isEmpty()) {
- setLossHoursMonthSimple(pewp);
- } else {
- ProEconPowerstationInfoDay2 pepid = pepidls.get(0);
- //月合计待机小时
- pewp.setYhjdjxs(StringUtils.round(pepid.getYhjdjxs() + pewp.getRhjdjxs(), 2));
- //月合计维护停机小时
- pewp.setYhjjxtjxs(StringUtils.round(pepid.getYhjjxtjxs() + pewp.getRhjjxtjxs(), 2));
- // 月合计故障小时
- pewp.setYhjgztjxs(StringUtils.round(pepid.getYhjgztjxs() + pewp.getRhjgztjxs(), 2));
- //月合计运行小时
- pewp.setYhjyxxs(StringUtils.round(pepid.getYhjyxxs() + pewp.getRhjyxxs(), 2));
- //月合计限电小时
- pewp.setYhjxdxs(StringUtils.round(pepid.getYhjxdxs() + pewp.getRhjxdxs(), 2));
- //月合计通讯中断小时
- pewp.setYhjtxzdxs(StringUtils.round(pepid.getYhjtxzdxs() + pewp.getRhjtxzdxs(), 2));
- //月合计受累小时
- pewp.setYhjslxs(StringUtils.round(pepid.getYhjslxs() + pewp.getRhjslxs(), 2));
- }
- //*******************************************月信息统计*********************************************************/
- //*******************************************年信息统计*********************************************************/
- if (pepidls.isEmpty()) {
- setLossHoursYearSimple(pewp);
- } else {
- ProEconPowerstationInfoDay2 pepid = pepidls.get(0);
- //年合计待机小时
- pewp.setNhjdjxs(StringUtils.round(pepid.getNhjdjxs() + pewp.getRhjdjxs(), 2));
- //年合计维护停机小时
- pewp.setNhjjxtjxs(StringUtils.round(pepid.getNhjjxtjxs() + pewp.getRhjjxtjxs(), 2));
- // 年合计故障小时
- pewp.setNhjgztjxs(StringUtils.round(pepid.getNhjgztjxs() + pewp.getRhjgztjxs(), 2));
- //年合计运行小时
- pewp.setNhjyxxs(StringUtils.round(pepid.getNhjyxxs() + pewp.getRhjyxxs(), 2));
- //年合计限电小时
- pewp.setNhjxdxs(StringUtils.round(pepid.getNhjxdxs() + pewp.getRhjxdxs(), 2));
- //年合计通讯中断小时
- pewp.setNhjtxzdxs(StringUtils.round(pepid.getNhjtxzdxs() + pewp.getRhjtxzdxs(), 2));
- //年合计受累小时
- pewp.setNhjslxs(StringUtils.round(pepid.getNhjslxs() + pewp.getRhjslxs(), 2));
- }
- //*******************************************年信息统计*********************************************************/
- }
- }
|