openstudio-standards 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/data/standards/OpenStudio_Standards.xlsx +0 -0
- data/data/standards/OpenStudio_Standards_chillers.json +5 -5
- data/data/standards/OpenStudio_Standards_construction_sets.json +2 -2
- data/data/standards/OpenStudio_Standards_curve_cubics.json +12 -0
- data/data/standards/OpenStudio_Standards_heat_pumps.json +2126 -72
- data/data/standards/OpenStudio_Standards_heat_pumps_heating.json +766 -14
- data/data/standards/OpenStudio_Standards_heat_rejection.json +172 -0
- data/data/standards/OpenStudio_Standards_prototype_inputs.json +355 -267
- data/data/standards/OpenStudio_Standards_schedules.json +262 -10
- data/data/standards/OpenStudio_Standards_space_types.json +1466 -794
- data/data/standards/manage_OpenStudio_Standards.rb +19 -21
- data/data/weather/weather_info.csv +96 -0
- data/lib/openstudio-standards/btap/btap.rb +1 -1
- data/lib/openstudio-standards/btap/compliance.rb +135 -40
- data/lib/openstudio-standards/btap/envelope.rb +26 -5
- data/lib/openstudio-standards/btap/geometry.rb +11 -1
- data/lib/openstudio-standards/btap/hvac.rb +489 -56
- data/lib/openstudio-standards/btap/simmanager.rb +1 -1
- data/lib/openstudio-standards/hvac_sizing/HVACSizing.CoilHeatingDXMultiSpeed.rb +120 -0
- data/lib/openstudio-standards/hvac_sizing/Siz.CoilCoolingDXMultiSpeed.rb +151 -7
- data/lib/openstudio-standards/hvac_sizing/Siz.CoilHeatingGasMultiStage.rb +48 -7
- data/lib/openstudio-standards/hvac_sizing/Siz.Model.rb +14 -12
- data/lib/openstudio-standards/prototypes/Prototype.AirTerminalSingleDuctVAVReheat.rb +33 -7
- data/lib/openstudio-standards/prototypes/Prototype.Model.hvac.rb +123 -91
- data/lib/openstudio-standards/prototypes/Prototype.Model.rb +130 -45
- data/lib/openstudio-standards/prototypes/Prototype.Model.swh.rb +13 -7
- data/lib/openstudio-standards/prototypes/Prototype.full_service_restaurant.rb +332 -324
- data/lib/openstudio-standards/prototypes/Prototype.hospital.rb +401 -99
- data/lib/openstudio-standards/prototypes/Prototype.hvac_systems.rb +309 -222
- data/lib/openstudio-standards/prototypes/Prototype.large_hotel.rb +100 -80
- data/lib/openstudio-standards/prototypes/Prototype.large_office.rb +37 -22
- data/lib/openstudio-standards/prototypes/Prototype.medium_office.rb +68 -53
- data/lib/openstudio-standards/prototypes/Prototype.mid_rise_apartment.rb +109 -88
- data/lib/openstudio-standards/prototypes/Prototype.outpatient.rb +52 -4
- data/lib/openstudio-standards/prototypes/Prototype.primary_school.rb +230 -213
- data/lib/openstudio-standards/prototypes/Prototype.quick_service_restaurant.rb +225 -218
- data/lib/openstudio-standards/prototypes/Prototype.retail_standalone.rb +29 -17
- data/lib/openstudio-standards/prototypes/Prototype.retail_stripmall.rb +42 -32
- data/lib/openstudio-standards/prototypes/Prototype.secondary_school.rb +331 -314
- data/lib/openstudio-standards/prototypes/Prototype.small_hotel.rb +233 -219
- data/lib/openstudio-standards/prototypes/Prototype.small_office.rb +40 -32
- data/lib/openstudio-standards/prototypes/Prototype.warehouse.rb +19 -6
- data/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +576 -555
- data/lib/openstudio-standards/standards/Standards.AirTerminalSingleDuctVAVReheat.rb +3 -1
- data/lib/openstudio-standards/standards/Standards.BoilerHotWater.rb +35 -17
- data/lib/openstudio-standards/standards/Standards.ChillerElectricEIR.rb +51 -23
- data/lib/openstudio-standards/standards/Standards.CoilCoolingDXMultiSpeed.rb +255 -0
- data/lib/openstudio-standards/standards/Standards.CoilHeatingDXMultiSpeed.rb +192 -0
- data/lib/openstudio-standards/standards/Standards.CoilHeatingGasMultiStage.rb +65 -0
- data/lib/openstudio-standards/standards/Standards.Fan.rb +37 -6
- data/lib/openstudio-standards/standards/Standards.Model.rb +28 -3
- data/lib/openstudio-standards/standards/Standards.SpaceType.rb +3 -1
- data/lib/openstudio-standards/standards/Standards.WaterHeaterMixed.rb +41 -15
- data/lib/openstudio-standards/version.rb +1 -1
- data/lib/openstudio-standards/weather/Weather.Model.rb +509 -5
- data/lib/openstudio-standards/weather/Weather.stat_file.rb +145 -5
- metadata +8 -3
- data/lib/openstudio-standards/btap/environment.rb +0 -718
@@ -0,0 +1,172 @@
|
|
1
|
+
{
|
2
|
+
"heat_rejection": [
|
3
|
+
{
|
4
|
+
"template": "DOE Ref Pre-1980",
|
5
|
+
"equipment_type": "Open Cooling Tower",
|
6
|
+
"fan_type": "Centrifugal",
|
7
|
+
"minimum_performance": 20.0,
|
8
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"template": "DOE Ref Pre-1980",
|
12
|
+
"equipment_type": "Open Cooling Tower",
|
13
|
+
"fan_type": "Propeller or Axial",
|
14
|
+
"minimum_performance": 38.2,
|
15
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"template": "DOE Ref Pre-1980",
|
19
|
+
"equipment_type": "Closed Cooling Tower",
|
20
|
+
"fan_type": "Centrifugal",
|
21
|
+
"minimum_performance": 20.0,
|
22
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"template": "DOE Ref Pre-1980",
|
26
|
+
"equipment_type": "Closed Cooling Tower",
|
27
|
+
"fan_type": "Propeller or Axial",
|
28
|
+
"minimum_performance": 38.2,
|
29
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"template": "DOE Ref 1980-2004",
|
33
|
+
"equipment_type": "Open Cooling Tower",
|
34
|
+
"fan_type": "Centrifugal",
|
35
|
+
"minimum_performance": 20.0,
|
36
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"template": "DOE Ref 1980-2004",
|
40
|
+
"equipment_type": "Open Cooling Tower",
|
41
|
+
"fan_type": "Propeller or Axial",
|
42
|
+
"minimum_performance": 38.2,
|
43
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"template": "DOE Ref 1980-2004",
|
47
|
+
"equipment_type": "Closed Cooling Tower",
|
48
|
+
"fan_type": "Centrifugal",
|
49
|
+
"minimum_performance": 20.0,
|
50
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"template": "DOE Ref 1980-2004",
|
54
|
+
"equipment_type": "Closed Cooling Tower",
|
55
|
+
"fan_type": "Propeller or Axial",
|
56
|
+
"minimum_performance": 38.2,
|
57
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"template": "90.1-2004",
|
61
|
+
"equipment_type": "Open Cooling Tower",
|
62
|
+
"fan_type": "Centrifugal",
|
63
|
+
"minimum_performance": 20.0,
|
64
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"template": "90.1-2004",
|
68
|
+
"equipment_type": "Open Cooling Tower",
|
69
|
+
"fan_type": "Propeller or Axial",
|
70
|
+
"minimum_performance": 38.2,
|
71
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"template": "90.1-2004",
|
75
|
+
"equipment_type": "Closed Cooling Tower",
|
76
|
+
"fan_type": "Centrifugal",
|
77
|
+
"minimum_performance": 20.0,
|
78
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"template": "90.1-2004",
|
82
|
+
"equipment_type": "Closed Cooling Tower",
|
83
|
+
"fan_type": "Propeller or Axial",
|
84
|
+
"minimum_performance": 38.2,
|
85
|
+
"notes": "From 90.1-2004 Table 6.8.1G"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"template": "90.1-2007",
|
89
|
+
"equipment_type": "Open Cooling Tower",
|
90
|
+
"fan_type": "Centrifugal",
|
91
|
+
"minimum_performance": 20.0,
|
92
|
+
"notes": "From 90.1-2007 Table 6.8.1G"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"template": "90.1-2007",
|
96
|
+
"equipment_type": "Open Cooling Tower",
|
97
|
+
"fan_type": "Propeller or Axial",
|
98
|
+
"minimum_performance": 38.2,
|
99
|
+
"notes": "From 90.1-2007 Table 6.8.1G"
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"template": "90.1-2007",
|
103
|
+
"equipment_type": "Closed Cooling Tower",
|
104
|
+
"fan_type": "Centrifugal",
|
105
|
+
"minimum_performance": 20.0,
|
106
|
+
"notes": "From 90.1-2007 Table 6.8.1G"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"template": "90.1-2007",
|
110
|
+
"equipment_type": "Closed Cooling Tower",
|
111
|
+
"fan_type": "Propeller or Axial",
|
112
|
+
"minimum_performance": 38.2,
|
113
|
+
"notes": "From 90.1-2007 Table 6.8.1G"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"template": "90.1-2010",
|
117
|
+
"equipment_type": "Open Cooling Tower",
|
118
|
+
"fan_type": "Centrifugal",
|
119
|
+
"minimum_performance": 20.0,
|
120
|
+
"notes": "From 90.1-2010 Table 6.8.1 G"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"template": "90.1-2010",
|
124
|
+
"equipment_type": "Open Cooling Tower",
|
125
|
+
"fan_type": "Propeller or Axial",
|
126
|
+
"minimum_performance": 38.2,
|
127
|
+
"notes": "From 90.1-2010 Table 6.8.1 G"
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"template": "90.1-2010",
|
131
|
+
"equipment_type": "Closed Cooling Tower",
|
132
|
+
"fan_type": "Centrifugal",
|
133
|
+
"minimum_performance": 7.0,
|
134
|
+
"notes": "From 90.1-2010 Table 6.8.1 G"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"template": "90.1-2010",
|
138
|
+
"equipment_type": "Closed Cooling Tower",
|
139
|
+
"fan_type": "Propeller or Axial",
|
140
|
+
"minimum_performance": 14.0,
|
141
|
+
"notes": "From 90.1-2010 Table 6.8.1 G"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"template": "90.1-2013",
|
145
|
+
"equipment_type": "Open Cooling Tower",
|
146
|
+
"fan_type": "Centrifugal",
|
147
|
+
"minimum_performance": 20.0,
|
148
|
+
"notes": "From 90.1-2013 Table 6.8.1-7"
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"template": "90.1-2013",
|
152
|
+
"equipment_type": "Open Cooling Tower",
|
153
|
+
"fan_type": "Propeller or Axial",
|
154
|
+
"minimum_performance": 40.2,
|
155
|
+
"notes": "From 90.1-2013 Table 6.8.1-7"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"template": "90.1-2013",
|
159
|
+
"equipment_type": "Closed Cooling Tower",
|
160
|
+
"fan_type": "Centrifugal",
|
161
|
+
"minimum_performance": 7.0,
|
162
|
+
"notes": "From 90.1-2013 Table 6.8.1-7"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"template": "90.1-2013",
|
166
|
+
"equipment_type": "Closed Cooling Tower",
|
167
|
+
"fan_type": "Propeller or Axial",
|
168
|
+
"minimum_performance": 14.0,
|
169
|
+
"notes": "From 90.1-2013 Table 6.8.1-7"
|
170
|
+
}
|
171
|
+
]
|
172
|
+
}
|
@@ -531,62 +531,62 @@
|
|
531
531
|
{
|
532
532
|
"template": "90.1-2004",
|
533
533
|
"building_type": "Hospital",
|
534
|
-
"chw_pumping_type":
|
535
|
-
"chiller_cooling_type":
|
534
|
+
"chw_pumping_type": "const_pri_var_sec",
|
535
|
+
"chiller_cooling_type": "WaterCooled",
|
536
536
|
"chiller_condenser_type": null,
|
537
|
-
"chiller_compressor_type":
|
538
|
-
"chiller_capacity_guess":
|
539
|
-
"pszac_cooling_type":
|
540
|
-
"pszac_heating_type":
|
541
|
-
"pszac_fan_type":
|
542
|
-
"pszac_supplemental_heating_type":
|
543
|
-
"pszac_operation_schedule":
|
544
|
-
"pszac_oa_damper_schedule":
|
537
|
+
"chiller_compressor_type": "Centrifugal",
|
538
|
+
"chiller_capacity_guess": 250.0,
|
539
|
+
"pszac_cooling_type": "Water",
|
540
|
+
"pszac_heating_type": "Water",
|
541
|
+
"pszac_fan_type": "ConstantVolume",
|
542
|
+
"pszac_supplemental_heating_type": "Electricity",
|
543
|
+
"pszac_operation_schedule": "Hospital HVACOperationSchd",
|
544
|
+
"pszac_oa_damper_schedule": "Hospital BLDG_OA_FRAC_SCH",
|
545
545
|
"pszac_operation_schedule_2": null,
|
546
546
|
"pszac_oa_damper_schedule_2": null,
|
547
547
|
"pszac_operation_schedule_3": null,
|
548
548
|
"pszac_oa_damper_schedule_3": null,
|
549
549
|
"occ_sensing_exterior_lighting_power": null,
|
550
550
|
"occ_sensing_exterior_lighting_schedule": null,
|
551
|
-
"nondimming_exterior_lighting_power":
|
552
|
-
"nondimming_exterior_lighting_schedule":
|
553
|
-
"exterior_fuel_equipment1_power":
|
554
|
-
"exterior_fuel_equipment1_schedule":
|
555
|
-
"exterior_fuel_equipment2_power":
|
556
|
-
"exterior_fuel_equipment2_schedule":
|
557
|
-
"main_water_heater_volume":
|
558
|
-
"main_water_heater_fuel":
|
559
|
-
"main_water_heater_capacity":
|
560
|
-
"main_service_water_temperature":
|
561
|
-
"main_service_water_flowrate_schedule":
|
562
|
-
"main_service_water_peak_flowrate":
|
563
|
-
"main_water_use_temperature":
|
564
|
-
"main_service_water_temperature_at_fixture":
|
565
|
-
"main_service_water_pump_head":
|
566
|
-
"main_service_water_pump_motor_efficiency":
|
567
|
-
"main_service_water_parasitic_fuel_consumption_rate":
|
568
|
-
"laundry_water_heater_volume":
|
569
|
-
"laundry_water_heater_fuel":
|
570
|
-
"laundry_water_heater_capacity":
|
571
|
-
"laundry_service_water_temperature":
|
572
|
-
"laundry_service_water_flowrate_schedule":
|
573
|
-
"laundry_service_water_peak_flowrate":
|
574
|
-
"laundry_water_use_temperature":
|
575
|
-
"laundry_service_water_temperature_at_fixture":
|
551
|
+
"nondimming_exterior_lighting_power": 16636.0,
|
552
|
+
"nondimming_exterior_lighting_schedule": "Hospital Exterior_Lgt_ALWAYS_ON",
|
553
|
+
"exterior_fuel_equipment1_power": 162962.637,
|
554
|
+
"exterior_fuel_equipment1_schedule": "Hospital BLDG_ELEVATORS",
|
555
|
+
"exterior_fuel_equipment2_power": 1295.2,
|
556
|
+
"exterior_fuel_equipment2_schedule": "Hospital ELEV_LIGHT_FAN_SCH_ADD_DF",
|
557
|
+
"main_water_heater_volume": 600.0,
|
558
|
+
"main_water_heater_fuel": "Natural Gas",
|
559
|
+
"main_water_heater_capacity": 600000.0,
|
560
|
+
"main_service_water_temperature": 140.0,
|
561
|
+
"main_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
562
|
+
"main_service_water_peak_flowrate": 7.63,
|
563
|
+
"main_water_use_temperature": 140.0,
|
564
|
+
"main_service_water_temperature_at_fixture": 140.0,
|
565
|
+
"main_service_water_pump_head": 29891.0,
|
566
|
+
"main_service_water_pump_motor_efficiency": 0.3,
|
567
|
+
"main_service_water_parasitic_fuel_consumption_rate": 10024.0,
|
568
|
+
"laundry_water_heater_volume": 300.0,
|
569
|
+
"laundry_water_heater_fuel": "Natural Gas",
|
570
|
+
"laundry_water_heater_capacity": 300000.0,
|
571
|
+
"laundry_service_water_temperature": 140.0,
|
572
|
+
"laundry_service_water_flowrate_schedule": "Hospital LAUNDRY_SWH_SCH",
|
573
|
+
"laundry_service_water_peak_flowrate": 2.8,
|
574
|
+
"laundry_water_use_temperature": 180.0,
|
575
|
+
"laundry_service_water_temperature_at_fixture": 180.0,
|
576
576
|
"laundry_service_water_pump_head": null,
|
577
577
|
"laundry_service_water_pump_motor_efficiency": null,
|
578
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
579
|
-
"booster_water_heater_volume":
|
580
|
-
"booster_water_heater_fuel":
|
581
|
-
"booster_water_heater_capacity":
|
582
|
-
"booster_inlet_water_temperature":
|
583
|
-
"booster_service_water_flowrate_schedule":
|
584
|
-
"booster_service_water_peak_flowrate":
|
585
|
-
"booster_water_use_temperature":
|
586
|
-
"booster_water_temperature":
|
587
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
588
|
-
"typical_heating_setpoint":
|
589
|
-
"typical_cooling_setpoint":
|
578
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": 0.0,
|
579
|
+
"booster_water_heater_volume": 6.0,
|
580
|
+
"booster_water_heater_fuel": "Electricity",
|
581
|
+
"booster_water_heater_capacity": 10236.0,
|
582
|
+
"booster_inlet_water_temperature": 140.0,
|
583
|
+
"booster_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
584
|
+
"booster_service_water_peak_flowrate": 23.7,
|
585
|
+
"booster_water_use_temperature": 180.0,
|
586
|
+
"booster_water_temperature": 180.0,
|
587
|
+
"booster_service_water_parasitic_fuel_consumption_rate": 0.0,
|
588
|
+
"typical_heating_setpoint": "Hospital Bldg HtgSetp",
|
589
|
+
"typical_cooling_setpoint": "Hospital Bldg ClgSetp",
|
590
590
|
"ptac_cooling_type": null,
|
591
591
|
"ptac_heating_type": null,
|
592
592
|
"ptac_fan_type": null,
|
@@ -603,16 +603,16 @@
|
|
603
603
|
"unitheater_fan_control_type": null,
|
604
604
|
"unitheater_fan_static_pressure": null,
|
605
605
|
"unitheater_operation_schedule": null,
|
606
|
-
"vav_operation_schedule":
|
607
|
-
"vav_oa_damper_schedule":
|
608
|
-
"vav_fan_efficiency":
|
609
|
-
"vav_fan_pressure_rise":
|
610
|
-
"vav_fan_motor_efficiency":
|
606
|
+
"vav_operation_schedule": "Hospital HVACOperationSchd",
|
607
|
+
"vav_oa_damper_schedule": "Hospital BLDG_OA_FRAC_SCH",
|
608
|
+
"vav_fan_efficiency": 0.6045,
|
609
|
+
"vav_fan_pressure_rise": 1389.42,
|
610
|
+
"vav_fan_motor_efficiency": 0.95,
|
611
611
|
"doas_fan_maximum_flow_rate": null,
|
612
612
|
"doas_oa_damper_schedule": null,
|
613
613
|
"doas_economizer_control_type": null,
|
614
|
-
"elevator_type":
|
615
|
-
"number_of_elevators":
|
614
|
+
"elevator_type": "Traction",
|
615
|
+
"number_of_elevators": 8.0,
|
616
616
|
"elevator_schedule": null,
|
617
617
|
"elevator_fan_schedule": null
|
618
618
|
},
|
@@ -624,9 +624,9 @@
|
|
624
624
|
"chiller_condenser_type": null,
|
625
625
|
"chiller_compressor_type": "Centrifugal",
|
626
626
|
"chiller_capacity_guess": 250.0,
|
627
|
-
"pszac_cooling_type": "
|
627
|
+
"pszac_cooling_type": "Water",
|
628
628
|
"pszac_heating_type": "Water",
|
629
|
-
"pszac_fan_type": "
|
629
|
+
"pszac_fan_type": "ConstantVolume",
|
630
630
|
"pszac_supplemental_heating_type": "Electricity",
|
631
631
|
"pszac_operation_schedule": "Hospital HVACOperationSchd",
|
632
632
|
"pszac_oa_damper_schedule": "Hospital BLDG_OA_FRAC_SCH",
|
@@ -638,10 +638,10 @@
|
|
638
638
|
"occ_sensing_exterior_lighting_schedule": null,
|
639
639
|
"nondimming_exterior_lighting_power": 16636.0,
|
640
640
|
"nondimming_exterior_lighting_schedule": "Hospital Exterior_Lgt_ALWAYS_ON",
|
641
|
-
"exterior_fuel_equipment1_power":
|
642
|
-
"exterior_fuel_equipment1_schedule":
|
643
|
-
"exterior_fuel_equipment2_power":
|
644
|
-
"exterior_fuel_equipment2_schedule":
|
641
|
+
"exterior_fuel_equipment1_power": 162962.637,
|
642
|
+
"exterior_fuel_equipment1_schedule": "Hospital BLDG_ELEVATORS",
|
643
|
+
"exterior_fuel_equipment2_power": 1295.2,
|
644
|
+
"exterior_fuel_equipment2_schedule": "Hospital ELEV_LIGHT_FAN_SCH_ADD_DF",
|
645
645
|
"main_water_heater_volume": 600.0,
|
646
646
|
"main_water_heater_fuel": "Natural Gas",
|
647
647
|
"main_water_heater_capacity": 600000.0,
|
@@ -652,7 +652,7 @@
|
|
652
652
|
"main_service_water_temperature_at_fixture": 140.0,
|
653
653
|
"main_service_water_pump_head": 29891.0,
|
654
654
|
"main_service_water_pump_motor_efficiency": 0.3,
|
655
|
-
"main_service_water_parasitic_fuel_consumption_rate":
|
655
|
+
"main_service_water_parasitic_fuel_consumption_rate": 10024.0,
|
656
656
|
"laundry_water_heater_volume": 300.0,
|
657
657
|
"laundry_water_heater_fuel": "Natural Gas",
|
658
658
|
"laundry_water_heater_capacity": 300000.0,
|
@@ -663,18 +663,18 @@
|
|
663
663
|
"laundry_service_water_temperature_at_fixture": 180.0,
|
664
664
|
"laundry_service_water_pump_head": null,
|
665
665
|
"laundry_service_water_pump_motor_efficiency": null,
|
666
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
667
|
-
"booster_water_heater_volume":
|
668
|
-
"booster_water_heater_fuel":
|
669
|
-
"booster_water_heater_capacity":
|
670
|
-
"booster_inlet_water_temperature":
|
671
|
-
"booster_service_water_flowrate_schedule":
|
672
|
-
"booster_service_water_peak_flowrate":
|
673
|
-
"booster_water_use_temperature":
|
674
|
-
"booster_water_temperature":
|
675
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
676
|
-
"typical_heating_setpoint":
|
677
|
-
"typical_cooling_setpoint":
|
666
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": 0.0,
|
667
|
+
"booster_water_heater_volume": 6.0,
|
668
|
+
"booster_water_heater_fuel": "Electricity",
|
669
|
+
"booster_water_heater_capacity": 10236.0,
|
670
|
+
"booster_inlet_water_temperature": 140.0,
|
671
|
+
"booster_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
672
|
+
"booster_service_water_peak_flowrate": 23.7,
|
673
|
+
"booster_water_use_temperature": 180.0,
|
674
|
+
"booster_water_temperature": 180.0,
|
675
|
+
"booster_service_water_parasitic_fuel_consumption_rate": 0.0,
|
676
|
+
"typical_heating_setpoint": "Hospital Bldg HtgSetp",
|
677
|
+
"typical_cooling_setpoint": "Hospital Bldg ClgSetp",
|
678
678
|
"ptac_cooling_type": null,
|
679
679
|
"ptac_heating_type": null,
|
680
680
|
"ptac_fan_type": null,
|
@@ -691,16 +691,16 @@
|
|
691
691
|
"unitheater_fan_control_type": null,
|
692
692
|
"unitheater_fan_static_pressure": null,
|
693
693
|
"unitheater_operation_schedule": null,
|
694
|
-
"vav_operation_schedule":
|
695
|
-
"vav_oa_damper_schedule":
|
696
|
-
"vav_fan_efficiency":
|
697
|
-
"vav_fan_pressure_rise":
|
698
|
-
"vav_fan_motor_efficiency":
|
694
|
+
"vav_operation_schedule": "Hospital HVACOperationSchd",
|
695
|
+
"vav_oa_damper_schedule": "Hospital BLDG_OA_FRAC_SCH",
|
696
|
+
"vav_fan_efficiency": 0.6045,
|
697
|
+
"vav_fan_pressure_rise": 1389.42,
|
698
|
+
"vav_fan_motor_efficiency": 0.95,
|
699
699
|
"doas_fan_maximum_flow_rate": null,
|
700
700
|
"doas_oa_damper_schedule": null,
|
701
701
|
"doas_economizer_control_type": null,
|
702
|
-
"elevator_type":
|
703
|
-
"number_of_elevators":
|
702
|
+
"elevator_type": "Traction",
|
703
|
+
"number_of_elevators": 8.0,
|
704
704
|
"elevator_schedule": null,
|
705
705
|
"elevator_fan_schedule": null
|
706
706
|
},
|
@@ -782,7 +782,7 @@
|
|
782
782
|
"vav_operation_schedule": "Hospital HVACOperationSchd",
|
783
783
|
"vav_oa_damper_schedule": "Hospital BLDG_OA_FRAC_SCH",
|
784
784
|
"vav_fan_efficiency": 0.6045,
|
785
|
-
"vav_fan_pressure_rise":
|
785
|
+
"vav_fan_pressure_rise": 1389.42,
|
786
786
|
"vav_fan_motor_efficiency": 0.95,
|
787
787
|
"doas_fan_maximum_flow_rate": null,
|
788
788
|
"doas_oa_damper_schedule": null,
|
@@ -883,17 +883,105 @@
|
|
883
883
|
{
|
884
884
|
"template": "90.1-2013",
|
885
885
|
"building_type": "Hospital",
|
886
|
+
"chw_pumping_type": "const_pri_var_sec",
|
887
|
+
"chiller_cooling_type": "WaterCooled",
|
888
|
+
"chiller_condenser_type": null,
|
889
|
+
"chiller_compressor_type": "Centrifugal",
|
890
|
+
"chiller_capacity_guess": 250.0,
|
891
|
+
"pszac_cooling_type": "Water",
|
892
|
+
"pszac_heating_type": "Water",
|
893
|
+
"pszac_fan_type": "ConstantVolume",
|
894
|
+
"pszac_supplemental_heating_type": "Electricity",
|
895
|
+
"pszac_operation_schedule": "Hospital HVACOperationSchd",
|
896
|
+
"pszac_oa_damper_schedule": "Hospital BLDG_OA_FRAC_SCH",
|
897
|
+
"pszac_operation_schedule_2": null,
|
898
|
+
"pszac_oa_damper_schedule_2": null,
|
899
|
+
"pszac_operation_schedule_3": null,
|
900
|
+
"pszac_oa_damper_schedule_3": null,
|
901
|
+
"occ_sensing_exterior_lighting_power": null,
|
902
|
+
"occ_sensing_exterior_lighting_schedule": null,
|
903
|
+
"nondimming_exterior_lighting_power": 13088.0,
|
904
|
+
"nondimming_exterior_lighting_schedule": "Hospital Exterior_Lgt_ALWAYS_ON",
|
905
|
+
"exterior_fuel_equipment1_power": 162962.637,
|
906
|
+
"exterior_fuel_equipment1_schedule": "Hospital BLDG_ELEVATORS",
|
907
|
+
"exterior_fuel_equipment2_power": 501.0,
|
908
|
+
"exterior_fuel_equipment2_schedule": "Hospital ELEV_LIGHT_FAN_SCH_ADD_DF",
|
909
|
+
"main_water_heater_volume": 600.0,
|
910
|
+
"main_water_heater_fuel": "Natural Gas",
|
911
|
+
"main_water_heater_capacity": 600000.0,
|
912
|
+
"main_service_water_temperature": 140.0,
|
913
|
+
"main_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
914
|
+
"main_service_water_peak_flowrate": 7.63,
|
915
|
+
"main_water_use_temperature": 140.0,
|
916
|
+
"main_service_water_temperature_at_fixture": 140.0,
|
917
|
+
"main_service_water_pump_head": 29891.0,
|
918
|
+
"main_service_water_pump_motor_efficiency": 0.3,
|
919
|
+
"main_service_water_parasitic_fuel_consumption_rate": 10024.0,
|
920
|
+
"laundry_water_heater_volume": 300.0,
|
921
|
+
"laundry_water_heater_fuel": "Natural Gas",
|
922
|
+
"laundry_water_heater_capacity": 300000.0,
|
923
|
+
"laundry_service_water_temperature": 140.0,
|
924
|
+
"laundry_service_water_flowrate_schedule": "Hospital LAUNDRY_SWH_SCH",
|
925
|
+
"laundry_service_water_peak_flowrate": 2.8,
|
926
|
+
"laundry_water_use_temperature": 180.0,
|
927
|
+
"laundry_service_water_temperature_at_fixture": 180.0,
|
928
|
+
"laundry_service_water_pump_head": null,
|
929
|
+
"laundry_service_water_pump_motor_efficiency": null,
|
930
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": 0.0,
|
931
|
+
"booster_water_heater_volume": 6.0,
|
932
|
+
"booster_water_heater_fuel": "Electricity",
|
933
|
+
"booster_water_heater_capacity": 10236.0,
|
934
|
+
"booster_inlet_water_temperature": 140.0,
|
935
|
+
"booster_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
936
|
+
"booster_service_water_peak_flowrate": 23.7,
|
937
|
+
"booster_water_use_temperature": 180.0,
|
938
|
+
"booster_water_temperature": 180.0,
|
939
|
+
"booster_service_water_parasitic_fuel_consumption_rate": 0.0,
|
940
|
+
"typical_heating_setpoint": "Hospital Bldg HtgSetp",
|
941
|
+
"typical_cooling_setpoint": "Hospital Bldg ClgSetp",
|
942
|
+
"ptac_cooling_type": null,
|
943
|
+
"ptac_heating_type": null,
|
944
|
+
"ptac_fan_type": null,
|
945
|
+
"ptac_operation_schedule": null,
|
946
|
+
"ptac_oa_damper_schedule": null,
|
947
|
+
"sac_cooling_type": null,
|
948
|
+
"sac_heating_type": null,
|
949
|
+
"sac_fan_type": null,
|
950
|
+
"sac_operation_schedule": null,
|
951
|
+
"sac_operation_schedule_meeting": null,
|
952
|
+
"sac_oa_damper_schedule": null,
|
953
|
+
"unitheater_heating_type": null,
|
954
|
+
"unitheater_fan_type": null,
|
955
|
+
"unitheater_fan_control_type": null,
|
956
|
+
"unitheater_fan_static_pressure": null,
|
957
|
+
"unitheater_operation_schedule": null,
|
958
|
+
"vav_operation_schedule": "Hospital HVACOperationSchd",
|
959
|
+
"vav_oa_damper_schedule": "Hospital BLDG_OA_FRAC_SCH",
|
960
|
+
"vav_fan_efficiency": 0.6045,
|
961
|
+
"vav_fan_pressure_rise": 1389.42,
|
962
|
+
"vav_fan_motor_efficiency": 0.95,
|
963
|
+
"doas_fan_maximum_flow_rate": null,
|
964
|
+
"doas_oa_damper_schedule": null,
|
965
|
+
"doas_economizer_control_type": null,
|
966
|
+
"elevator_type": "Traction",
|
967
|
+
"number_of_elevators": 8.0,
|
968
|
+
"elevator_schedule": null,
|
969
|
+
"elevator_fan_schedule": null
|
970
|
+
},
|
971
|
+
{
|
972
|
+
"template": "DOE Ref Pre-1980",
|
973
|
+
"building_type": "Hospital",
|
886
974
|
"chw_pumping_type": "const_pri",
|
887
|
-
"chiller_cooling_type": "
|
888
|
-
"chiller_condenser_type":
|
889
|
-
"chiller_compressor_type":
|
890
|
-
"chiller_capacity_guess":
|
891
|
-
"pszac_cooling_type":
|
892
|
-
"pszac_heating_type":
|
893
|
-
"pszac_fan_type":
|
894
|
-
"pszac_supplemental_heating_type":
|
895
|
-
"pszac_operation_schedule":
|
896
|
-
"pszac_oa_damper_schedule":
|
975
|
+
"chiller_cooling_type": "WaterCooled",
|
976
|
+
"chiller_condenser_type": null,
|
977
|
+
"chiller_compressor_type": "Centrifugal",
|
978
|
+
"chiller_capacity_guess": 250.0,
|
979
|
+
"pszac_cooling_type": "Water",
|
980
|
+
"pszac_heating_type": "Water",
|
981
|
+
"pszac_fan_type": "ConstantVolume",
|
982
|
+
"pszac_supplemental_heating_type": "Electricity",
|
983
|
+
"pszac_operation_schedule": "Hospital HVACOperationSchd",
|
984
|
+
"pszac_oa_damper_schedule": "Hospital BLDG_OA_FRAC_SCH",
|
897
985
|
"pszac_operation_schedule_2": null,
|
898
986
|
"pszac_oa_damper_schedule_2": null,
|
899
987
|
"pszac_operation_schedule_3": null,
|
@@ -902,41 +990,41 @@
|
|
902
990
|
"occ_sensing_exterior_lighting_schedule": null,
|
903
991
|
"nondimming_exterior_lighting_power": 21874.0,
|
904
992
|
"nondimming_exterior_lighting_schedule": "Hospital Exterior_Lgt_ALWAYS_ON",
|
905
|
-
"exterior_fuel_equipment1_power":
|
906
|
-
"exterior_fuel_equipment1_schedule":
|
907
|
-
"exterior_fuel_equipment2_power":
|
908
|
-
"exterior_fuel_equipment2_schedule":
|
909
|
-
"main_water_heater_volume":
|
993
|
+
"exterior_fuel_equipment1_power": 162962.637,
|
994
|
+
"exterior_fuel_equipment1_schedule": "Hospital BLDG_ELEVATORS",
|
995
|
+
"exterior_fuel_equipment2_power": 847.2,
|
996
|
+
"exterior_fuel_equipment2_schedule": "Hospital ELEV_LIGHT_FAN_SCH_ADD_DF",
|
997
|
+
"main_water_heater_volume": 600.0,
|
910
998
|
"main_water_heater_fuel": "Natural Gas",
|
911
|
-
"main_water_heater_capacity":
|
999
|
+
"main_water_heater_capacity": 600000.0,
|
912
1000
|
"main_service_water_temperature": 140.0,
|
913
1001
|
"main_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
914
|
-
"main_service_water_peak_flowrate": 7.
|
915
|
-
"main_water_use_temperature":
|
916
|
-
"main_service_water_temperature_at_fixture":
|
1002
|
+
"main_service_water_peak_flowrate": 7.63,
|
1003
|
+
"main_water_use_temperature": 140.0,
|
1004
|
+
"main_service_water_temperature_at_fixture": 140.0,
|
917
1005
|
"main_service_water_pump_head": 29891.0,
|
918
1006
|
"main_service_water_pump_motor_efficiency": 0.3,
|
919
|
-
"main_service_water_parasitic_fuel_consumption_rate":
|
920
|
-
"laundry_water_heater_volume":
|
1007
|
+
"main_service_water_parasitic_fuel_consumption_rate": 10024.0,
|
1008
|
+
"laundry_water_heater_volume": 300.0,
|
921
1009
|
"laundry_water_heater_fuel": "Natural Gas",
|
922
|
-
"laundry_water_heater_capacity":
|
1010
|
+
"laundry_water_heater_capacity": 300000.0,
|
923
1011
|
"laundry_service_water_temperature": 140.0,
|
924
|
-
"laundry_service_water_flowrate_schedule": "Hospital
|
925
|
-
"laundry_service_water_peak_flowrate":
|
926
|
-
"laundry_water_use_temperature":
|
927
|
-
"laundry_service_water_temperature_at_fixture":
|
928
|
-
"laundry_service_water_pump_head":
|
929
|
-
"laundry_service_water_pump_motor_efficiency":
|
930
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
931
|
-
"booster_water_heater_volume":
|
932
|
-
"booster_water_heater_fuel":
|
933
|
-
"booster_water_heater_capacity":
|
934
|
-
"booster_inlet_water_temperature":
|
935
|
-
"booster_service_water_flowrate_schedule":
|
936
|
-
"booster_service_water_peak_flowrate":
|
937
|
-
"booster_water_use_temperature":
|
938
|
-
"booster_water_temperature":
|
939
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
1012
|
+
"laundry_service_water_flowrate_schedule": "Hospital LAUNDRY_SWH_SCH",
|
1013
|
+
"laundry_service_water_peak_flowrate": 2.8,
|
1014
|
+
"laundry_water_use_temperature": 180.0,
|
1015
|
+
"laundry_service_water_temperature_at_fixture": 180.0,
|
1016
|
+
"laundry_service_water_pump_head": null,
|
1017
|
+
"laundry_service_water_pump_motor_efficiency": null,
|
1018
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": 0.0,
|
1019
|
+
"booster_water_heater_volume": 6.0,
|
1020
|
+
"booster_water_heater_fuel": "Electricity",
|
1021
|
+
"booster_water_heater_capacity": 10236.0,
|
1022
|
+
"booster_inlet_water_temperature": 140.0,
|
1023
|
+
"booster_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
1024
|
+
"booster_service_water_peak_flowrate": 23.7,
|
1025
|
+
"booster_water_use_temperature": 180.0,
|
1026
|
+
"booster_water_temperature": 180.0,
|
1027
|
+
"booster_service_water_parasitic_fuel_consumption_rate": 0.0,
|
940
1028
|
"typical_heating_setpoint": "Hospital Bldg HtgSetp",
|
941
1029
|
"typical_cooling_setpoint": "Hospital Bldg ClgSetp",
|
942
1030
|
"ptac_cooling_type": null,
|
@@ -969,19 +1057,19 @@
|
|
969
1057
|
"elevator_fan_schedule": null
|
970
1058
|
},
|
971
1059
|
{
|
972
|
-
"template": "DOE Ref
|
1060
|
+
"template": "DOE Ref 1980-2004",
|
973
1061
|
"building_type": "Hospital",
|
974
1062
|
"chw_pumping_type": "const_pri",
|
975
|
-
"chiller_cooling_type": "
|
976
|
-
"chiller_condenser_type":
|
977
|
-
"chiller_compressor_type":
|
978
|
-
"chiller_capacity_guess":
|
979
|
-
"pszac_cooling_type":
|
980
|
-
"pszac_heating_type":
|
981
|
-
"pszac_fan_type":
|
982
|
-
"pszac_supplemental_heating_type":
|
983
|
-
"pszac_operation_schedule":
|
984
|
-
"pszac_oa_damper_schedule":
|
1063
|
+
"chiller_cooling_type": "WaterCooled",
|
1064
|
+
"chiller_condenser_type": null,
|
1065
|
+
"chiller_compressor_type": "Centrifugal",
|
1066
|
+
"chiller_capacity_guess": 250.0,
|
1067
|
+
"pszac_cooling_type": "Water",
|
1068
|
+
"pszac_heating_type": "Water",
|
1069
|
+
"pszac_fan_type": "ConstantVolume",
|
1070
|
+
"pszac_supplemental_heating_type": "Electricity",
|
1071
|
+
"pszac_operation_schedule": "Hospital HVACOperationSchd",
|
1072
|
+
"pszac_oa_damper_schedule": "Hospital BLDG_OA_FRAC_SCH",
|
985
1073
|
"pszac_operation_schedule_2": null,
|
986
1074
|
"pszac_oa_damper_schedule_2": null,
|
987
1075
|
"pszac_operation_schedule_3": null,
|
@@ -990,41 +1078,41 @@
|
|
990
1078
|
"occ_sensing_exterior_lighting_schedule": null,
|
991
1079
|
"nondimming_exterior_lighting_power": 21874.0,
|
992
1080
|
"nondimming_exterior_lighting_schedule": "Hospital Exterior_Lgt_ALWAYS_ON",
|
993
|
-
"exterior_fuel_equipment1_power":
|
994
|
-
"exterior_fuel_equipment1_schedule":
|
995
|
-
"exterior_fuel_equipment2_power":
|
996
|
-
"exterior_fuel_equipment2_schedule":
|
997
|
-
"main_water_heater_volume":
|
1081
|
+
"exterior_fuel_equipment1_power": 162962.637,
|
1082
|
+
"exterior_fuel_equipment1_schedule": "Hospital BLDG_ELEVATORS",
|
1083
|
+
"exterior_fuel_equipment2_power": 847.2,
|
1084
|
+
"exterior_fuel_equipment2_schedule": "Hospital ELEV_LIGHT_FAN_SCH_ADD_DF",
|
1085
|
+
"main_water_heater_volume": 600.0,
|
998
1086
|
"main_water_heater_fuel": "Natural Gas",
|
999
|
-
"main_water_heater_capacity":
|
1087
|
+
"main_water_heater_capacity": 600000.0,
|
1000
1088
|
"main_service_water_temperature": 140.0,
|
1001
1089
|
"main_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
1002
|
-
"main_service_water_peak_flowrate": 7.
|
1003
|
-
"main_water_use_temperature":
|
1004
|
-
"main_service_water_temperature_at_fixture":
|
1090
|
+
"main_service_water_peak_flowrate": 7.63,
|
1091
|
+
"main_water_use_temperature": 140.0,
|
1092
|
+
"main_service_water_temperature_at_fixture": 140.0,
|
1005
1093
|
"main_service_water_pump_head": 29891.0,
|
1006
1094
|
"main_service_water_pump_motor_efficiency": 0.3,
|
1007
|
-
"main_service_water_parasitic_fuel_consumption_rate":
|
1008
|
-
"laundry_water_heater_volume":
|
1095
|
+
"main_service_water_parasitic_fuel_consumption_rate": 10024.0,
|
1096
|
+
"laundry_water_heater_volume": 300.0,
|
1009
1097
|
"laundry_water_heater_fuel": "Natural Gas",
|
1010
|
-
"laundry_water_heater_capacity":
|
1098
|
+
"laundry_water_heater_capacity": 300000.0,
|
1011
1099
|
"laundry_service_water_temperature": 140.0,
|
1012
|
-
"laundry_service_water_flowrate_schedule": "Hospital
|
1013
|
-
"laundry_service_water_peak_flowrate":
|
1014
|
-
"laundry_water_use_temperature":
|
1015
|
-
"laundry_service_water_temperature_at_fixture":
|
1016
|
-
"laundry_service_water_pump_head":
|
1017
|
-
"laundry_service_water_pump_motor_efficiency":
|
1018
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
1019
|
-
"booster_water_heater_volume":
|
1020
|
-
"booster_water_heater_fuel":
|
1021
|
-
"booster_water_heater_capacity":
|
1022
|
-
"booster_inlet_water_temperature":
|
1023
|
-
"booster_service_water_flowrate_schedule":
|
1024
|
-
"booster_service_water_peak_flowrate":
|
1025
|
-
"booster_water_use_temperature":
|
1026
|
-
"booster_water_temperature":
|
1027
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
1100
|
+
"laundry_service_water_flowrate_schedule": "Hospital LAUNDRY_SWH_SCH",
|
1101
|
+
"laundry_service_water_peak_flowrate": 2.8,
|
1102
|
+
"laundry_water_use_temperature": 180.0,
|
1103
|
+
"laundry_service_water_temperature_at_fixture": 180.0,
|
1104
|
+
"laundry_service_water_pump_head": null,
|
1105
|
+
"laundry_service_water_pump_motor_efficiency": null,
|
1106
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": 0.0,
|
1107
|
+
"booster_water_heater_volume": 6.0,
|
1108
|
+
"booster_water_heater_fuel": "Electricity",
|
1109
|
+
"booster_water_heater_capacity": 10236.0,
|
1110
|
+
"booster_inlet_water_temperature": 140.0,
|
1111
|
+
"booster_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
1112
|
+
"booster_service_water_peak_flowrate": 23.7,
|
1113
|
+
"booster_water_use_temperature": 180.0,
|
1114
|
+
"booster_water_temperature": 180.0,
|
1115
|
+
"booster_service_water_parasitic_fuel_consumption_rate": 0.0,
|
1028
1116
|
"typical_heating_setpoint": "Hospital Bldg HtgSetp",
|
1029
1117
|
"typical_cooling_setpoint": "Hospital Bldg ClgSetp",
|
1030
1118
|
"ptac_cooling_type": null,
|
@@ -8391,7 +8479,7 @@
|
|
8391
8479
|
"main_water_heater_capacity": 300000.0,
|
8392
8480
|
"main_service_water_temperature": 140.0,
|
8393
8481
|
"main_service_water_flowrate_schedule": "OfficeLarge BLDG_SWH_SCH",
|
8394
|
-
"main_service_water_peak_flowrate":
|
8482
|
+
"main_service_water_peak_flowrate": null,
|
8395
8483
|
"main_water_use_temperature": 140.0,
|
8396
8484
|
"main_service_water_temperature_at_fixture": 140.0,
|
8397
8485
|
"main_service_water_pump_head": 29891.0,
|
@@ -8416,7 +8504,7 @@
|
|
8416
8504
|
"booster_service_water_peak_flowrate": null,
|
8417
8505
|
"booster_water_use_temperature": null,
|
8418
8506
|
"booster_water_temperature": null,
|
8419
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
8507
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
8420
8508
|
"typical_heating_setpoint": "OfficeLarge HTGSETP_SCH_YES_OPTIMUM",
|
8421
8509
|
"typical_cooling_setpoint": "OfficeLarge CLGSETP_SCH_NO_SETBACK",
|
8422
8510
|
"ptac_cooling_type": null,
|
@@ -8479,7 +8567,7 @@
|
|
8479
8567
|
"main_water_heater_capacity": 200000.0,
|
8480
8568
|
"main_service_water_temperature": 140.0,
|
8481
8569
|
"main_service_water_flowrate_schedule": "RestaurantSitDown BLDG_SWH_SCH",
|
8482
|
-
"main_service_water_peak_flowrate":
|
8570
|
+
"main_service_water_peak_flowrate": null,
|
8483
8571
|
"main_water_use_temperature": 140.0,
|
8484
8572
|
"main_service_water_temperature_at_fixture": 131.0,
|
8485
8573
|
"main_service_water_pump_head": 29891.0,
|
@@ -8495,15 +8583,15 @@
|
|
8495
8583
|
"laundry_service_water_temperature_at_fixture": null,
|
8496
8584
|
"laundry_service_water_pump_head": null,
|
8497
8585
|
"laundry_service_water_pump_motor_efficiency": null,
|
8498
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
8499
|
-
"booster_water_heater_volume":
|
8500
|
-
"booster_water_heater_fuel":
|
8501
|
-
"booster_water_heater_capacity":
|
8502
|
-
"booster_inlet_water_temperature":
|
8503
|
-
"booster_service_water_flowrate_schedule":
|
8504
|
-
"booster_service_water_peak_flowrate":
|
8505
|
-
"booster_water_use_temperature":
|
8506
|
-
"booster_water_temperature":
|
8586
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
8587
|
+
"booster_water_heater_volume": null,
|
8588
|
+
"booster_water_heater_fuel": null,
|
8589
|
+
"booster_water_heater_capacity": null,
|
8590
|
+
"booster_inlet_water_temperature": null,
|
8591
|
+
"booster_service_water_flowrate_schedule": null,
|
8592
|
+
"booster_service_water_peak_flowrate": null,
|
8593
|
+
"booster_water_use_temperature": null,
|
8594
|
+
"booster_water_temperature": null,
|
8507
8595
|
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
8508
8596
|
"typical_heating_setpoint": "RestaurantSitDown HTGSETP_SCH_NO_OPTIMUM",
|
8509
8597
|
"typical_cooling_setpoint": "RestaurantSitDown CLGSETP_SCH_NO_SETBACK",
|
@@ -8567,32 +8655,32 @@
|
|
8567
8655
|
"main_water_heater_capacity": 600000.0,
|
8568
8656
|
"main_service_water_temperature": 140.0,
|
8569
8657
|
"main_service_water_flowrate_schedule": "Hospital BLDG_SWH_SCH",
|
8570
|
-
"main_service_water_peak_flowrate":
|
8658
|
+
"main_service_water_peak_flowrate": null,
|
8571
8659
|
"main_water_use_temperature": 140.0,
|
8572
8660
|
"main_service_water_temperature_at_fixture": 140.0,
|
8573
8661
|
"main_service_water_pump_head": 29891.0,
|
8574
8662
|
"main_service_water_pump_motor_efficiency": 0.3,
|
8575
8663
|
"main_service_water_parasitic_fuel_consumption_rate": 68.24,
|
8576
|
-
"laundry_water_heater_volume":
|
8577
|
-
"laundry_water_heater_fuel":
|
8578
|
-
"laundry_water_heater_capacity":
|
8579
|
-
"laundry_service_water_temperature":
|
8580
|
-
"laundry_service_water_flowrate_schedule":
|
8581
|
-
"laundry_service_water_peak_flowrate":
|
8582
|
-
"laundry_water_use_temperature":
|
8583
|
-
"laundry_service_water_temperature_at_fixture":
|
8584
|
-
"laundry_service_water_pump_head":
|
8585
|
-
"laundry_service_water_pump_motor_efficiency":
|
8586
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
8587
|
-
"booster_water_heater_volume":
|
8588
|
-
"booster_water_heater_fuel":
|
8589
|
-
"booster_water_heater_capacity":
|
8590
|
-
"booster_inlet_water_temperature":
|
8591
|
-
"booster_service_water_flowrate_schedule":
|
8592
|
-
"booster_service_water_peak_flowrate":
|
8593
|
-
"booster_water_use_temperature":
|
8594
|
-
"booster_water_temperature":
|
8595
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
8664
|
+
"laundry_water_heater_volume": null,
|
8665
|
+
"laundry_water_heater_fuel": null,
|
8666
|
+
"laundry_water_heater_capacity": null,
|
8667
|
+
"laundry_service_water_temperature": null,
|
8668
|
+
"laundry_service_water_flowrate_schedule": null,
|
8669
|
+
"laundry_service_water_peak_flowrate": null,
|
8670
|
+
"laundry_water_use_temperature": null,
|
8671
|
+
"laundry_service_water_temperature_at_fixture": null,
|
8672
|
+
"laundry_service_water_pump_head": null,
|
8673
|
+
"laundry_service_water_pump_motor_efficiency": null,
|
8674
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
8675
|
+
"booster_water_heater_volume": null,
|
8676
|
+
"booster_water_heater_fuel": null,
|
8677
|
+
"booster_water_heater_capacity": null,
|
8678
|
+
"booster_inlet_water_temperature": null,
|
8679
|
+
"booster_service_water_flowrate_schedule": null,
|
8680
|
+
"booster_service_water_peak_flowrate": null,
|
8681
|
+
"booster_water_use_temperature": null,
|
8682
|
+
"booster_water_temperature": null,
|
8683
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
8596
8684
|
"typical_heating_setpoint": "Hospital Bldg HtgSetp",
|
8597
8685
|
"typical_cooling_setpoint": "Hospital Bldg ClgSetp",
|
8598
8686
|
"ptac_cooling_type": null,
|
@@ -8655,32 +8743,32 @@
|
|
8655
8743
|
"main_water_heater_capacity": 600000.0,
|
8656
8744
|
"main_service_water_temperature": 140.0,
|
8657
8745
|
"main_service_water_flowrate_schedule": "HotelLarge GuestRoom_SWH_Sch",
|
8658
|
-
"main_service_water_peak_flowrate":
|
8746
|
+
"main_service_water_peak_flowrate": null,
|
8659
8747
|
"main_water_use_temperature": 140.0,
|
8660
8748
|
"main_service_water_temperature_at_fixture": 110.0,
|
8661
8749
|
"main_service_water_pump_head": 29891.0,
|
8662
8750
|
"main_service_water_pump_motor_efficiency": 0.3,
|
8663
8751
|
"main_service_water_parasitic_fuel_consumption_rate": 7851.34,
|
8664
|
-
"laundry_water_heater_volume":
|
8665
|
-
"laundry_water_heater_fuel":
|
8666
|
-
"laundry_water_heater_capacity":
|
8667
|
-
"laundry_service_water_temperature":
|
8668
|
-
"laundry_service_water_flowrate_schedule":
|
8669
|
-
"laundry_service_water_peak_flowrate":
|
8670
|
-
"laundry_water_use_temperature":
|
8671
|
-
"laundry_service_water_temperature_at_fixture":
|
8752
|
+
"laundry_water_heater_volume": null,
|
8753
|
+
"laundry_water_heater_fuel": null,
|
8754
|
+
"laundry_water_heater_capacity": null,
|
8755
|
+
"laundry_service_water_temperature": null,
|
8756
|
+
"laundry_service_water_flowrate_schedule": null,
|
8757
|
+
"laundry_service_water_peak_flowrate": null,
|
8758
|
+
"laundry_water_use_temperature": null,
|
8759
|
+
"laundry_service_water_temperature_at_fixture": null,
|
8672
8760
|
"laundry_service_water_pump_head": null,
|
8673
8761
|
"laundry_service_water_pump_motor_efficiency": null,
|
8674
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
8675
|
-
"booster_water_heater_volume":
|
8676
|
-
"booster_water_heater_fuel":
|
8677
|
-
"booster_water_heater_capacity":
|
8678
|
-
"booster_inlet_water_temperature":
|
8679
|
-
"booster_service_water_flowrate_schedule":
|
8680
|
-
"booster_service_water_peak_flowrate":
|
8681
|
-
"booster_water_use_temperature":
|
8682
|
-
"booster_water_temperature":
|
8683
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
8762
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
8763
|
+
"booster_water_heater_volume": null,
|
8764
|
+
"booster_water_heater_fuel": null,
|
8765
|
+
"booster_water_heater_capacity": null,
|
8766
|
+
"booster_inlet_water_temperature": null,
|
8767
|
+
"booster_service_water_flowrate_schedule": null,
|
8768
|
+
"booster_service_water_peak_flowrate": null,
|
8769
|
+
"booster_water_use_temperature": null,
|
8770
|
+
"booster_water_temperature": null,
|
8771
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
8684
8772
|
"typical_heating_setpoint": null,
|
8685
8773
|
"typical_cooling_setpoint": null,
|
8686
8774
|
"ptac_cooling_type": null,
|
@@ -8743,7 +8831,7 @@
|
|
8743
8831
|
"main_water_heater_capacity": 1150000.0,
|
8744
8832
|
"main_service_water_temperature": 140.0,
|
8745
8833
|
"main_service_water_flowrate_schedule": "ApartmentMidRise APT_DHW_SCH",
|
8746
|
-
"main_service_water_peak_flowrate":
|
8834
|
+
"main_service_water_peak_flowrate": null,
|
8747
8835
|
"main_water_use_temperature": 140.0,
|
8748
8836
|
"main_service_water_temperature_at_fixture": 140.0,
|
8749
8837
|
"main_service_water_pump_head": 0.01,
|
@@ -9007,7 +9095,7 @@
|
|
9007
9095
|
"main_water_heater_capacity": 600000.0,
|
9008
9096
|
"main_service_water_temperature": 140.0,
|
9009
9097
|
"main_service_water_flowrate_schedule": "OutPatientHealthCare BLDG_SWH_SCH",
|
9010
|
-
"main_service_water_peak_flowrate":
|
9098
|
+
"main_service_water_peak_flowrate": null,
|
9011
9099
|
"main_water_use_temperature": 140.0,
|
9012
9100
|
"main_service_water_temperature_at_fixture": 140.0,
|
9013
9101
|
"main_service_water_pump_head": 29891.0,
|
@@ -9023,7 +9111,7 @@
|
|
9023
9111
|
"laundry_service_water_temperature_at_fixture": null,
|
9024
9112
|
"laundry_service_water_pump_head": null,
|
9025
9113
|
"laundry_service_water_pump_motor_efficiency": null,
|
9026
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
9114
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
9027
9115
|
"booster_water_heater_volume": null,
|
9028
9116
|
"booster_water_heater_fuel": null,
|
9029
9117
|
"booster_water_heater_capacity": null,
|
@@ -9032,7 +9120,7 @@
|
|
9032
9120
|
"booster_service_water_peak_flowrate": null,
|
9033
9121
|
"booster_water_use_temperature": null,
|
9034
9122
|
"booster_water_temperature": null,
|
9035
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
9123
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
9036
9124
|
"typical_heating_setpoint": "OutPatientHealthCare HTGSETP_SCH_NO_OPTIMUM",
|
9037
9125
|
"typical_cooling_setpoint": "OutPatientHealthCare CLGSETP_SCH_NO_SETBACK",
|
9038
9126
|
"ptac_cooling_type": null,
|
@@ -9095,7 +9183,7 @@
|
|
9095
9183
|
"main_water_heater_capacity": 200000.0,
|
9096
9184
|
"main_service_water_temperature": 140.0,
|
9097
9185
|
"main_service_water_flowrate_schedule": "SchoolPrimary BLDG_SWH_SCH",
|
9098
|
-
"main_service_water_peak_flowrate":
|
9186
|
+
"main_service_water_peak_flowrate": null,
|
9099
9187
|
"main_water_use_temperature": 140.0,
|
9100
9188
|
"main_service_water_temperature_at_fixture": 140.0,
|
9101
9189
|
"main_service_water_pump_head": 29891.0,
|
@@ -9112,14 +9200,14 @@
|
|
9112
9200
|
"laundry_service_water_pump_head": null,
|
9113
9201
|
"laundry_service_water_pump_motor_efficiency": null,
|
9114
9202
|
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
9115
|
-
"booster_water_heater_volume":
|
9116
|
-
"booster_water_heater_fuel":
|
9117
|
-
"booster_water_heater_capacity":
|
9118
|
-
"booster_inlet_water_temperature":
|
9119
|
-
"booster_service_water_flowrate_schedule":
|
9120
|
-
"booster_service_water_peak_flowrate":
|
9121
|
-
"booster_water_use_temperature":
|
9122
|
-
"booster_water_temperature":
|
9203
|
+
"booster_water_heater_volume": null,
|
9204
|
+
"booster_water_heater_fuel": null,
|
9205
|
+
"booster_water_heater_capacity": null,
|
9206
|
+
"booster_inlet_water_temperature": null,
|
9207
|
+
"booster_service_water_flowrate_schedule": null,
|
9208
|
+
"booster_service_water_peak_flowrate": null,
|
9209
|
+
"booster_water_use_temperature": null,
|
9210
|
+
"booster_water_temperature": null,
|
9123
9211
|
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
9124
9212
|
"typical_heating_setpoint": null,
|
9125
9213
|
"typical_cooling_setpoint": null,
|
@@ -9183,7 +9271,7 @@
|
|
9183
9271
|
"main_water_heater_capacity": 100000.0,
|
9184
9272
|
"main_service_water_temperature": 140.0,
|
9185
9273
|
"main_service_water_flowrate_schedule": "RestaurantFastFood BLDG_SWH_SCH",
|
9186
|
-
"main_service_water_peak_flowrate":
|
9274
|
+
"main_service_water_peak_flowrate": null,
|
9187
9275
|
"main_water_use_temperature": 140.0,
|
9188
9276
|
"main_service_water_temperature_at_fixture": 131.0,
|
9189
9277
|
"main_service_water_pump_head": 0.001,
|
@@ -9199,7 +9287,7 @@
|
|
9199
9287
|
"laundry_service_water_temperature_at_fixture": null,
|
9200
9288
|
"laundry_service_water_pump_head": null,
|
9201
9289
|
"laundry_service_water_pump_motor_efficiency": null,
|
9202
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
9290
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
9203
9291
|
"booster_water_heater_volume": null,
|
9204
9292
|
"booster_water_heater_fuel": null,
|
9205
9293
|
"booster_water_heater_capacity": null,
|
@@ -9208,7 +9296,7 @@
|
|
9208
9296
|
"booster_service_water_peak_flowrate": null,
|
9209
9297
|
"booster_water_use_temperature": null,
|
9210
9298
|
"booster_water_temperature": null,
|
9211
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
9299
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
9212
9300
|
"typical_heating_setpoint": "RestaurantFastFood HTGSETP_SCH_NO_OPTIMUM",
|
9213
9301
|
"typical_cooling_setpoint": "RestaurantFastFood CLGSETP_SCH_NO_SETBACK",
|
9214
9302
|
"ptac_cooling_type": null,
|
@@ -9266,10 +9354,10 @@
|
|
9266
9354
|
"exterior_fuel_equipment1_schedule": null,
|
9267
9355
|
"exterior_fuel_equipment2_power": null,
|
9268
9356
|
"exterior_fuel_equipment2_schedule": null,
|
9269
|
-
"main_water_heater_volume":
|
9270
|
-
"main_water_heater_fuel":
|
9271
|
-
"main_water_heater_capacity":
|
9272
|
-
"main_service_water_temperature":
|
9357
|
+
"main_water_heater_volume": 200.0,
|
9358
|
+
"main_water_heater_fuel": "Natural Gas",
|
9359
|
+
"main_water_heater_capacity": 200000.0,
|
9360
|
+
"main_service_water_temperature": 140.0,
|
9273
9361
|
"main_service_water_flowrate_schedule": null,
|
9274
9362
|
"main_service_water_peak_flowrate": null,
|
9275
9363
|
"main_water_use_temperature": null,
|
@@ -9359,7 +9447,7 @@
|
|
9359
9447
|
"main_water_heater_capacity": 600000.0,
|
9360
9448
|
"main_service_water_temperature": 140.0,
|
9361
9449
|
"main_service_water_flowrate_schedule": "SchoolSecondary BLDG_SWH_SCH",
|
9362
|
-
"main_service_water_peak_flowrate":
|
9450
|
+
"main_service_water_peak_flowrate": null,
|
9363
9451
|
"main_water_use_temperature": 140.0,
|
9364
9452
|
"main_service_water_temperature_at_fixture": 140.0,
|
9365
9453
|
"main_service_water_pump_head": 34026.0,
|
@@ -9376,14 +9464,14 @@
|
|
9376
9464
|
"laundry_service_water_pump_head": null,
|
9377
9465
|
"laundry_service_water_pump_motor_efficiency": null,
|
9378
9466
|
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
9379
|
-
"booster_water_heater_volume":
|
9380
|
-
"booster_water_heater_fuel":
|
9381
|
-
"booster_water_heater_capacity":
|
9382
|
-
"booster_inlet_water_temperature":
|
9383
|
-
"booster_service_water_flowrate_schedule":
|
9384
|
-
"booster_service_water_peak_flowrate":
|
9385
|
-
"booster_water_use_temperature":
|
9386
|
-
"booster_water_temperature":
|
9467
|
+
"booster_water_heater_volume": null,
|
9468
|
+
"booster_water_heater_fuel": null,
|
9469
|
+
"booster_water_heater_capacity": null,
|
9470
|
+
"booster_inlet_water_temperature": null,
|
9471
|
+
"booster_service_water_flowrate_schedule": null,
|
9472
|
+
"booster_service_water_peak_flowrate": null,
|
9473
|
+
"booster_water_use_temperature": null,
|
9474
|
+
"booster_water_temperature": null,
|
9387
9475
|
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
9388
9476
|
"typical_heating_setpoint": null,
|
9389
9477
|
"typical_cooling_setpoint": null,
|
@@ -9447,23 +9535,23 @@
|
|
9447
9535
|
"main_water_heater_capacity": 300000.0,
|
9448
9536
|
"main_service_water_temperature": 140.0,
|
9449
9537
|
"main_service_water_flowrate_schedule": "HotelSmall GuestRoom_SHW_Sch",
|
9450
|
-
"main_service_water_peak_flowrate":
|
9538
|
+
"main_service_water_peak_flowrate": null,
|
9451
9539
|
"main_water_use_temperature": 140.0,
|
9452
9540
|
"main_service_water_temperature_at_fixture": 140.0,
|
9453
9541
|
"main_service_water_pump_head": 29891.0,
|
9454
9542
|
"main_service_water_pump_motor_efficiency": 0.85,
|
9455
9543
|
"main_service_water_parasitic_fuel_consumption_rate": 68.24,
|
9456
|
-
"laundry_water_heater_volume":
|
9457
|
-
"laundry_water_heater_fuel":
|
9458
|
-
"laundry_water_heater_capacity":
|
9459
|
-
"laundry_service_water_temperature":
|
9460
|
-
"laundry_service_water_flowrate_schedule":
|
9461
|
-
"laundry_service_water_peak_flowrate":
|
9462
|
-
"laundry_water_use_temperature":
|
9463
|
-
"laundry_service_water_temperature_at_fixture":
|
9464
|
-
"laundry_service_water_pump_head":
|
9465
|
-
"laundry_service_water_pump_motor_efficiency":
|
9466
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
9544
|
+
"laundry_water_heater_volume": null,
|
9545
|
+
"laundry_water_heater_fuel": null,
|
9546
|
+
"laundry_water_heater_capacity": null,
|
9547
|
+
"laundry_service_water_temperature": null,
|
9548
|
+
"laundry_service_water_flowrate_schedule": null,
|
9549
|
+
"laundry_service_water_peak_flowrate": null,
|
9550
|
+
"laundry_water_use_temperature": null,
|
9551
|
+
"laundry_service_water_temperature_at_fixture": null,
|
9552
|
+
"laundry_service_water_pump_head": null,
|
9553
|
+
"laundry_service_water_pump_motor_efficiency": null,
|
9554
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
9467
9555
|
"booster_water_heater_volume": null,
|
9468
9556
|
"booster_water_heater_fuel": null,
|
9469
9557
|
"booster_water_heater_capacity": null,
|
@@ -9472,7 +9560,7 @@
|
|
9472
9560
|
"booster_service_water_peak_flowrate": null,
|
9473
9561
|
"booster_water_use_temperature": null,
|
9474
9562
|
"booster_water_temperature": null,
|
9475
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
9563
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
9476
9564
|
"typical_heating_setpoint": null,
|
9477
9565
|
"typical_cooling_setpoint": null,
|
9478
9566
|
"ptac_cooling_type": "Single Speed DX AC",
|
@@ -9530,10 +9618,10 @@
|
|
9530
9618
|
"exterior_fuel_equipment1_schedule": null,
|
9531
9619
|
"exterior_fuel_equipment2_power": null,
|
9532
9620
|
"exterior_fuel_equipment2_schedule": null,
|
9533
|
-
"main_water_heater_volume":
|
9534
|
-
"main_water_heater_fuel":
|
9535
|
-
"main_water_heater_capacity":
|
9536
|
-
"main_service_water_temperature":
|
9621
|
+
"main_water_heater_volume": 200.0,
|
9622
|
+
"main_water_heater_fuel": "Natural Gas",
|
9623
|
+
"main_water_heater_capacity": 200000.0,
|
9624
|
+
"main_service_water_temperature": 140.0,
|
9537
9625
|
"main_service_water_flowrate_schedule": null,
|
9538
9626
|
"main_service_water_peak_flowrate": null,
|
9539
9627
|
"main_water_use_temperature": null,
|
@@ -9727,7 +9815,7 @@
|
|
9727
9815
|
"laundry_service_water_temperature_at_fixture": null,
|
9728
9816
|
"laundry_service_water_pump_head": null,
|
9729
9817
|
"laundry_service_water_pump_motor_efficiency": null,
|
9730
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
9818
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
9731
9819
|
"booster_water_heater_volume": null,
|
9732
9820
|
"booster_water_heater_fuel": null,
|
9733
9821
|
"booster_water_heater_capacity": null,
|
@@ -9736,7 +9824,7 @@
|
|
9736
9824
|
"booster_service_water_peak_flowrate": null,
|
9737
9825
|
"booster_water_use_temperature": null,
|
9738
9826
|
"booster_water_temperature": null,
|
9739
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
9827
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
9740
9828
|
"typical_heating_setpoint": "Warehouse HtgSetp BulkStorage",
|
9741
9829
|
"typical_cooling_setpoint": "Warehouse CLGSETP_SCH",
|
9742
9830
|
"ptac_cooling_type": null,
|
@@ -9799,7 +9887,7 @@
|
|
9799
9887
|
"main_water_heater_capacity": 40000.0,
|
9800
9888
|
"main_service_water_temperature": 140.0,
|
9801
9889
|
"main_service_water_flowrate_schedule": "OfficeSmall BLDG_SWH_SCH",
|
9802
|
-
"main_service_water_peak_flowrate":
|
9890
|
+
"main_service_water_peak_flowrate": null,
|
9803
9891
|
"main_water_use_temperature": 120.0,
|
9804
9892
|
"main_service_water_temperature_at_fixture": 131.0,
|
9805
9893
|
"main_service_water_pump_head": null,
|
@@ -9815,7 +9903,7 @@
|
|
9815
9903
|
"laundry_service_water_temperature_at_fixture": null,
|
9816
9904
|
"laundry_service_water_pump_head": null,
|
9817
9905
|
"laundry_service_water_pump_motor_efficiency": null,
|
9818
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
9906
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
9819
9907
|
"booster_water_heater_volume": null,
|
9820
9908
|
"booster_water_heater_fuel": null,
|
9821
9909
|
"booster_water_heater_capacity": null,
|
@@ -9824,7 +9912,7 @@
|
|
9824
9912
|
"booster_service_water_peak_flowrate": null,
|
9825
9913
|
"booster_water_use_temperature": null,
|
9826
9914
|
"booster_water_temperature": null,
|
9827
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
9915
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
9828
9916
|
"typical_heating_setpoint": "OfficeSmall HTGSETP_SCH_NO_OPTIMUM",
|
9829
9917
|
"typical_cooling_setpoint": "OfficeSmall CLGSETP_SCH_NO_SETBACK",
|
9830
9918
|
"ptac_cooling_type": null,
|
@@ -9887,7 +9975,7 @@
|
|
9887
9975
|
"main_water_heater_capacity": 100000.0,
|
9888
9976
|
"main_service_water_temperature": 140.0,
|
9889
9977
|
"main_service_water_flowrate_schedule": "OfficeMedium BLDG_SWH_SCH",
|
9890
|
-
"main_service_water_peak_flowrate":
|
9978
|
+
"main_service_water_peak_flowrate": null,
|
9891
9979
|
"main_water_use_temperature": 140.0,
|
9892
9980
|
"main_service_water_temperature_at_fixture": 131.0,
|
9893
9981
|
"main_service_water_pump_head": 29891.0,
|
@@ -9903,7 +9991,7 @@
|
|
9903
9991
|
"laundry_service_water_temperature_at_fixture": null,
|
9904
9992
|
"laundry_service_water_pump_head": null,
|
9905
9993
|
"laundry_service_water_pump_motor_efficiency": null,
|
9906
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
9994
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
9907
9995
|
"booster_water_heater_volume": null,
|
9908
9996
|
"booster_water_heater_fuel": null,
|
9909
9997
|
"booster_water_heater_capacity": null,
|
@@ -9912,7 +10000,7 @@
|
|
9912
10000
|
"booster_service_water_peak_flowrate": null,
|
9913
10001
|
"booster_water_use_temperature": null,
|
9914
10002
|
"booster_water_temperature": null,
|
9915
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
10003
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
9916
10004
|
"typical_heating_setpoint": "HTGSETP_SCH_PACU_VAV_bot",
|
9917
10005
|
"typical_cooling_setpoint": "OfficeMedium CLGSETP_SCH_NO_SETBACK",
|
9918
10006
|
"ptac_cooling_type": null,
|
@@ -9975,7 +10063,7 @@
|
|
9975
10063
|
"main_water_heater_capacity": 40000.0,
|
9976
10064
|
"main_service_water_temperature": 140.0,
|
9977
10065
|
"main_service_water_flowrate_schedule": "RetailStandalone BLDG_SWH_SCH",
|
9978
|
-
"main_service_water_peak_flowrate":
|
10066
|
+
"main_service_water_peak_flowrate": null,
|
9979
10067
|
"main_water_use_temperature": 120.0,
|
9980
10068
|
"main_service_water_temperature_at_fixture": 131.0,
|
9981
10069
|
"main_service_water_pump_head": 0.001,
|
@@ -10079,7 +10167,7 @@
|
|
10079
10167
|
"laundry_service_water_temperature_at_fixture": null,
|
10080
10168
|
"laundry_service_water_pump_head": null,
|
10081
10169
|
"laundry_service_water_pump_motor_efficiency": null,
|
10082
|
-
"laundry_service_water_parasitic_fuel_consumption_rate":
|
10170
|
+
"laundry_service_water_parasitic_fuel_consumption_rate": null,
|
10083
10171
|
"booster_water_heater_volume": null,
|
10084
10172
|
"booster_water_heater_fuel": null,
|
10085
10173
|
"booster_water_heater_capacity": null,
|
@@ -10088,7 +10176,7 @@
|
|
10088
10176
|
"booster_service_water_peak_flowrate": null,
|
10089
10177
|
"booster_water_use_temperature": null,
|
10090
10178
|
"booster_water_temperature": null,
|
10091
|
-
"booster_service_water_parasitic_fuel_consumption_rate":
|
10179
|
+
"booster_service_water_parasitic_fuel_consumption_rate": null,
|
10092
10180
|
"typical_heating_setpoint": "RetailStripmall Type1_HTGSETP_SCH_NO_OPTIMUM",
|
10093
10181
|
"typical_cooling_setpoint": "RetailStripmall Type1_CLGSETP_SCH_NO_SETBACK",
|
10094
10182
|
"ptac_cooling_type": null,
|