| | |
| | | package com.iailab.module.ansteel.api.controller.admin; |
| | | |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.iailab.framework.common.exception.enums.GlobalErrorCodeConstants; |
| | | import com.iailab.framework.common.pojo.CommonResult; |
| | |
| | | import com.iailab.module.ansteel.api.dto.*; |
| | | import com.iailab.module.ansteel.api.vo.PowerCapacitorHisPageReqVO; |
| | | import com.iailab.module.ansteel.api.vo.PowerMaxDemandMainPageReqVO; |
| | | import com.iailab.module.ansteel.common.constant.CommonConstant; |
| | | import com.iailab.module.ansteel.common.enums.ProcessConfDataTypeEnum; |
| | | import com.iailab.module.ansteel.common.enums.TransferTypeEnum; |
| | | import com.iailab.module.ansteel.common.utils.DecimalUtil; |
| | | import com.iailab.module.ansteel.common.utils.PowerUtil; |
| | | import com.iailab.module.ansteel.power.entity.*; |
| | | import com.iailab.module.ansteel.power.service.*; |
| | | import com.iailab.module.data.api.point.DataPointApi; |
| | |
| | | import com.iailab.module.data.api.point.dto.ApiPointValueQueryDTO; |
| | | import com.iailab.module.data.api.point.dto.ApiPointsValueQueryDTO; |
| | | import com.iailab.module.model.api.mcs.McsApi; |
| | | import com.iailab.module.model.api.mcs.dto.ChartParamDTO; |
| | | import com.iailab.module.model.api.mcs.dto.PredictLastValueReqVO; |
| | | import com.iailab.module.model.api.mdk.MdkApi; |
| | | import com.iailab.module.model.api.mdk.dto.MdkScheduleReqDTO; |
| | | import com.iailab.module.model.api.mdk.dto.MdkScheduleRespDTO; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.util.CollectionUtils; |
| | | import org.springframework.util.ObjectUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.lang.reflect.Array; |
| | | import java.math.BigDecimal; |
| | | import java.util.*; |
| | | import java.util.function.Function; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import static com.iailab.framework.common.pojo.CommonResult.error; |
| | |
| | | private McsApi mcsApi; |
| | | |
| | | @Autowired |
| | | private MdkApi mdkApi; |
| | | |
| | | @Autowired |
| | | private PowerCapacitorHisService powerCapacitorHisService; |
| | | |
| | | @Autowired |
| | |
| | | @Autowired |
| | | private PowerPriceMainService powerPriceMainService; |
| | | |
| | | @Autowired |
| | | private PowerFactorControlService powerFactorControlService; |
| | | |
| | | public static final String VALUE = "value"; |
| | | |
| | | public static final String TIME = "time"; |
| | | |
| | | private String pointNo = "F0000201825"; |
| | | |
| | | @GetMapping("/net-factor/list") |
| | | @Operation(summary = "功率因数-电网拓扑") |
| | |
| | | powerNetFactorDTO.setQstatus(1); |
| | | } else if (entity.getQLimitH() != null && curQ.compareTo(entity.getQLimitH()) > 0) { |
| | | powerNetFactorDTO.setQstatus(1); |
| | | } |
| | | } |
| | | |
| | | // 日功率因数 |
| | | if (StringUtils.isNotBlank(entity.getPDay()) && StringUtils.isNotBlank(entity.getQDay())) { |
| | | List<String> pointNos = new ArrayList<>(); |
| | | pointNos.add(entity.getPDay()); |
| | | pointNos.add(entity.getQDay()); |
| | | Map<String, Object> pointsRealValue = dataPointApi.queryPointsRealValue(pointNos); |
| | | if (!CollectionUtils.isEmpty(pointsRealValue)) { |
| | | double pValue = new BigDecimal(pointsRealValue.get(entity.getPDay()).toString()).doubleValue(); |
| | | double qValue = new BigDecimal(pointsRealValue.get(entity.getQDay()).toString()).doubleValue(); |
| | | powerNetFactorDTO.setDayCos(new BigDecimal(PowerUtil.calculateCos(pValue, qValue)).setScale(2, BigDecimal.ROUND_HALF_UP)); |
| | | } |
| | | } |
| | | |
| | | // 月功率因数 |
| | | if (StringUtils.isNotBlank(entity.getPMon()) && StringUtils.isNotBlank(entity.getQMon())) { |
| | | List<String> pointNos = new ArrayList<>(); |
| | | pointNos.add(entity.getPMon()); |
| | | pointNos.add(entity.getQMon()); |
| | | Map<String, Object> pointsRealValue = dataPointApi.queryPointsRealValue(pointNos); |
| | | if (!CollectionUtils.isEmpty(pointsRealValue)) { |
| | | double pValue = new BigDecimal(pointsRealValue.get(entity.getPMon()).toString()).doubleValue(); |
| | | double qValue = new BigDecimal(pointsRealValue.get(entity.getQMon()).toString()).doubleValue(); |
| | | powerNetFactorDTO.setMonthCos(new BigDecimal(PowerUtil.calculateCos(pValue, qValue)).setScale(2, BigDecimal.ROUND_HALF_UP)); |
| | | } |
| | | } |
| | | result.add(powerNetFactorDTO); |
| | |
| | | if (pv.compareTo(BigDecimal.ZERO) <= 0) { |
| | | continue; |
| | | } |
| | | onCount ++; |
| | | onCount++; |
| | | } |
| | | dto.setOnCount(onCount); |
| | | String remark = String.format("共%d台,在投%d台", DecimalUtil.toBigDecimal(entity.getMainCount()).intValue(), onCount); |
| | |
| | | pointNos.add(netDropdown.getExt1()); |
| | | } |
| | | } |
| | | for(PowerNetDropdownEntity netDropdown : dropdownList) { |
| | | for (PowerNetDropdownEntity netDropdown : dropdownList) { |
| | | PowerDemandQueryRespDTO dto = ConvertUtils.sourceToTarget(netDropdown, PowerDemandQueryRespDTO.class); |
| | | dto.setCurDemand(null); |
| | | result.add(dto); |
| | |
| | | log.info("pointsHisValues is null"); |
| | | return success(result); |
| | | } |
| | | for(PowerDemandQueryRespDTO respDTO : result) { |
| | | for (PowerDemandQueryRespDTO respDTO : result) { |
| | | if (StringUtils.isBlank(demandPointMap.get(respDTO.getNodeCode()))) { |
| | | continue; |
| | | } |
| | |
| | | } |
| | | Map<String, Object> valueMap = hisList.get(hisList.size() - 1); |
| | | respDTO.setDataTime(DateUtils.parse(valueMap.get("time").toString(), DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)); |
| | | respDTO.setCurDemand( DecimalUtil.toBigDecimal(valueMap.get("value"))); |
| | | respDTO.setCurDemand(DecimalUtil.toBigDecimal(valueMap.get("value"))); |
| | | } |
| | | return success(result); |
| | | } |
| | |
| | | @PostMapping("/power-price/update") |
| | | @Operation(summary = "修改峰谷平电价信息") |
| | | public CommonResult<Boolean> updatePowerPriceList(@RequestBody PowerPriceMainDTO mainDTO) { |
| | | if(StringUtils.isBlank(mainDTO.getId())) { |
| | | if (StringUtils.isBlank(mainDTO.getId())) { |
| | | return error(GlobalErrorCodeConstants.BAD_REQUEST); |
| | | } |
| | | return success(powerPriceMainService.update(mainDTO)); |
| | | } |
| | | |
| | | @PostMapping("/factor-control/list") |
| | | @Operation(summary = "功率因数调整结果查询") |
| | | public CommonResult<List<PowerFactorControlDTO>> powerFactorControlList(@RequestBody PowerFactorReqVO powerFactorReqVO) { |
| | | List<PowerFactorControlDTO> result = new ArrayList<>(); |
| | | Map<String, Object> chartMap = new HashMap<>(); |
| | | List<ChartParamDTO> chartList = mcsApi.getChartParamList(CommonConstant.POWER_CODE); |
| | | chartList.forEach(item -> { |
| | | chartMap.put(item.getParamName(), item.getParamCode()); |
| | | }); |
| | | List<String> contentList = powerFactorReqVO.getContentList(); |
| | | if (CollectionUtils.isEmpty(contentList)) { |
| | | log.info("contentList为空"); |
| | | return new CommonResult<>(); |
| | | } |
| | | List<Integer> contentListNew = new ArrayList<>(); |
| | | contentList.forEach(item -> { |
| | | chartMap.forEach((key, value) -> { |
| | | if (item.contains(key)) { |
| | | contentListNew.add(Integer.parseInt(value.toString())); |
| | | } |
| | | }); |
| | | }); |
| | | |
| | | Calendar calendar = Calendar.getInstance(); |
| | | calendar.set(Calendar.MILLISECOND, 0); |
| | | calendar.set(Calendar.SECOND, 0); |
| | | calendar.set(Calendar.MINUTE, 0); |
| | | MdkScheduleReqDTO dto = new MdkScheduleReqDTO(); |
| | | dto.setScheduleTime(calendar.getTime()); |
| | | dto.setScheduleCode("AnsteelOffPowerAC"); |
| | | Map<String, String> dynamicSettings = new HashMap<>(); |
| | | dynamicSettings.put("option_param", JSONArray.toJSONString(contentListNew.stream().toArray(Integer[]::new))); |
| | | List<String> cosParam = new ArrayList<>(); |
| | | cosParam.add(powerFactorReqVO.getAdjustValueCcpp().toString()); |
| | | cosParam.add(powerFactorReqVO.getAdjustValue135().toString()); |
| | | cosParam.add(powerFactorReqVO.getAdjustValueTrt().toString()); |
| | | dynamicSettings.put("cos_param", JSONArray.toJSONString(cosParam)); |
| | | dto.setDynamicSettings(dynamicSettings); |
| | | |
| | | log.info("调度方案开始执行," + JSONObject.toJSONString(dto)); |
| | | // MdkScheduleRespDTO mdkScheduleRespDTO = mdkApi.doSchedule(dto); |
| | | //log.info("调度方案执行完成," + mdkScheduleRespDTO); |
| | | |
| | | /*String statusCode = mdkScheduleRespDTO.getStatusCode(); |
| | | if (!CommonConstant.MDK_STATUS_100.equals(statusCode)) { |
| | | log.info("statusCode=" + statusCode); |
| | | return CommonResult.error(GlobalErrorCodeConstants.UNKNOWN.getCode(), "工序异常,无计算结果"); |
| | | } |
| | | |
| | | Map<String, Object> data = mdkScheduleRespDTO.getResult();*/ |
| | | // 调整后的功率因数 |
| | | // List<String> adjustCosList = Arrays.asList(data.get("adjust_cos").toString().split(",")); |
| | | String fakeData = "[0.39,0.98,0.98,0 91,1.0,0.93,0.86,0.89,0.98,0.9,0.97,0.89,0.84,0.91]"; |
| | | List<BigDecimal> adjustCosList = JSONArray.parseArray(fakeData, BigDecimal.class); |
| | | |
| | | // 无功管控结果 |
| | | BigDecimal back_wugong_buchang = new BigDecimal(36.92); |
| | | adjustCosList.add(back_wugong_buchang); |
| | | |
| | | Map<Integer, BigDecimal> adjustCosMap = new HashMap<>(); |
| | | for (int i = 1; i <= adjustCosList.size(); i++) { |
| | | adjustCosMap.put(i, adjustCosList.get(i)); |
| | | } |
| | | |
| | | List<PowerFactorControlEntity> list = powerFactorControlService.list(); |
| | | if (CollectionUtils.isEmpty(list)) { |
| | | log.info("list is empty"); |
| | | return success(result); |
| | | } |
| | | |
| | | for (int i = 1; i <= list.size(); i++) { |
| | | PowerFactorControlEntity entity = list.get(i); |
| | | PowerFactorControlDTO controlDTO = new PowerFactorControlDTO(); |
| | | controlDTO.setName(entity.getName()); |
| | | controlDTO.setSort(entity.getSort()); |
| | | try { |
| | | // 预测结果 |
| | | switch (ProcessConfDataTypeEnum.getEumByCode(entity.getDataType())) { |
| | | case DATAPOINT: |
| | | List<String> params1 = new ArrayList<>(); |
| | | params1.add(entity.getPredResult()); |
| | | Map<String, Object> pointValues = dataPointApi.queryPointsRealValue(params1); |
| | | if (!CollectionUtils.isEmpty(pointValues)) { |
| | | controlDTO.setPredResult(DecimalUtil.toBigDecimal(pointValues.get(entity.getPredResult()))); |
| | | } |
| | | break; |
| | | case PREDICTVALUE: |
| | | PredictLastValueReqVO reqVO = new PredictLastValueReqVO(); |
| | | calendar.set(calendar.HOUR_OF_DAY, 0); |
| | | reqVO.setPredictTime(calendar.getTime()); |
| | | List<String[]> itemNos = new ArrayList<>(); |
| | | if (StringUtils.isNotBlank(entity.getPredResult())) { |
| | | itemNos.add(entity.getPredResult().split(",")); |
| | | } |
| | | reqVO.setItemNos(itemNos); |
| | | Map<String, BigDecimal> preValues = mcsApi.getPredictValueByTime(reqVO); |
| | | if (preValues.get(entity.getPredResult()) != null) { |
| | | controlDTO.setPredResult(new BigDecimal(preValues.get(entity.getPredResult()).toString())); |
| | | } |
| | | break; |
| | | default: |
| | | break; |
| | | } |
| | | |
| | | // 管控结果 |
| | | if (adjustCosMap.containsKey(entity.getCosIndex())) { |
| | | controlDTO.setAdjustCos(adjustCosMap.get(entity.getCosIndex())); |
| | | } |
| | | } catch (Exception ex) { |
| | | log.info(controlDTO.getName() + "获取预测值异常," + ex.getMessage()); |
| | | ex.printStackTrace(); |
| | | } |
| | | result.add(controlDTO); |
| | | } |
| | | log.info("result===" + JSONObject.toJSONString(result)); |
| | | return success(result); |
| | | } |
| | | } |