Browse Source

new properties in trackedDataSet

Kevin Trometer 7 years ago
parent
commit
11546a3bbf
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/classes/TrackedDataSet.java

+ 4 - 0
src/classes/TrackedDataSet.java

@@ -27,6 +27,10 @@ public class TrackedDataSet {
 	public static final int AVG_WASTED_ENERGY_IN_HOLONS = 17;
 	public static final int AMOUNT_BROKEN_EDGES = 18;
 	public static final int RATIO_PRODUCERS_CONSUMERS = 19;
+	public static final int AMOUNT_CLOSED_SWITCHES_IN_HOLONS = 20;
+	public static final int AVG_AMOUNT_ACTIVE_ELEMENTS_IN_HOLONS = 21;
+	public static final int AVG_AMOUNT_INACTIVE_ELEMENTS_IN_HOLONS = 22;
+	public static final int AVG_PRODUCED_ENERGY_IN_HOLONS = 23;
 	
 	//Variables of the Data Set
 	private AbstractCpsObject cps;