Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions commercial measures/SWHC046-07 Pkg HP AC Com/.modelkit-config
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

# Paths are expanded relative to this modelkit-config file.

prototypes-dir = '../../prototypes'
templates-dir = '../../templates/energyplus/templates'
weather-dir = '../../weather'
codes-dir = '../../codes'

max-workers = 12 # Maximum number of simulations to run in parallel


[template-compose]
annotate = true
indent = " "
esc-line = "! "
dirs = '~\Documents\Modelkit Caboodle\templates\energyplus\templates' # Must be an absolute path

[energyplus-run]
engine = 'C:\EnergyPlusV22-2-0' # Must be an absolute path
#engine = '/Applications/EnergyPlus-22-2-0' # Must be an absolute path
#engine = '/Applications/EnergyPlus-9-2-0' # Must be an absolute path
readvars = true
keep = false
output-files = "eplusout.err; eplusout.sql; eplustbl.htm; eplusvar.csv"
Binary file not shown.
126 changes: 126 additions & 0 deletions commercial measures/SWHC046-07 Pkg HP AC Com/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
# Steps to run simulations, gather outputs, and post-process results for this measure

Note if `result2.py` is not present, see https://github.com/sound-data/DEER-Prototypes-EnergyPlus/pull/65.

```
REM In command prompt, change directory to a clone of the repository. You may have a different path.
cd "C:/DEER-Prototypes-EnergyPlus"
```

## 1. Run simulations and generate output files

### 1.1. Run simulations

```
cd "commercial measures/SWHC046-04 Pkg HP AC Com/SWHC046-04 Pkg HP AC Com_Ex"
modelkit rake compose
REM For large number of simulations, rakefile may fail to gather results, so just run simulations.
modelkit rake run
```

Then, repeat for subfolder `SWHC046-04 Pkg HP AC Com_Htl_Ex`.

Optionally, while `modelkit rake run` is running, use how-to-track-progress.py to see a progress bar.

