|
@@ -481,7 +481,9 @@ public class GenreSetPushService {
|
|
|
// {
|
|
|
// rycfdl = rfdl * YCFDLXS;
|
|
|
// }
|
|
|
- double rycfdl = StringUtils.round(rfdl * YCFDLXS, 2);
|
|
|
+ int hour = Calendar.getInstance().get(Calendar.HOUR_OF_DAY) + 1;
|
|
|
+ double rycfdl = StringUtils.round((rfdl / hour) * 24, 2);
|
|
|
+// double rycfdl = StringUtils.round(rfdl * YCFDLXS, 2);
|
|
|
//预测电量临时算法=(月发电量+日预测发电量*(日历天数-当前日数))*预测发电量系数
|
|
|
c = Calendar.getInstance();
|
|
|
double yycfdl = (yfdl + rycfdl*(daynum-c.get(Calendar.DAY_OF_MONTH)))*YCFDLXS;
|