Ignore:
Timestamp:
06/26/14 14:18:01 (11 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

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

    r1299 r1396  
    187187         
    188188        public String [] resForEnergyChart; 
    189         public String [] resForAirFlowChart; 
     189        public String [] resForAirflowChart; 
    190190        public String [] resForTemperatureChart; 
    191191        public String [] resForUtilizationChart; 
     
    195195        public double inletRoomAirTempeature; 
    196196        public double ambientAirTempeature; 
    197         public double airFlowVolume; 
     197        public double airflowVolume; 
    198198        public double alpha; 
    199199         
     
    334334                 
    335335                try { 
    336                         co.resForAirFlowChart = bundle.getString(CREATEDIAGRAMS_AIRFLOW).split(";"); 
    337                         if(co.resForAirFlowChart.length > 0){ 
     336                        co.resForAirflowChart = bundle.getString(CREATEDIAGRAMS_AIRFLOW).split(";"); 
     337                        if(co.resForAirflowChart.length > 0){ 
    338338                                co.creatediagrams_resairflow = true; 
    339339                        } 
     
    416416                 
    417417                try { 
    418                         co.airFlowVolume = Double.valueOf(bundle.getString(AIR_FLOW_VOLUME)).doubleValue(); 
    419                 } catch(MissingResourceException e){ 
    420                         co.airFlowVolume = -1; 
     418                        co.airflowVolume = Double.valueOf(bundle.getString(AIR_FLOW_VOLUME)).doubleValue(); 
     419                } catch(MissingResourceException e){ 
     420                        co.airflowVolume = -1; 
    421421                } 
    422422                 
     
    427427                } 
    428428                 
    429                 ConfigurationOptions.coolingData = new CoolingModelData(co.pressureDrop, co.outletRoomAirTempeature, co.inletRoomAirTempeature, co.ambientAirTempeature, co.airFlowVolume, co.alpha); 
     429                ConfigurationOptions.coolingData = new CoolingModelData(co.pressureDrop, co.outletRoomAirTempeature, co.inletRoomAirTempeature, co.ambientAirTempeature, co.airflowVolume, co.alpha); 
    430430                return co; 
    431431        } 
Note: See TracChangeset for help on using the changeset viewer.