Optionally, after model runs are complete, use
[QC incomplete simulations.ipynb](https://github.com/simularis/building-energy-utils/blob/main/deer-user-scripts/QC%20incomplete%20simulations.ipynb)
to get statistics on failed simulations and a count of warning and error messages from EnergyPlus.

### 1.2. Gather summary output files for raw usage and QC

#### Generate results-summary.csv (using standard query file, for use with post-process scripts)

Option 1 (using modelkit). If option 1 fails, try option 2.

```
modelkit rake results
```

Option 2 (using equivalent python script)

```
cd "commercial measures/SWHC046-04 Pkg HP AC Com/SWHC046-04 Pkg HP AC Com_Ex"
python "../../../scripts/result.py" . --queryfile "query.txt" --detailfile results-sizing-detail.csv --aggfile results-summary.csv
```

Note that the python script has a side effect of outputting a file with disaggregated quantities for any query items that represent aggregate totals, such as cooling capacity of all coils.

Repeat for each subfolder (`SWHC046-04 Pkg HP AC Com_Ex` and `SWHC046-04 Pkg HP AC Com_Htl_Ex`).

#### Generate customized simdata.csv

```
cd "commercial measures/SWHC046-04 Pkg HP AC Com/"
python "result2.py" . --queryfile "query_SWHC046_QC.txt"
```

The dot represents the current directory. This script runs outside the vintage subfolders, so only run this script once.

Use simdata.csv to perform QC, calculate UEC for all categories of load, and obtain DEER Peak Demand results bypassing the post-processing tool.

## 2. Determine cooling capacity subject to measure

### 2.1. Extract cooling capacity from every coil in model

Extract results to results-sizing-detail.csv

```
cd "commercial measures/SWHC046-04 Pkg HP AC Com/SWHC046-04 Pkg HP AC Com_Ex"
python "../../../scripts/result.py" . --queryfile "query_SWHC046_sizing.txt" --detailfile results-sizing-detail.csv --aggfile results-sizing-agg.csv
```

Repeat for each vintage subfolder "SWHC046-04 Pkg HP AC Com_Htl_Ex".

### 2.2. Filter cooling capacity

Filter and aggregate results into sizing_agg_filtered.csv. Note that this step depends on the file coil_list.xlsx being in the same folder as the script.

```
cd "commercial measures/SWHC046-04 Pkg HP AC Com"
python result_filtered.py
```

## 3. Apply post-processing for commercial sector weighted average (with normalizing units from models)

For commercial sector weighted averages, post-process according to instructions in [../../scripts](../../scripts). The command line steps include:

### 3.1 Run data transformation script to get current_msr_mat, sim_annual, and sim_hourly_wb

First, copy the DEER_EnergyPlus_Modelkit_Measure_list workbook from this folder into "C:/DEER-Prototypes-EnergyPlus/scripts/data transformation". Then, follow the standard procedures for data transformation per instructions in [../../scripts](../../scripts).

```
cd "C:/DEER-Prototypes-EnergyPlus"
cd "scripts/data transformation"
REM Generate current_msr_mat.csv, sim_annual.csv, and sim_hourly_wb.csv.
python Com.py
REM Optionally, copy the outputs to the measure folder
copy "current_msr_mat.csv" "commercial measures/SWHC046-04 Pkg HP AC Com"
copy "sim_annual.csv" "commercial measures/SWHC046-04 Pkg HP AC Com"
copy "sim_hourly_wb.csv" "commercial measures/SWHC046-04 Pkg HP AC Com"
```

### 3.2. Insert results from cooling capacity into sim_annual

The script insert_normunits.py inserts results from sizing_agg_filtered.csv into a copy of sim_annual.csv and saves it to sim_annual_withunits.csv. The command line pattern for this script is:

```
python insert_normunits.py <sizing_column> <normunit> <conversion_factor> <measure_name>
```

For this measure the options are
- `<sizing_column>` = "Cooling Capacity (W)"
- `<normunit>` = Cap-Tons
- `<conversion_factor>` = (W thermal / 1 ton cooling) = 1 / 3516.85284 = 2.84345e-4
- `<measure_name>` = "Pkg HP AC Com"

First copy the sizing_agg_filtered.csv into the scripts folder. Then run the script:

```
python insert_normunits.py "Cooling Capacity (W)" Cap-Tons 2.84345e-4 "Pkg HP AC Com"
```

At this point, you should have an updated copy of sim_annual.csv with cooling capacity in the normalizing units column.

### 3.3. Run commercial post-processing script

Refer to standard instructions in [../../scripts](../../scripts). Use the file "sim_annual_withunits.xlsx" in place of the "sim_annual.csv" file from Com.py.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
skip,case_name,sizing_case,:heat_sizing_factor,:cool_sizing_factor,:hvac_config,:main_hvac_type,:main_atu_reheat_coil_type,:main_atu_reheat_control,:main_fan_rise,:main_cool_coil_type,:main_heat_coil_type,:main_dx_type,:main_sat_reset_type,:main_sat_temp_max,:main_design_peak_load,:main_oa_econ_type,:main_cool_coil_cop,:main_dx_comp_speed,:main_cool_flow_min_frac,:main_unitary_no_load_flow_method,:main_fan_speed,:main_fan_motor_eff,:main_heat_coil_cop,:main_heat_coil_eff,:main_heat_flow_frac,:chw_chiller_cop,:chw_chiller_model,:chw_pump_type,:hw_boiler_eff
,NE-dxAC_equip-pkgEER-14.2-IEER-TE-0.81,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.91,CONSTANT,,,CONSTANT,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgEER-13.2-IEER-TE-0.81,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.74,CONSTANT,,,CONSTANT,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgEER-14.8-IEER-TE-0.81,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.07,CONSTANT,,,CONSTANT,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgSEER-13.4-SEER2,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.82,CONSTANT,,,CONSTANT,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgEER-12.2-IEER-TE-0.80,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.6,CONSTANT,,,CONSTANT,0.87,,0.8,1,,,,
,NE-dxAC_equip-pkgEER-11.4-IEER-TE-0.80,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.36,CONSTANT,,,CONSTANT,0.87,,0.8,1,,,,
,NE-dxAC_equip-pkgEER-12.7-IEER-TE-0.80,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.59,CONSTANT,,,CONSTANT,0.87,,0.8,1,,,,
,NE-dxAC_equip-pkgSEER-12.35-SEER2,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.65,CONSTANT,,,CONSTANT,0.87,,0.8,1,,,,
,NE-dxHP_equip-pkgEER-14.5-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.95,CONSTANT,,,CONSTANT,0.87,3.4,,1,,,,
,NE-dxHP_equip-pkgEER-15.5-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.11,CONSTANT,,,CONSTANT,0.87,3.4,,1,,,,
,NE-dxHP_equip-pkgEER-13.5-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.8,CONSTANT,,,CONSTANT,0.87,3.4,,1,,,,
,NE-dxHP_equip-pkgEER-14-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.91,CONSTANT,,,CONSTANT,0.87,3.4,,1,,,,
,NE-dxHP_equip-pkgEER-15-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.11,CONSTANT,,,CONSTANT,0.87,3.61,,1,,,,
,NE-dxHP_equip-pkgEER-16-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.34,CONSTANT,,,CONSTANT,0.87,3.61,,1,,,,
,NE-dxHP_equip-pkgSEER-15.4-SEER2,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.27,CONSTANT,,,CONSTANT,0.87,3.93,,1,,,,
,NE-dxHP_equip-pkgSEER-16.3-SEER2,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.43,CONSTANT,,,CONSTANT,0.87,4.02,,1,,,,
,NE-dxHP_equip-pkgSEER-14.4-SEER2-1Stage,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.12,CONSTANT,,,CONSTANT,0.87,3.86,,1,,,,
,NE-dxHP_equip-pkgSEER-14.4-SEER2-2Stage,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.12,DUAL-EQUAL,,,CONSTANT,0.87,3.86,,1,,,,
,NE-dxHP_equip-spltSEER-14.4-SEER2-8.7-HSPF,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.12,CONSTANT,,,CONSTANT,0.87,3.97,,1,,,,
,NE-dxHP_equip-spltSEER-15.4-SEER2-9-HSPF,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.27,CONSTANT,,,CONSTANT,0.87,4.02,,1,,,,
,NE-dxHP_equip-spltSEER-16.3-SEER2-9.4-HSPF,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.43,CONSTANT,,,CONSTANT,0.87,4.09,,1,,,,
,NE-dxHP_equip-spltSEER-17.3-SEER2-9.7-HSPF,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.56,CONSTANT,,,CONSTANT,0.87,4.13,,1,,,,
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
skip,case_name,sizing_case,:heat_sizing_factor,:cool_sizing_factor,:hvac_config,:main_hvac_type,:main_atu_reheat_coil_type,:main_atu_reheat_control,:main_fan_rise,:main_cool_coil_type,:main_heat_coil_type,:main_dx_type,:main_sat_reset_type,:main_sat_temp_max,:main_design_peak_load,:main_oa_econ_type,:main_cool_coil_cop,:main_dx_comp_speed,:main_cool_flow_min_frac,:main_unitary_no_load_flow_method,:main_fan_speed,:main_fan_motor_eff,:main_heat_coil_cop,:main_heat_coil_eff,:main_heat_flow_frac,:chw_chiller_cop,:chw_chiller_model,:chw_pump_type,:hw_boiler_eff
,NE-dxAC_equip-pkgEER-14.2-IEER-TE-0.81,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.91,CONSTANT,,,CONSTANT,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgEER-13.2-IEER-TE-0.81,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.74,CONSTANT,,,CONSTANT,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgEER-14.8-IEER-TE-0.81,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.07,CONSTANT,,,CONSTANT,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgSEER-13.4-SEER2,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.82,CONSTANT,,,CONSTANT,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgEER-12.2-IEER-TE-0.80,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.6,CONSTANT,,,CONSTANT,0.87,,0.8,1,,,,
,NE-dxAC_equip-pkgEER-11.4-IEER-TE-0.80,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.36,CONSTANT,,,CONSTANT,0.87,,0.8,1,,,,
,NE-dxAC_equip-pkgEER-12.7-IEER-TE-0.80,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.59,CONSTANT,,,CONSTANT,0.87,,0.8,1,,,,
,NE-dxAC_equip-pkgSEER-12.35-SEER2,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.65,CONSTANT,,,CONSTANT,0.87,,0.8,1,,,,
,NE-dxHP_equip-pkgEER-14.5-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.95,CONSTANT,,,CONSTANT,0.87,3.4,,1,,,,
,NE-dxHP_equip-pkgEER-15.5-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.11,CONSTANT,,,CONSTANT,0.87,3.4,,1,,,,
,NE-dxHP_equip-pkgEER-13.5-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.8,CONSTANT,,,CONSTANT,0.87,3.4,,1,,,,
,NE-dxHP_equip-pkgEER-14-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.91,CONSTANT,,,CONSTANT,0.87,3.4,,1,,,,
,NE-dxHP_equip-pkgEER-15-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.11,CONSTANT,,,CONSTANT,0.87,3.61,,1,,,,
,NE-dxHP_equip-pkgEER-16-IEER,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.34,CONSTANT,,,CONSTANT,0.87,3.61,,1,,,,
,NE-dxHP_equip-pkgSEER-15.4-SEER2,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.27,CONSTANT,,,CONSTANT,0.87,3.93,,1,,,,
,NE-dxHP_equip-pkgSEER-16.3-SEER2,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.43,CONSTANT,,,CONSTANT,0.87,4.02,,1,,,,
,NE-dxHP_equip-pkgSEER-14.4-SEER2-1Stage,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.12,CONSTANT,,,CONSTANT,0.87,3.86,,1,,,,
,NE-dxHP_equip-pkgSEER-14.4-SEER2-2Stage,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.12,DUAL-EQUAL,,,CONSTANT,0.87,3.86,,1,,,,
,NE-dxHP_equip-spltSEER-14.4-SEER2-8.7-HSPF,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.12,CONSTANT,,,CONSTANT,0.87,3.97,,1,,,,
,NE-dxHP_equip-spltSEER-15.4-SEER2-9-HSPF,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.27,CONSTANT,,,CONSTANT,0.87,4.02,,1,,,,
,NE-dxHP_equip-spltSEER-16.3-SEER2-9.4-HSPF,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.43,CONSTANT,,,CONSTANT,0.87,4.09,,1,,,,
,NE-dxHP_equip-spltSEER-17.3-SEER2-9.7-HSPF,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,DX-AIR,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.56,CONSTANT,,,CONSTANT,0.87,4.13,,1,,,,
,NE-dxAC_equip-pkgEER-14.2-IEER-TE-0.81-VarFan,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.91,CONSTANT,,,VARIABLE,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgEER-13.2-IEER-TE-0.81-VarFan,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.74,CONSTANT,,,VARIABLE,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgEER-14.8-IEER-TE-0.81-VarFan,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,4.07,CONSTANT,,,VARIABLE,0.87,,0.81,1,,,,
,NE-dxAC_equip-pkgSEER-13.4-SEER2-VarFan,,1.25,1.15,,SZ-CAV,NONE,nil,3.877['in H2O'],DX-AIR,COMBUSTION,PNNL,FLOATING,95['F'],NONCOINCIDENT,FIXED-DRY-BULB,3.82,CONSTANT,,,VARIABLE,0.87,,0.81,1,,,,
Loading