소스 검색

Adds per House Calculations for partially supplied Subnets

Andreas T. Meyer-Berg 7 년 전
부모
커밋
769dde4377
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/ui/controller/SimulationManager.java

+ 4 - 0
src/ui/controller/SimulationManager.java

@@ -111,8 +111,12 @@ public class SimulationManager {
                             } else {
                                 if ((production + minConsumption) >= 0) {
                                     hl.setState(HolonObject.PARTIALLY_SUPPLIED);
+                                    currentProduction += hl.getMinEnergy(x);
+                            		partiallySuppliedList.add(hl);
                                 } else if (hl.checkIfPartiallySupplied(timeStep)) {
                                     hl.setState(HolonObject.PARTIALLY_SUPPLIED);
+                                    currentProduction += hl.getMinEnergy(x);
+                            		partiallySuppliedList.add(hl);
                                 } else {
                                 	/**
                                 	 * Case that only some HolonObjects can be supplied