|
@@ -65,7 +65,10 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
// //便于观察,等待一段时间
|
|
|
|
|
|
try {
|
|
|
-
|
|
|
+ if(wt.getId().equals("SXJ_KGDL_BHB_F_WT_0005_EQ"))
|
|
|
+ {
|
|
|
+ System.out.println("");
|
|
|
+ }
|
|
|
if(CacheContext.wtpAimap.containsKey(wt.getId()))
|
|
|
{
|
|
|
Map<String, ProBasicEquipmentPoint> pointmap=CacheContext.wtpAimap.get(wt.getId());
|
|
@@ -188,7 +191,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
ProBasicEquipment wt=CacheContext.wtmap.get(pewp.getWindturbineId());
|
|
|
if(CacheContext.modelMap.containsKey(wt.getModelId()))
|
|
|
{
|
|
|
- powerProduction=CacheContext.modelMap.get(wt.getModelId()).getPowerProduction();
|
|
|
+ powerProduction=CacheContext.modelMap.get(wt.getModelId()).getPowerProduction();
|
|
|
}
|
|
|
}
|
|
|
double finalPowerProduction = powerProduction;
|
|
@@ -209,24 +212,39 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ double rfdl=0.0;
|
|
|
+ double rgzssdl=0.0;
|
|
|
+ double rcnslgzssdl=0.0;
|
|
|
+ double rjxssdl=0.0;
|
|
|
+ double rcnsljxssdl=0.0;
|
|
|
+ double rdjssdl=0.0;
|
|
|
+ double rqxjclssdl=0.0;
|
|
|
+ double rsdtjssdl=0.0;
|
|
|
+ double rxnssdl=0.0;
|
|
|
+ double rxdtjssdl=0.0;
|
|
|
+ double rxdjclssdl=0.0;
|
|
|
+ double rcwsldwssdl=0.0;
|
|
|
+ double rcwsltqssdl=0.0;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.RFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RFDL);
|
|
|
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日发电量
|
|
|
pewp.setRfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rfdl=pewp.getRfdl();
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.RKYDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RKYDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日可用电量
|
|
@@ -239,7 +257,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.RLLFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RLLFDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日理论发电量
|
|
@@ -252,46 +270,47 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.RGZSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RGZSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日故障损失电量
|
|
|
pewp.setRgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rgzssdl=pewp.getRgzssdl();
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.RCNSLGZSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RCNSLGZSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日场内受累故障损失电量
|
|
|
pewp.setRcnslgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rcnslgzssdl=pewp.getRcnslgzssdl();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.RJXSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RJXSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日检修损失电量
|
|
|
pewp.setRjxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rjxssdl=pewp.getRjxssdl();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.RCNSLJXSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RCNSLJXSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日场内受累检修损失电量
|
|
|
pewp.setRcnsljxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ rcnsljxssdl=pewp.getRcnsljxssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -299,58 +318,61 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.RDJSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RDJSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日待机损失电量
|
|
|
pewp.setRdjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rdjssdl=pewp.getRdjssdl();
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.RQXJCLSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RQXJCLSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日缺陷降出力损失电量
|
|
|
- pewp.setRqxjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ pewp.setRqxjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ rqxjclssdl=pewp.getRqxjclssdl();
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.RSDTJSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RSDTJSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日手动停机损失电量
|
|
|
pewp.setRsdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rsdtjssdl=pewp.getRsdtjssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.RXNSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RXNSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日性能损失电量
|
|
|
pewp.setRxnssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rxnssdl=pewp.getRxnssdl();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.RXDTJSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RXDTJSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日限电停机损失电量
|
|
|
pewp.setRxdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ rxdtjssdl=pewp.getRxdtjssdl();
|
|
|
|
|
|
+ rxdtjssdl=0.0;
|
|
|
+ pewp.setRxdtjssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -358,42 +380,48 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.RXDJCLSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RXDJCLSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日限电降出力损失电量
|
|
|
pewp.setRxdjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rxdjclssdl=pewp.getRxdjclssdl();
|
|
|
+ rxdjclssdl=0.0;
|
|
|
+ pewp.setRxdjclssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.RCWSLDWSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RCWSLDWSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日场外受累电网损失电量
|
|
|
pewp.setRcwsldwssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rcwsldwssdl=pewp.getRcwsldwssdl();
|
|
|
+ rcwsldwssdl=0.0;
|
|
|
+ pewp.setRcwsldwssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.RCWSLTQSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RCWSLTQSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日场外受累天气损失电量
|
|
|
pewp.setRcwsltqssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ rcwsltqssdl=pewp.getRcwsltqssdl();
|
|
|
+ rcwsltqssdl=0.0;
|
|
|
+ pewp.setRcwsltqssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.RZFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RZFDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日增发电量
|
|
@@ -405,7 +433,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.RQFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RQFDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日欠发电量
|
|
@@ -416,7 +444,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.RZHD))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.RZHD);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//日自耗电
|
|
@@ -425,6 +453,8 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ double rllfdl=rfdl+rgzssdl+rcnslgzssdl+rjxssdl+rcnsljxssdl+rcnsljxssdl+rxdtjssdl+rxdjclssdl+rcwsldwssdl+rcwsltqssdl+rdjssdl+rqxjclssdl+rsdtjssdl+rxnssdl;
|
|
|
+ pewp.setRllfdl(StringUtils.round(rllfdl,2));
|
|
|
|
|
|
//*******************************************日信息统计*********************************************************/
|
|
|
|
|
@@ -474,24 +504,37 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
|
|
|
}
|
|
|
|
|
|
+ double yfdl=0.0;
|
|
|
+ double ygzssdl=0.0;
|
|
|
+ double ycnslgzssdl=0.0;
|
|
|
+ double yjxssdl=0.0;
|
|
|
+ double ycnsljxssdl=0.0;
|
|
|
+ double ydjssdl=0.0;
|
|
|
+ double yqxjclssdl=0.0;
|
|
|
+ double ysdtjssdl=0.0;
|
|
|
+ double yxnssdl=0.0;
|
|
|
+ double yxdtjssdl=0.0;
|
|
|
+ double yxdjclssdl=0.0;
|
|
|
+ double ycwsldwssdl=0.0;
|
|
|
+ double ycwsltqssdl=0.0;
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.YFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YFDL);
|
|
|
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月发电量
|
|
|
pewp.setYfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ yfdl=pewp.getYfdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.YKYDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YKYDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月可用电量
|
|
@@ -504,7 +547,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YLLFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YLLFDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月理论发电量
|
|
@@ -517,23 +560,24 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YGZSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YGZSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月故障损失电量
|
|
|
pewp.setYgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ ygzssdl=pewp.getYgzssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.YCNSLGZSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YCNSLGZSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月场内受累故障损失电量
|
|
|
pewp.setYcnslgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ ycnslgzssdl=pewp.getYcnslgzssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -541,12 +585,12 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YJXSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YJXSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月检修损失电量
|
|
|
pewp.setYjxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ yjxssdl=pewp.getYjxssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -554,12 +598,12 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YCNSLJXSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YCNSLJXSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月场内受累检修损失电量
|
|
|
pewp.setYcnsljxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ ycnsljxssdl=pewp.getYcnsljxssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -567,11 +611,12 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YDJSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YDJSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月待机损失电量
|
|
|
pewp.setYdjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ ydjssdl=pewp.getYdjssdl();
|
|
|
|
|
|
|
|
|
}
|
|
@@ -579,11 +624,12 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YQXJCLSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YQXJCLSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月缺陷降出力损失电量
|
|
|
pewp.setYqxjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ yqxjclssdl=pewp.getYqxjclssdl();
|
|
|
|
|
|
|
|
|
}
|
|
@@ -591,11 +637,12 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YSDTJSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YSDTJSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月手动停机损失电量
|
|
|
pewp.setYsdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ ysdtjssdl=pewp.getYsdtjssdl();
|
|
|
|
|
|
|
|
|
}
|
|
@@ -603,11 +650,12 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YXNSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YXNSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月性能损失电量
|
|
|
pewp.setYxnssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ yxnssdl=pewp.getYxnssdl();
|
|
|
|
|
|
|
|
|
}
|
|
@@ -616,12 +664,15 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YXDTJSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YXDTJSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月限电停机损失电量
|
|
|
pewp.setYxdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ yxdtjssdl=pewp.getYxdtjssdl();
|
|
|
|
|
|
+ yxdtjssdl=0.0;
|
|
|
+ pewp.setYxdtjssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -629,42 +680,51 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YXDJCLSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YXDJCLSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月限电降出力损失电量
|
|
|
pewp.setYxdjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ yxdjclssdl=pewp.getYxdjclssdl();
|
|
|
|
|
|
+ yxdjclssdl=0.0;
|
|
|
+ pewp.setYxdjclssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.YCWSLDWSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YCWSLDWSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月场外受累电网损失电量
|
|
|
pewp.setYcwsldwssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ ycwsldwssdl=pewp.getYcwsldwssdl();
|
|
|
|
|
|
+ ycwsldwssdl=0.0;
|
|
|
+ pewp.setYcwsldwssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.YCWSLTQSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YCWSLTQSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月场外受累天气损失电量
|
|
|
pewp.setYcwsltqssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ ycwsltqssdl=pewp.getYcwsltqssdl();
|
|
|
|
|
|
+ ycwsltqssdl=0.0;
|
|
|
+ pewp.setYcwsltqssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.YZFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YZFDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月增发电量
|
|
@@ -676,7 +736,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YQFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YQFDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月欠发电量
|
|
@@ -687,7 +747,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.YZHD))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.YZHD);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//月自耗电
|
|
@@ -696,6 +756,8 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ double yllfdl=yfdl+ygzssdl+ycnslgzssdl+yjxssdl+ycnsljxssdl+ycnsljxssdl+yxdtjssdl+yxdjclssdl+ycwsldwssdl+ycwsltqssdl+ydjssdl+yqxjclssdl+ysdtjssdl+yxnssdl;
|
|
|
+ pewp.setYllfdl(StringUtils.round(yllfdl,2));
|
|
|
//*******************************************月信息统计*********************************************************/
|
|
|
|
|
|
//*******************************************年信息统计*********************************************************/
|
|
@@ -726,7 +788,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.NPJGL))
|
|
|
{
|
|
|
- ProBasicEquipmentPoint point= pointmap.get(ContantXk.NPJFS);
|
|
|
+ ProBasicEquipmentPoint point= pointmap.get(ContantXk.NPJGL);
|
|
|
List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
|
|
|
if(!pointls.isEmpty())
|
|
|
{
|
|
@@ -744,23 +806,36 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
}
|
|
|
|
|
|
}
|
|
|
-
|
|
|
+ double nfdl=0.0;
|
|
|
+ double ngzssdl=0.0;
|
|
|
+ double ncnslgzssdl=0.0;
|
|
|
+ double njxssdl=0.0;
|
|
|
+ double ncnsljxssdl=0.0;
|
|
|
+ double ndjssdl=0.0;
|
|
|
+ double nqxjclssdl=0.0;
|
|
|
+ double nsdtjssdl=0.0;
|
|
|
+ double nxnssdl=0.0;
|
|
|
+ double nxdtjssdl=0.0;
|
|
|
+ double nxdjclssdl=0.0;
|
|
|
+ double ncwsldwssdl=0.0;
|
|
|
+ double ncwsltqssdl=0.0;
|
|
|
if(pointmap.containsKey(ContantXk.NFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NFDL);
|
|
|
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年发电量
|
|
|
pewp.setNfdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ nfdl=pewp.getNfdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.NKYDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NKYDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年可用电量
|
|
@@ -773,7 +848,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NLLFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NLLFDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年理论发电量
|
|
@@ -786,24 +861,24 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NGZSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NGZSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年故障损失电量
|
|
|
pewp.setNgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ ngzssdl=pewp.getNgzssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.NCNSLGZSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NCNSLGZSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年场内受累故障损失电量
|
|
|
pewp.setNcnslgzssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ ncnslgzssdl=pewp.getNcnslgzssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -811,12 +886,12 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NJXSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NJXSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年检修损失电量
|
|
|
pewp.setNjxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ njxssdl=pewp.getNjxssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -824,12 +899,12 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NCNSLJXSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NCNSLJXSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年场内受累检修损失电量
|
|
|
pewp.setNcnsljxssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
-
|
|
|
+ ncnsljxssdl=pewp.getNcnsljxssdl();
|
|
|
|
|
|
|
|
|
}
|
|
@@ -838,11 +913,12 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NDJSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NDJSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年待机损失电量
|
|
|
pewp.setNdjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ ndjssdl=pewp.getNdjssdl();
|
|
|
|
|
|
|
|
|
}
|
|
@@ -850,35 +926,38 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NQXJCLSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NQXJCLSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年缺陷降出力损失电量
|
|
|
pewp.setNqxjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
|
|
|
+ nqxjclssdl=pewp.getNqxjclssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.NSDTJSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NSDTJSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年手动停机损失电量
|
|
|
pewp.setNsdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
|
|
|
+ nsdtjssdl=pewp.getNsdtjssdl();
|
|
|
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.NXNSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NXNSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年性能损失电量
|
|
|
pewp.setNxnssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ nxnssdl=pewp.getNxnssdl();
|
|
|
|
|
|
|
|
|
}
|
|
@@ -887,12 +966,15 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NXDTJSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NXDTJSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年限电停机损失电量
|
|
|
pewp.setNxdtjssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ nxdtjssdl=pewp.getNxdtjssdl();
|
|
|
|
|
|
+ nxdtjssdl=0.0;
|
|
|
+ pewp.setNxdtjssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -900,12 +982,15 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NXDJCLSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NXDJCLSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年限电降出力损失电量
|
|
|
pewp.setNxdjclssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ nxdjclssdl=pewp.getNxdjclssdl();
|
|
|
|
|
|
+ nxdjclssdl=0.0;
|
|
|
+ pewp.setNxdjclssdl(0.0);
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -913,31 +998,37 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NCWSLDWSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NCWSLDWSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年场外受累电网损失电量
|
|
|
pewp.setNcwsldwssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ ncwsldwssdl=pewp.getNcwsldwssdl();
|
|
|
|
|
|
+ ncwsldwssdl=0.0;
|
|
|
+ pewp.setNcwsldwssdl(0.0);
|
|
|
|
|
|
}
|
|
|
}
|
|
|
if(pointmap.containsKey(ContantXk.NCWSLTQSSDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NCWSLTQSSDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年场外受累天气损失电量
|
|
|
pewp.setNcwsltqssdl(StringUtils.round(pointValue.getPointValueInDouble(),2));
|
|
|
+ ncwsltqssdl=pewp.getNcwsltqssdl();
|
|
|
|
|
|
+ ncwsltqssdl=0.0;
|
|
|
+ pewp.setNcwsltqssdl(0.0);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(pointmap.containsKey(ContantXk.NZFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NZFDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年增发电量
|
|
@@ -949,7 +1040,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NQFDL))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NQFDL);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年欠发电量
|
|
@@ -960,7 +1051,7 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
if(pointmap.containsKey(ContantXk.NZHD))
|
|
|
{
|
|
|
ProBasicEquipmentPoint point= pointmap.get(ContantXk.NZHD);
|
|
|
- PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), recordDate.getTime()/1000);
|
|
|
+ PointData pointValue=edosUtil.getHistMatrix(point.getNemCode(), end.getTime()/1000);
|
|
|
if(StringUtils.notEmp(pointValue))
|
|
|
{
|
|
|
//年自耗电
|
|
@@ -969,6 +1060,8 @@ public class EquipmentInfo1ThreadPool implements Callable<String>, Serializable
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ double nllfdl=nfdl+ngzssdl+ncnslgzssdl+njxssdl+ncnsljxssdl+ncnsljxssdl+nxdtjssdl+nxdjclssdl+ncwsldwssdl+ncwsltqssdl+ndjssdl+nqxjclssdl+nsdtjssdl+nxnssdl;
|
|
|
+ pewp.setNllfdl(StringUtils.round(nllfdl,2));
|
|
|
}
|
|
|
|
|
|
private void setPowerandSpeedYear(ProEconEquipmentInfoDay1 pewp) {
|