|
@@ -560,7 +560,10 @@ public class GhostService {
|
|
|
Long end = involvedVo.getEnd();
|
|
|
List<Line> lines = involvedVo.getLines();
|
|
|
Double ssdl = involvedVo.getSsdl();
|
|
|
+ Double impactcapacity = involvedVo.getImpactcapacity();
|
|
|
String type = involvedVo.getType();
|
|
|
+
|
|
|
+
|
|
|
List<Involved> resultList = new ArrayList<>();
|
|
|
double zcapacity = lines.stream().mapToDouble(line -> lineMap.get(line.getId()).getCapacity()).sum();
|
|
|
lines.stream().forEach(line->{
|
|
@@ -576,6 +579,7 @@ public class GhostService {
|
|
|
involved.setEnddate(DateUtils.parseLongToDate(end));
|
|
|
involved.setFaulttype(type);
|
|
|
involved.setPowerloss(ssdl*(lineMap.get(line.getId()).getCapacity()/zcapacity));
|
|
|
+ involved.setImpactcapacity(impactcapacity*(lineMap.get(line.getId()).getCapacity()/zcapacity));
|
|
|
double hours = DateUtils.hoursDiff2(DateUtils.parseLongToDate(begin), DateUtils.parseLongToDate(end));
|
|
|
involved.setFaultduration(hours);
|
|
|
resultList.add(involved);
|