|
@@ -56,17 +56,19 @@ public class SimulationManager {
|
|
float minConsumption = calculateMinimumEnergy(singleSubNet, timeStep);
|
|
float minConsumption = calculateMinimumEnergy(singleSubNet, timeStep);
|
|
setFlowSimulation(singleSubNet);
|
|
setFlowSimulation(singleSubNet);
|
|
for (HolonObject hl : singleSubNet.getObjects()) {
|
|
for (HolonObject hl : singleSubNet.getObjects()) {
|
|
- if (!(hl.getState() == 0) && !(hl.getState() == 3)) {
|
|
|
|
|
|
+ if (hl.getState() != HolonObject.NO_ENERGY
|
|
|
|
+ && hl.getState() != HolonObject.PRODUCER) {
|
|
for (int i = 0; i < hl.getConnections().size(); i++) {
|
|
for (int i = 0; i < hl.getConnections().size(); i++) {
|
|
CpsEdge edge = hl.getConnectedTo().get(i);
|
|
CpsEdge edge = hl.getConnectedTo().get(i);
|
|
if (edge.isWorking() && edge.getFlow() > 0
|
|
if (edge.isWorking() && edge.getFlow() > 0
|
|
|| edge.getCapacity() == CpsEdge.CAPACITY_INFINITE) {
|
|
|| edge.getCapacity() == CpsEdge.CAPACITY_INFINITE) {
|
|
- // 0 = no energy, 1 = not supplied, 2 = supplied, 3
|
|
|
|
- // = producer, 4 = partially supplied
|
|
|
|
if ((production + consumption) >= 0) {
|
|
if ((production + consumption) >= 0) {
|
|
- hl.setState(HolonObject.SUPPLIED);
|
|
|
|
- }
|
|
|
|
- if ((production + consumption) < 0) {
|
|
|
|
|
|
+ if (wastedEnergy > 0) {
|
|
|
|
+ hl.setState(HolonObject.OVER_SUPPLIED);
|
|
|
|
+ } else {
|
|
|
|
+ hl.setState(HolonObject.SUPPLIED);
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
if ((production + minConsumption) >= 0) {
|
|
if ((production + minConsumption) >= 0) {
|
|
hl.setState(HolonObject.PARTIALLY_SUPPLIED);
|
|
hl.setState(HolonObject.PARTIALLY_SUPPLIED);
|
|
} else if (hl.checkIfPartiallySupplied(timeStep)) {
|
|
} else if (hl.checkIfPartiallySupplied(timeStep)) {
|
|
@@ -77,9 +79,10 @@ public class SimulationManager {
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
- hl.setState(HolonObject.NOT_SUPPLIED);
|
|
|
|
}
|
|
}
|
|
- if (hl.checkIfPartiallySupplied(timeStep) && !(hl.getState() == 2)) {
|
|
|
|
|
|
+ if (hl.checkIfPartiallySupplied(timeStep)
|
|
|
|
+ && hl.getState() != HolonObject.SUPPLIED
|
|
|
|
+ && hl.getState() != HolonObject.OVER_SUPPLIED) {
|
|
hl.setState(HolonObject.PARTIALLY_SUPPLIED);
|
|
hl.setState(HolonObject.PARTIALLY_SUPPLIED);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -444,7 +447,7 @@ public class SimulationManager {
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- * removes an Object that already has been handled with.
|
|
|
|
|
|
+ * removes an Object that already has been handled.
|
|
*
|
|
*
|
|
* @param id the Object ID
|
|
* @param id the Object ID
|
|
*/
|
|
*/
|