Ignore:
Timestamp:
07/30/14 12:25:00 (11 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/branches/coolemall/src/simulator/ConfigurationOptions.java

    r1396 r1423  
    7777 
    7878         
    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         
    8590        public static final String PRESSURE_DROP = "pressuredrop"; 
    8691        public static final String OUTLET_ROOM_AIR_TEMPERATURE = "outletroomairtemperature"; 
     
    186191        public boolean createsimulationstatistics = true; 
    187192         
    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; 
    192202         
    193203        public double pressureDrop; 
     
    311321 
    312322                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){ 
    315325                                co.creatediagrams_resutilization = true; 
    316326                        } 
     
    325335                } 
    326336                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){ 
    329339                                co.creatediagrams_respowerusage = true; 
    330340                        } 
     
    334344                 
    335345                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){ 
    338348                                co.creatediagrams_resairflow = true; 
    339349                        } 
     
    343353                 
    344354                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){ 
    347357                                co.creatediagrams_restemperature = true; 
    348358                        } 
    349359                } catch(MissingResourceException e){ 
    350360                        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){ 
    351381                } 
    352382                 
Note: See TracChangeset for help on using the changeset viewer.