- Timestamp:
- 06/26/14 14:18:01 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/simulator/ConfigurationOptions.java
r1299 r1396 187 187 188 188 public String [] resForEnergyChart; 189 public String [] resForAir FlowChart;189 public String [] resForAirflowChart; 190 190 public String [] resForTemperatureChart; 191 191 public String [] resForUtilizationChart; … … 195 195 public double inletRoomAirTempeature; 196 196 public double ambientAirTempeature; 197 public double air FlowVolume;197 public double airflowVolume; 198 198 public double alpha; 199 199 … … 334 334 335 335 try { 336 co.resForAir FlowChart = bundle.getString(CREATEDIAGRAMS_AIRFLOW).split(";");337 if(co.resForAir FlowChart.length > 0){336 co.resForAirflowChart = bundle.getString(CREATEDIAGRAMS_AIRFLOW).split(";"); 337 if(co.resForAirflowChart.length > 0){ 338 338 co.creatediagrams_resairflow = true; 339 339 } … … 416 416 417 417 try { 418 co.air FlowVolume = Double.valueOf(bundle.getString(AIR_FLOW_VOLUME)).doubleValue();419 } catch(MissingResourceException e){ 420 co.air FlowVolume = -1;418 co.airflowVolume = Double.valueOf(bundle.getString(AIR_FLOW_VOLUME)).doubleValue(); 419 } catch(MissingResourceException e){ 420 co.airflowVolume = -1; 421 421 } 422 422 … … 427 427 } 428 428 429 ConfigurationOptions.coolingData = new CoolingModelData(co.pressureDrop, co.outletRoomAirTempeature, co.inletRoomAirTempeature, co.ambientAirTempeature, co.air FlowVolume, co.alpha);429 ConfigurationOptions.coolingData = new CoolingModelData(co.pressureDrop, co.outletRoomAirTempeature, co.inletRoomAirTempeature, co.ambientAirTempeature, co.airflowVolume, co.alpha); 430 430 return co; 431 431 }
Note: See TracChangeset
for help on using the changeset viewer.