[1591] | 1 | package experiments.e2dc2015; |
---|
| 2 | |
---|
| 3 | public class EnvironmentConditions { |
---|
| 4 | public static int ROOM_TEMPERATURE = 22; |
---|
| 5 | public static int AIR_HEAT_CAPACITY = 1024; |
---|
| 6 | public static double AIR_PRESSURE = 1013.25; |
---|
| 7 | public static double AIR_DENSITY = 1.168; |
---|
| 8 | //public static double SYSTEM_UDPATE_INTERVAL = 2.0; |
---|
| 9 | |
---|
| 10 | public static int TFanLow = 45; |
---|
| 11 | public static int TFanHigh = 47; |
---|
| 12 | |
---|
| 13 | public static int tempLevelLow2Medium = 40; |
---|
| 14 | public static int tempLevelMedium2Low = 36; |
---|
| 15 | public static int tempLevelMedium2High = 48; |
---|
| 16 | public static int tempLevelHigh2Medium = 44; |
---|
| 17 | public static int tempLevelHigh2Max = 56; |
---|
| 18 | public static int tempLevelMax2High = 52; |
---|
| 19 | |
---|
| 20 | /*public static int _30_2_40 = 58; |
---|
| 21 | public static int _40_2_30 = 56; |
---|
| 22 | public static int _40_2_50 = 62; |
---|
| 23 | public static int _50_2_40 = 60; |
---|
| 24 | public static int _50_2_60 = 66; |
---|
| 25 | public static int _60_2_50 = 64; |
---|
| 26 | public static int _60_2_70 = 72; |
---|
| 27 | public static int _70_2_60 = 70; |
---|
| 28 | public static int _70_2_80 = 78; |
---|
| 29 | public static int _80_2_70 = 76; |
---|
| 30 | public static int _80_2_90 = 82; |
---|
| 31 | public static int _90_2_80 = 80; |
---|
| 32 | public static int _90_2_100 = 86; |
---|
| 33 | public static int _100_2_90 = 84;*/ |
---|
| 34 | |
---|
| 35 | /*public static int _30_2_40 = 40; |
---|
| 36 | public static int _40_2_30 = 38; |
---|
| 37 | public static int _40_2_50 = 46; |
---|
| 38 | public static int _50_2_40 = 44; |
---|
| 39 | public static int _50_2_60 = 52; |
---|
| 40 | public static int _60_2_50 = 50; |
---|
| 41 | public static int _60_2_70 = 58; |
---|
| 42 | public static int _70_2_60 = 56; |
---|
| 43 | public static int _70_2_80 = 66; |
---|
| 44 | public static int _80_2_70 = 64; |
---|
| 45 | public static int _80_2_90 = 72; |
---|
| 46 | public static int _90_2_80 = 70; |
---|
| 47 | public static int _90_2_100 = 78; |
---|
| 48 | public static int _100_2_90 = 76;*/ |
---|
| 49 | |
---|
| 50 | public static int _30_2_40 = 40; |
---|
| 51 | public static int _40_2_30 = 56; |
---|
| 52 | public static int _40_2_50 = 46; |
---|
| 53 | public static int _50_2_40 = 62; |
---|
| 54 | public static int _50_2_60 = 52; |
---|
| 55 | public static int _60_2_50 = 68; |
---|
| 56 | public static int _60_2_70 = 58; |
---|
| 57 | public static int _70_2_60 = 72; |
---|
| 58 | public static int _70_2_80 = 66; |
---|
| 59 | public static int _80_2_70 = 76; |
---|
| 60 | public static int _80_2_90 = 72; |
---|
| 61 | public static int _90_2_80 = 82; |
---|
| 62 | public static int _90_2_100 = 78; |
---|
| 63 | public static int _100_2_90 = 88; |
---|
| 64 | |
---|
| 65 | public static int _30_2_70 = 58; |
---|
| 66 | public static int _70_2_30 = 56; |
---|
| 67 | public static int _70_2_100 = 78; |
---|
| 68 | public static int _100_2_70 = 76; |
---|
| 69 | |
---|
| 70 | public static int NODES_IN_A_ROW = 2; |
---|
| 71 | public static int NODES_IN_A_COLUMN = 3; |
---|
| 72 | |
---|
| 73 | public static int i5_cpuTidle = 33; |
---|
| 74 | public static double i5_nodeTidle = 22; |
---|
| 75 | |
---|
| 76 | public static int i5_baseLeakageTemp = 59; |
---|
| 77 | public static double i5_leakageFactor = 0.17; |
---|
| 78 | |
---|
| 79 | public static int i5_statsTThres = 80; |
---|
| 80 | public static int i5_statsTThresH = 90; |
---|
| 81 | |
---|
| 82 | public static int startTime = 0; |
---|
| 83 | public static int endTime = 7200; |
---|
| 84 | public static int nrOfPeriods = 10; |
---|
| 85 | |
---|
| 86 | public static int tempShift = 0; |
---|
| 87 | |
---|
| 88 | |
---|
| 89 | |
---|
| 90 | |
---|
| 91 | |
---|
| 92 | public static int arm_cpuTidle = 37; |
---|
| 93 | public static double arm_nodeTidle = 26; |
---|
| 94 | |
---|
| 95 | public static int arm_baseLeakageTemp = 59; |
---|
| 96 | public static double arm_leakageFactor = 0.05; |
---|
| 97 | |
---|
| 98 | public static int arm_statsTThres = 40; |
---|
| 99 | } |
---|