|
@@ -0,0 +1,155 @@
|
|
|
+package com.gyee.runeconomy.service.Comprehensive;
|
|
|
+
|
|
|
+import com.gyee.common.util.DateUtils;
|
|
|
+import com.gyee.runeconomy.init.CacheContext;
|
|
|
+import com.gyee.runeconomy.model.auto.ProBasicPowerstation;
|
|
|
+import com.gyee.runeconomy.model.auto.ProEconPowerstationInfoDay1;
|
|
|
+import com.gyee.runeconomy.model.auto.ProEconPowerstationInfoDay5;
|
|
|
+import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay1Service;
|
|
|
+import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay5Service;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.util.Calendar;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class PVSystemEfficiencyCalculator {
|
|
|
+ @Resource
|
|
|
+ private IProEconPowerstationInfoDay5Service proEconPowerstationInfoDay5Service;
|
|
|
+ @Resource
|
|
|
+ private IProEconPowerstationInfoDay1Service proEconPowerstationInfoDay1Service;
|
|
|
+
|
|
|
+ public Map<String, Object> planvalue() throws Exception {
|
|
|
+
|
|
|
+ String year = "2023";
|
|
|
+ //参数所传年份
|
|
|
+ int currentyear = Integer.parseInt(year);
|
|
|
+ int ts = 1;
|
|
|
+ Calendar cal = Calendar.getInstance();
|
|
|
+ int dqnf = cal.get(Calendar.YEAR);//本年
|
|
|
+
|
|
|
+ // 设置为本年一月一号0点
|
|
|
+ Calendar calendar1 = Calendar.getInstance();
|
|
|
+ calendar1.setTime(new Date());
|
|
|
+ calendar1.set(Calendar.YEAR, currentyear); // 根据当前年份变化
|
|
|
+ calendar1.set(Calendar.MONTH, Calendar.JANUARY); // 0表示一月
|
|
|
+ calendar1.set(Calendar.DAY_OF_MONTH, 1);
|
|
|
+ calendar1.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
+ calendar1.set(Calendar.MINUTE, 0);
|
|
|
+ calendar1.set(Calendar.SECOND, 0);
|
|
|
+ calendar1.set(Calendar.MILLISECOND, 0);
|
|
|
+ Date firstDayZeroHour = calendar1.getTime();
|
|
|
+
|
|
|
+ // 获取firstDayZeroHour的月份
|
|
|
+ Calendar calFirstDayZeroHour = Calendar.getInstance();
|
|
|
+ calFirstDayZeroHour.setTime(firstDayZeroHour);
|
|
|
+ int calFirstMonth = calFirstDayZeroHour.get(Calendar.MONTH) + 1;
|
|
|
+
|
|
|
+ //当前时间月份
|
|
|
+ Calendar calendar = Calendar.getInstance();
|
|
|
+ int currentMonth = calendar.get(Calendar.MONTH);
|
|
|
+ currentMonth = currentMonth + 1;
|
|
|
+
|
|
|
+ List<ProBasicPowerstation> wplsG = CacheContext.wplsG;
|
|
|
+
|
|
|
+
|
|
|
+ //计算场站级别
|
|
|
+ for (ProBasicPowerstation wp : wplsG) {
|
|
|
+
|
|
|
+ for (int i = 0; i < 12; i++) {
|
|
|
+
|
|
|
+ if (calFirstMonth == currentMonth && dqnf == currentyear) {
|
|
|
+ Calendar calendar5 = Calendar.getInstance();
|
|
|
+ ts = calendar5.get(Calendar.DAY_OF_MONTH);
|
|
|
+ } else {
|
|
|
+ // 获取当前月份的天数
|
|
|
+ ts = calFirstDayZeroHour.getActualMaximum(Calendar.DAY_OF_MONTH);
|
|
|
+ }
|
|
|
+
|
|
|
+ List<ProEconPowerstationInfoDay5> day5List = proEconPowerstationInfoDay5Service.getmax(wp.getId(), firstDayZeroHour);
|
|
|
+
|
|
|
+ List<ProEconPowerstationInfoDay1> rzqdls = proEconPowerstationInfoDay1Service.getmax(wp.getId(), firstDayZeroHour);
|
|
|
+
|
|
|
+
|
|
|
+ double solarRadiationWattsPerSquareMeter = 0.0; // 太阳能辐射,单位为W/m²
|
|
|
+ double actualPowerOutputKilowattHours = 0.0; // 实际发电量,单位为千瓦时(kWh)
|
|
|
+ double moduleCapacityKilowatts = 0.0; // 光伏模块额定容量,单位为千瓦(kW)
|
|
|
+ double pr = 0.0;
|
|
|
+ if (!day5List.isEmpty() && day5List != null) {
|
|
|
+ for (ProEconPowerstationInfoDay5 day : day5List) {
|
|
|
+ actualPowerOutputKilowattHours = day.getYfdldb().doubleValue();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (!rzqdls.isEmpty() && rzqdls != null) {
|
|
|
+ for (ProEconPowerstationInfoDay1 rz : rzqdls) {
|
|
|
+ solarRadiationWattsPerSquareMeter = rz.getYpjfs().doubleValue();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ moduleCapacityKilowatts = wp.getJrCapacity();
|
|
|
+
|
|
|
+ double expectedPowerOutputKilowattHours = calculateExpectedPowerOutput(solarRadiationWattsPerSquareMeter, moduleCapacityKilowatts,ts); // 预期发电量(kWh)
|
|
|
+ pr = calculatePR(actualPowerOutputKilowattHours, expectedPowerOutputKilowattHours); // 计算PR
|
|
|
+
|
|
|
+
|
|
|
+ System.out.println("太阳能辐射: " + solarRadiationWattsPerSquareMeter + " W/m²");
|
|
|
+ System.out.println("实际发电量: " + actualPowerOutputKilowattHours + " kWh");
|
|
|
+ System.out.println("光伏模块额定容量: " + moduleCapacityKilowatts + " kW");
|
|
|
+ System.out.println("预期发电量: " + expectedPowerOutputKilowattHours + " kWh");
|
|
|
+ System.out.println("光伏系统效率 (PR): " + pr + "%");
|
|
|
+
|
|
|
+ firstDayZeroHour = DateUtils.addMonths(firstDayZeroHour, 1);
|
|
|
+ calFirstDayZeroHour.setTime(firstDayZeroHour);
|
|
|
+ calFirstMonth = calFirstDayZeroHour.get(Calendar.MONTH) + 1;
|
|
|
+ ts = calFirstDayZeroHour.getActualMaximum(Calendar.DAY_OF_MONTH);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+
|
|
|
+ }
|
|
|
+// JSONObject radarData = new JSONObject();
|
|
|
+//
|
|
|
+// // 创建指标数据
|
|
|
+// JSONArray data = new JSONArray();
|
|
|
+// data.add(45.6); // 太阳能辐射
|
|
|
+// data.add(38.9); // 实际发电量
|
|
|
+// data.add(50.0); // 光伏模块额定容量
|
|
|
+// data.add(42.3); // 预期发电量
|
|
|
+// data.add(70.5); // 光伏系统效率
|
|
|
+//
|
|
|
+// // 设置雷达图的标签
|
|
|
+// JSONArray labels = new JSONArray();
|
|
|
+// labels.add("太阳能辐射");
|
|
|
+// labels.add("实际发电量");
|
|
|
+// labels.add("光伏模块额定容量");
|
|
|
+// labels.add("预期发电量");
|
|
|
+// labels.add("光伏系统效率");
|
|
|
+//
|
|
|
+// // 将数据和标签添加到雷达图数据中
|
|
|
+// radarData.put("data", data);
|
|
|
+// radarData.put("labels", labels);
|
|
|
+//
|
|
|
+// System.out.println(radarData);
|
|
|
+//
|
|
|
+//
|
|
|
+
|
|
|
+
|
|
|
+ // 计算预期发电量的方法
|
|
|
+ public static double calculateExpectedPowerOutput(double solarRadiationWattsPerSquareMeter, double moduleCapacityKilowatts,double ts) {
|
|
|
+ double hoursOfDaylight = 12.0; // 假设日照时间为12小时
|
|
|
+ //辐照度*容量
|
|
|
+ //
|
|
|
+ return (solarRadiationWattsPerSquareMeter * moduleCapacityKilowatts * hoursOfDaylight) / 1000;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 计算光伏系统效率PR的方法
|
|
|
+ public static double calculatePR(double actualPowerOutputKilowattHours, double expectedPowerOutputKilowattHours) {
|
|
|
+ if (expectedPowerOutputKilowattHours == 0){
|
|
|
+ expectedPowerOutputKilowattHours = 1;
|
|
|
+ }
|
|
|
+ //实际发电量/预期发电量
|
|
|
+ return (actualPowerOutputKilowattHours / expectedPowerOutputKilowattHours) * 100;
|
|
|
+ }
|
|
|
+}
|