Ver código fonte

Adds per House Calculations for partially supplied Subnets

Andreas T. Meyer-Berg 6 anos atrás
pai
commit
769dde4377
1 arquivos alterados com 4 adições e 0 exclusões
  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