- Timestamp:
- 07/30/14 12:25:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/simulator/ConfigurationOptions.java
r1396 r1423 77 77 78 78 79 public static final String CREATESTATISTICS = "createstatistics"; 80 public static final String ACCUMULATED_RESOURCES_STATISTICS = CREATESTATISTICS + ".accumulatedresources"; 81 public static final String EXTENDED_TASKS_STATISTICS = CREATESTATISTICS + ".extendedtasks"; 82 public static final String JOBS_STATISTICS = CREATESTATISTICS + ".jobs"; 83 public static final String SIMULATION_STATISTICS = CREATESTATISTICS + ".simulation"; 84 79 public static final String CREATEXTSTATISTICS = "creatextatistics"; 80 public static final String ACCUMULATED_RESOURCES_STATISTICS = CREATEXTSTATISTICS + ".accumulatedresources"; 81 public static final String EXTENDED_TASKS_STATISTICS = CREATEXTSTATISTICS + ".extendedtasks"; 82 public static final String JOBS_STATISTICS = CREATEXTSTATISTICS + ".jobs"; 83 public static final String SIMULATION_STATISTICS = CREATEXTSTATISTICS + ".simulation"; 84 public static final String SIMULATION_UTILIZATION = CREATEXTSTATISTICS + ".resutilization"; 85 public static final String SIMULATION_ENERGYUSAGE = CREATEXTSTATISTICS + ".respowerusage"; 86 public static final String SIMULATION_AIRFLOW = CREATEXTSTATISTICS + ".resairflow"; 87 public static final String SIMULATION_TEMPERATURE = CREATEXTSTATISTICS + ".restemperature"; 88 89 85 90 public static final String PRESSURE_DROP = "pressuredrop"; 86 91 public static final String OUTLET_ROOM_AIR_TEMPERATURE = "outletroomairtemperature"; … … 186 191 public boolean createsimulationstatistics = true; 187 192 188 public String [] resForEnergyChart; 189 public String [] resForAirflowChart; 190 public String [] resForTemperatureChart; 191 public String [] resForUtilizationChart; 193 public String [] compResForEnergyChart; 194 public String [] compResForAirflowChart; 195 public String [] compResForTemperatureChart; 196 public String [] compResForUtilizationChart; 197 198 public String [] compResForEnergyText; 199 public String [] compResForAirflowText; 200 public String [] compResForTemperatureText; 201 public String [] compResForUtilizationText; 192 202 193 203 public double pressureDrop; … … 311 321 312 322 try { 313 co. resForUtilizationChart = bundle.getString(CREATEDIAGRAMS_UTILIZATION).split(";");314 if(co. resForUtilizationChart.length > 0){323 co.compResForUtilizationChart = bundle.getString(CREATEDIAGRAMS_UTILIZATION).split(";"); 324 if(co.compResForUtilizationChart.length > 0){ 315 325 co.creatediagrams_resutilization = true; 316 326 } … … 325 335 } 326 336 try { 327 co. resForEnergyChart = bundle.getString(CREATEDIAGRAMS_ENERGYUSAGE).split(";");328 if(co. resForEnergyChart.length > 0){337 co.compResForEnergyChart = bundle.getString(CREATEDIAGRAMS_ENERGYUSAGE).split(";"); 338 if(co.compResForEnergyChart.length > 0){ 329 339 co.creatediagrams_respowerusage = true; 330 340 } … … 334 344 335 345 try { 336 co. resForAirflowChart = bundle.getString(CREATEDIAGRAMS_AIRFLOW).split(";");337 if(co. resForAirflowChart.length > 0){346 co.compResForAirflowChart = bundle.getString(CREATEDIAGRAMS_AIRFLOW).split(";"); 347 if(co.compResForAirflowChart.length > 0){ 338 348 co.creatediagrams_resairflow = true; 339 349 } … … 343 353 344 354 try { 345 co. resForTemperatureChart = bundle.getString(CREATEDIAGRAMS_TEMPERATURE).split(";");346 if(co. resForTemperatureChart.length > 0){355 co.compResForTemperatureChart = bundle.getString(CREATEDIAGRAMS_TEMPERATURE).split(";"); 356 if(co.compResForTemperatureChart.length > 0){ 347 357 co.creatediagrams_restemperature = true; 348 358 } 349 359 } catch(MissingResourceException e){ 350 360 co.creatediagrams_restemperature = createDiagrams; 361 } 362 363 try { 364 co.compResForUtilizationText = bundle.getString(SIMULATION_UTILIZATION).split(";"); 365 } catch(MissingResourceException e){ 366 } 367 368 try { 369 co.compResForEnergyText = bundle.getString(SIMULATION_ENERGYUSAGE).split(";"); 370 } catch(MissingResourceException e){ 371 } 372 373 try { 374 co.compResForAirflowText = bundle.getString(SIMULATION_AIRFLOW).split(";"); 375 } catch(MissingResourceException e){ 376 } 377 378 try { 379 co.compResForTemperatureText = bundle.getString(SIMULATION_TEMPERATURE).split(";"); 380 } catch(MissingResourceException e){ 351 381 } 352 382
Note: See TracChangeset
for help on using the changeset viewer.