1 | package test.simpat; |
---|
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 = 54; |
---|
16 | public static int tempLevelHigh2Medium = 50;*/ |
---|
17 | |
---|
18 | /*public static int tempLevelLow2Medium = 40; |
---|
19 | public static int tempLevelMedium2Low = 36; |
---|
20 | public static int tempLevelMedium2High = 56; |
---|
21 | public static int tempLevelHigh2Medium = 52; |
---|
22 | public static int tempLevelHigh2Max = 82; |
---|
23 | public static int tempLevelMax2High = 78;*/ |
---|
24 | |
---|
25 | public static int tempLevelLow2Medium = 40; |
---|
26 | public static int tempLevelMedium2Low = 36; |
---|
27 | public static int tempLevelMedium2High = 48; |
---|
28 | public static int tempLevelHigh2Medium = 44; |
---|
29 | public static int tempLevelHigh2Max = 56; |
---|
30 | public static int tempLevelMax2High = 52; |
---|
31 | |
---|
32 | public static int NODES_IN_A_ROW = 2; |
---|
33 | public static int NODES_IN_A_COLUMN = 2; |
---|
34 | |
---|
35 | |
---|
36 | public static int powerCapLevel = 196; |
---|
37 | public static int powerUpgradeLevel = 180; |
---|
38 | |
---|
39 | } |
---|