|
@@ -51,6 +51,8 @@ public class SimulationManager {
|
|
for (SubNet singleSubNet : subNets) {
|
|
for (SubNet singleSubNet : subNets) {
|
|
float production = calculateEnergy("prod", singleSubNet, timeStep);
|
|
float production = calculateEnergy("prod", singleSubNet, timeStep);
|
|
float consumption = calculateEnergy("cons", singleSubNet, timeStep);
|
|
float consumption = calculateEnergy("cons", singleSubNet, timeStep);
|
|
|
|
+ float wastedEnergy = production - consumption;
|
|
|
|
+
|
|
float minConsumption = calculateMinimumEnergy(singleSubNet, timeStep);
|
|
float minConsumption = calculateMinimumEnergy(singleSubNet, timeStep);
|
|
setFlowSimulation(singleSubNet);
|
|
setFlowSimulation(singleSubNet);
|
|
for (HolonObject hl : singleSubNet.getObjects()) {
|
|
for (HolonObject hl : singleSubNet.getObjects()) {
|
|
@@ -62,29 +64,29 @@ public class SimulationManager {
|
|
// 0 = no energy, 1 = not supplied, 2 = supplied, 3
|
|
// 0 = no energy, 1 = not supplied, 2 = supplied, 3
|
|
// = producer, 4 = partially supplied
|
|
// = producer, 4 = partially supplied
|
|
if ((production + consumption) >= 0) {
|
|
if ((production + consumption) >= 0) {
|
|
- hl.setState(2);
|
|
|
|
|
|
+ hl.setState(HolonObject.SUPPLIED);
|
|
}
|
|
}
|
|
if ((production + consumption) < 0) {
|
|
if ((production + consumption) < 0) {
|
|
if ((production + minConsumption) >= 0) {
|
|
if ((production + minConsumption) >= 0) {
|
|
- hl.setState(4);
|
|
|
|
|
|
+ hl.setState(HolonObject.PARTIALLY_SUPPLIED);
|
|
} else if (hl.checkIfPartiallySupplied(timeStep)) {
|
|
} else if (hl.checkIfPartiallySupplied(timeStep)) {
|
|
- hl.setState(4);
|
|
|
|
|
|
+ hl.setState(HolonObject.PARTIALLY_SUPPLIED);
|
|
} else {
|
|
} else {
|
|
- hl.setState(1);
|
|
|
|
|
|
+ hl.setState(HolonObject.NOT_SUPPLIED);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
- hl.setState(1);
|
|
|
|
|
|
+ hl.setState(HolonObject.NOT_SUPPLIED);
|
|
}
|
|
}
|
|
if (hl.checkIfPartiallySupplied(timeStep) && !(hl.getState() == 2)) {
|
|
if (hl.checkIfPartiallySupplied(timeStep) && !(hl.getState() == 2)) {
|
|
- hl.setState(4);
|
|
|
|
|
|
+ hl.setState(HolonObject.PARTIALLY_SUPPLIED);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
canvas.repaint();
|
|
canvas.repaint();
|
|
- //printNet();
|
|
|
|
|
|
+// printNetToConsole();
|
|
flexPane.recalculate();
|
|
flexPane.recalculate();
|
|
}
|
|
}
|
|
|
|
|
|
@@ -308,17 +310,17 @@ public class SimulationManager {
|
|
if (type.equals("prod")) {
|
|
if (type.equals("prod")) {
|
|
if (hl.getCurrentEnergyAtTimeStep(x) > 0) {
|
|
if (hl.getCurrentEnergyAtTimeStep(x) > 0) {
|
|
energy = energy + hl.getCurrentEnergyAtTimeStep(x);
|
|
energy = energy + hl.getCurrentEnergyAtTimeStep(x);
|
|
- hl.setState(3);
|
|
|
|
|
|
+ hl.setState(HolonObject.PRODUCER);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (type.equals("cons")) {
|
|
if (type.equals("cons")) {
|
|
if (hl.getCurrentEnergyAtTimeStep(x) < 0) {
|
|
if (hl.getCurrentEnergyAtTimeStep(x) < 0) {
|
|
energy = energy + hl.getCurrentEnergyAtTimeStep(x);
|
|
energy = energy + hl.getCurrentEnergyAtTimeStep(x);
|
|
- hl.setState(1);
|
|
|
|
|
|
+ hl.setState(HolonObject.NOT_SUPPLIED);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (hl.getCurrentEnergyAtTimeStep(x) == 0) {
|
|
if (hl.getCurrentEnergyAtTimeStep(x) == 0) {
|
|
- hl.setState(0);
|
|
|
|
|
|
+ hl.setState(HolonObject.NO_ENERGY);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return energy;
|
|
return energy;
|
|
@@ -483,7 +485,7 @@ public class SimulationManager {
|
|
/**
|
|
/**
|
|
* Prints the Components auf all subnets.
|
|
* Prints the Components auf all subnets.
|
|
*/
|
|
*/
|
|
- public void printNet() {
|
|
|
|
|
|
+ public void printNetToConsole() {
|
|
for (int i = 0; i < subNets.size(); i++) {
|
|
for (int i = 0; i < subNets.size(); i++) {
|
|
System.out.println("SUBNET NR:" + i);
|
|
System.out.println("SUBNET NR:" + i);
|
|
System.out.println(" Objects:");
|
|
System.out.println(" Objects:");
|
|
@@ -555,7 +557,7 @@ public class SimulationManager {
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- * checks wether a given object is connected to an object inside the upperNode.
|
|
|
|
|
|
+ * checks whether a given object is connected to an object inside the upperNode.
|
|
* if yes, the state for the edge is changed in "connected" or "not connected"
|
|
* if yes, the state for the edge is changed in "connected" or "not connected"
|
|
*
|
|
*
|
|
* @param cps
|
|
* @param cps
|