openstudio-standards 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/data/geometry/ASHRAEPrimarySchool.osm +36 -2
- data/data/geometry/ASHRAESecondarySchool.osm +19 -2
- data/data/standards/OpenStudio_Standards_elevators.json +10756 -0
- data/lib/openstudio-standards.rb +0 -2
- data/lib/openstudio-standards/hvac_sizing/Siz.HVACComponent.rb +36 -0
- data/lib/openstudio-standards/hvac_sizing/Siz.Model.rb +3 -0
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.elevators.rb +175 -164
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.Model.swh.rb +268 -476
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.ServiceWaterHeating.rb +625 -116
- data/lib/openstudio-standards/prototypes/common/objects/Prototype.hvac_systems.rb +4 -0
- data/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +2 -19
- data/lib/openstudio-standards/standards/Standards.ThermalZone.rb +112 -68
- data/lib/openstudio-standards/standards/Standards.WaterHeaterMixed.rb +10 -2
- data/lib/openstudio-standards/standards/necb/necb_2011/data/space_types.json +224 -224
- data/lib/openstudio-standards/standards/necb/necb_2011/service_water_heating.rb +8 -16
- data/lib/openstudio-standards/standards/necb/necb_2015/data/space_types.json +318 -318
- data/lib/openstudio-standards/standards/standard.rb +1 -0
- data/lib/openstudio-standards/version.rb +1 -1
- metadata +4 -4
- data/lib/openstudio-standards/prototypes/ashrae_90_1/doe_ref_1980_2004/doe_ref_1980_2004.hvac_systems.rb +0 -15
- data/lib/openstudio-standards/prototypes/ashrae_90_1/doe_ref_pre_1980/doe_ref_pre_1980.hvac_systems.rb +0 -15
@@ -4191,6 +4191,10 @@ class Standard
|
|
4191
4191
|
ideal_loads.setLatentHeatRecoveryEffectiveness(heat_recovery_latent_eff)
|
4192
4192
|
ideal_loads.addToThermalZone(zone)
|
4193
4193
|
ideal_systems << ideal_loads
|
4194
|
+
|
4195
|
+
# set zone sizing parameters
|
4196
|
+
zone_sizing = zone.sizingZone
|
4197
|
+
zone_sizing.setHeatingMaximumAirFlowFraction(1.0)
|
4194
4198
|
end
|
4195
4199
|
|
4196
4200
|
if add_output_meters
|
@@ -3080,29 +3080,12 @@ class Standard
|
|
3080
3080
|
return sp_reset_required
|
3081
3081
|
end
|
3082
3082
|
|
3083
|
-
# Determine if a system's fans must shut off when
|
3084
|
-
#
|
3085
|
-
#
|
3083
|
+
# Determine if a system's fans must shut off when not required.
|
3084
|
+
# Per ASHRAE 90.1 section 6.4.3.3, HVAC systems are required to have off-hour controls
|
3086
3085
|
# @return [Bool] true if required, false if not
|
3087
3086
|
def air_loop_hvac_unoccupied_fan_shutoff_required?(air_loop_hvac)
|
3088
3087
|
shutoff_required = true
|
3089
3088
|
|
3090
|
-
# Per 90.1 6.4.3.4.5, systems less than 0.75 HP
|
3091
|
-
# must turn off when unoccupied.
|
3092
|
-
minimum_fan_hp = 0.75
|
3093
|
-
|
3094
|
-
# Determine the system fan horsepower
|
3095
|
-
total_hp = 0.0
|
3096
|
-
air_loop_hvac_supply_return_exhaust_relief_fans(air_loop_hvac).each do |fan|
|
3097
|
-
total_hp += fan_motor_horsepower(fan)
|
3098
|
-
end
|
3099
|
-
|
3100
|
-
# Check the HP exception
|
3101
|
-
if total_hp < minimum_fan_hp
|
3102
|
-
shutoff_required = false
|
3103
|
-
OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name}: Unoccupied fan shutoff not required because system fan HP of #{total_hp.round(2)} HP is less than the minimum threshold of #{minimum_fan_hp} HP.")
|
3104
|
-
end
|
3105
|
-
|
3106
3089
|
return shutoff_required
|
3107
3090
|
end
|
3108
3091
|
|
@@ -131,24 +131,74 @@ class Standard
|
|
131
131
|
return true
|
132
132
|
end
|
133
133
|
|
134
|
-
# This method creates a
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# to use the total number of people in the zone.
|
134
|
+
# This method creates a new fractional schedule ruleset.
|
135
|
+
# If occupied_percentage_threshold is set, this method will return a discrete on/off fractional schedule
|
136
|
+
# with a value of one when occupancy across all spaces is greater than or equal to the occupied_percentage_threshold,
|
137
|
+
# and zero all other times. Otherwise the method will return the weighted fractional occupancy schedule.
|
139
138
|
#
|
139
|
+
# @param thermal_zone [<OpenStudio::Model::ThermalZone>] thermal_zone to create occupancy schedule
|
140
|
+
# @param sch_name [String] the name of the generated occupancy schedule
|
140
141
|
# @param occupied_percentage_threshold [Double] the minimum fraction (0 to 1) that counts as occupied
|
141
|
-
#
|
142
|
+
# if this parameter is set, the returned ScheduleRuleset will be 0 = unoccupied, 1 = occupied
|
143
|
+
# otherwise the ScheduleRuleset will be the weighted fractional occupancy schedule
|
144
|
+
# @return [<OpenStudio::Model::ScheduleRuleset>] a ScheduleRuleset of fractional or discrete occupancy
|
145
|
+
def thermal_zone_get_occupancy_schedule(thermal_zone, sch_name: nil, occupied_percentage_threshold: nil)
|
146
|
+
if sch_name.nil?
|
147
|
+
sch_name = "#{thermal_zone.name} Occ Sch"
|
148
|
+
end
|
149
|
+
# Get the occupancy schedule for all spaces in thermal_zone
|
150
|
+
sch_ruleset = spaces_get_occupancy_schedule(thermal_zone.spaces,
|
151
|
+
sch_name: sch_name,
|
152
|
+
occupied_percentage_threshold: occupied_percentage_threshold)
|
153
|
+
return sch_ruleset
|
154
|
+
end
|
155
|
+
|
156
|
+
# This method creates a new fractional schedule ruleset.
|
157
|
+
# If occupied_percentage_threshold is set, this method will return a discrete on/off fractional schedule
|
158
|
+
# with a value of one when occupancy across all spaces is greater than or equal to the occupied_percentage_threshold,
|
159
|
+
# and zero all other times. Otherwise the method will return the weighted fractional occupancy schedule.
|
160
|
+
#
|
161
|
+
# @param thermal_zones [Array<OpenStudio::Model::ThermalZone>] array of thermal_zones to create occupancy schedule
|
162
|
+
# @param sch_name [String] the name of the generated occupancy schedule
|
163
|
+
# @param occupied_percentage_threshold [Double] the minimum fraction (0 to 1) that counts as occupied
|
164
|
+
# if this parameter is set, the returned ScheduleRuleset will be 0 = unoccupied, 1 = occupied
|
165
|
+
# otherwise the ScheduleRuleset will be the weighted fractional occupancy schedule
|
166
|
+
# @return [<OpenStudio::Model::ScheduleRuleset>] a ScheduleRuleset of fractional or discrete occupancy
|
167
|
+
def thermal_zones_get_occupancy_schedule(thermal_zones, sch_name: nil, occupied_percentage_threshold: nil)
|
168
|
+
if sch_name.nil?
|
169
|
+
sch_name = "#{thermal_zones.size} zone Occ Sch"
|
170
|
+
end
|
171
|
+
# Get the occupancy schedule for all spaces in thermal_zones
|
172
|
+
spaces = []
|
173
|
+
thermal_zones.each do |thermal_zone|
|
174
|
+
thermal_zone.spaces.each do |space|
|
175
|
+
spaces << space
|
176
|
+
end
|
177
|
+
end
|
178
|
+
sch_ruleset = spaces_get_occupancy_schedule(spaces,
|
179
|
+
sch_name: sch_name,
|
180
|
+
occupied_percentage_threshold: occupied_percentage_threshold)
|
181
|
+
return sch_ruleset
|
182
|
+
end
|
183
|
+
|
184
|
+
# This method creates a new fractional schedule ruleset.
|
185
|
+
# If occupied_percentage_threshold is set, this method will return a discrete on/off fractional schedule
|
186
|
+
# with a value of one when occupancy across all spaces is greater than or equal to the occupied_percentage_threshold,
|
187
|
+
# and zero all other times. Otherwise the method will return the weighted fractional occupancy schedule.
|
188
|
+
#
|
189
|
+
# @param spaces [Array<OpenStudio::Model::Space>] array of spaces to generate occupancy schedule from
|
190
|
+
# @param sch_name [String] the name of the generated occupancy schedule
|
191
|
+
# @param occupied_percentage_threshold [Double] the minimum fraction (0 to 1) that counts as occupied
|
192
|
+
# if this parameter is set, the returned ScheduleRuleset will be 0 = unoccupied, 1 = occupied
|
193
|
+
# otherwise the ScheduleRuleset will be the weighted fractional occupancy schedule
|
194
|
+
# @return [<OpenStudio::Model::ScheduleRuleset>] a ScheduleRuleset of fractional or discrete occupancy
|
142
195
|
# @todo Speed up this method. Bottleneck is ScheduleRule.getDaySchedules
|
143
|
-
def
|
144
|
-
# Get all the occupancy schedules in
|
145
|
-
# Include people added via the SpaceType
|
146
|
-
# in addition to people hard-assigned to the Space itself.
|
196
|
+
def spaces_get_occupancy_schedule(spaces, sch_name: nil, occupied_percentage_threshold: nil)
|
197
|
+
# Get all the occupancy schedules in spaces.
|
198
|
+
# Include people added via the SpaceType and hard-assigned to the Space itself.
|
147
199
|
occ_schedules_num_occ = {}
|
148
|
-
|
149
|
-
|
150
|
-
# Get the people objects
|
151
|
-
thermal_zone.spaces.each do |space|
|
200
|
+
max_occ_in_spaces = 0
|
201
|
+
spaces.each do |space|
|
152
202
|
# From the space type
|
153
203
|
if space.spaceType.is_initialized
|
154
204
|
space.spaceType.get.people.each do |people|
|
@@ -164,7 +214,7 @@ class Standard
|
|
164
214
|
else
|
165
215
|
occ_schedules_num_occ[num_ppl_sch] += num_ppl
|
166
216
|
end
|
167
|
-
|
217
|
+
max_occ_in_spaces += num_ppl
|
168
218
|
end
|
169
219
|
end
|
170
220
|
end
|
@@ -182,14 +232,22 @@ class Standard
|
|
182
232
|
else
|
183
233
|
occ_schedules_num_occ[num_ppl_sch] += num_ppl
|
184
234
|
end
|
185
|
-
|
235
|
+
max_occ_in_spaces += num_ppl
|
186
236
|
end
|
187
237
|
end
|
188
238
|
end
|
189
239
|
|
190
|
-
|
191
|
-
|
192
|
-
|
240
|
+
unless sch_name.nil?
|
241
|
+
OpenStudio.logFree(OpenStudio::Debug, 'openstudio.Standards.Model', "Finding space schedules for #{sch_name}.")
|
242
|
+
end
|
243
|
+
OpenStudio.logFree(OpenStudio::Debug, 'openstudio.Standards.Model', "The #{spaces.size} spaces have #{occ_schedules_num_occ.size} unique occ schedules.")
|
244
|
+
occ_schedules_num_occ.each do |occ_sch, num_occ|
|
245
|
+
OpenStudio.logFree(OpenStudio::Debug, 'openstudio.Standards.Model', "...#{occ_sch.name} - #{num_occ.round} people")
|
246
|
+
end
|
247
|
+
OpenStudio.logFree(OpenStudio::Debug, 'openstudio.Standards.Model', " Total #{max_occ_in_spaces.round} people in #{spaces.size} spaces.")
|
248
|
+
|
249
|
+
# For each day of the year, determine time_value_pairs = []
|
250
|
+
year = spaces[0].model.getYearDescription
|
193
251
|
yearly_data = []
|
194
252
|
yearly_times = OpenStudio::DateTimeVector.new
|
195
253
|
yearly_values = []
|
@@ -205,13 +263,14 @@ class Standard
|
|
205
263
|
# Get the day schedules for this day
|
206
264
|
# (there should only be one)
|
207
265
|
day_schs = occ_sch.getDaySchedules(os_date, os_date)
|
266
|
+
OpenStudio.logFree(OpenStudio::Debug, 'openstudio.Standards.Model', "Schedule #{occ_sch.name} has #{day_schs.size} day schs") unless day_schs.size == 1
|
208
267
|
day_schs[0].times.each do |time|
|
209
268
|
times_on_this_day << time.toString
|
210
269
|
end
|
211
270
|
day_sch_num_occ[day_schs[0]] = num_occ
|
212
271
|
end
|
213
272
|
|
214
|
-
# Determine the total fraction for the
|
273
|
+
# Determine the total fraction for the spaces at each time
|
215
274
|
daily_times = []
|
216
275
|
daily_os_times = []
|
217
276
|
daily_values = []
|
@@ -226,22 +285,28 @@ class Standard
|
|
226
285
|
tot_occ_at_time += occ_frac * num_occ
|
227
286
|
end
|
228
287
|
|
229
|
-
# Total fraction for the
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
288
|
+
# Total fraction for the spaces at each time
|
289
|
+
spaces_occ_frac = tot_occ_at_time / max_occ_in_spaces
|
290
|
+
|
291
|
+
# If occupied_percentage_threshold is specified, schedule values are boolean
|
292
|
+
# Otherwise use the actual spaces_occ_frac
|
293
|
+
if occupied_percentage_threshold.nil?
|
294
|
+
occ_status = spaces_occ_frac
|
295
|
+
else
|
296
|
+
occ_status = 0 # unoccupied
|
297
|
+
if spaces_occ_frac >= occupied_percentage_threshold
|
298
|
+
occ_status = 1
|
299
|
+
end
|
234
300
|
end
|
235
301
|
|
236
302
|
# Add this data to the daily arrays
|
237
303
|
daily_times << time
|
238
304
|
daily_os_times << os_time
|
239
305
|
daily_values << occ_status
|
240
|
-
daily_occs <<
|
306
|
+
daily_occs << spaces_occ_frac.round(2)
|
241
307
|
end
|
242
308
|
|
243
|
-
# Simplify the daily times to eliminate intermediate
|
244
|
-
# points with the same value as the following point.
|
309
|
+
# Simplify the daily times to eliminate intermediate points with the same value as the following point
|
245
310
|
simple_daily_times = []
|
246
311
|
simple_daily_os_times = []
|
247
312
|
simple_daily_values = []
|
@@ -262,8 +327,10 @@ class Standard
|
|
262
327
|
# time_series = OpenStudio::TimeSeries.new(times, values, 'unitless')
|
263
328
|
|
264
329
|
# Make a schedule ruleset
|
265
|
-
sch_name
|
266
|
-
|
330
|
+
if sch_name.nil?
|
331
|
+
sch_name = "#{spaces.size} space(s) Occ Sch"
|
332
|
+
end
|
333
|
+
sch_ruleset = OpenStudio::Model::ScheduleRuleset.new(spaces[0].model)
|
267
334
|
sch_ruleset.setName(sch_name.to_s)
|
268
335
|
|
269
336
|
# Default - All Occupied
|
@@ -272,21 +339,20 @@ class Standard
|
|
272
339
|
day_sch.addValue(OpenStudio::Time.new(0, 24, 0, 0), 1)
|
273
340
|
|
274
341
|
# Winter Design Day - All Occupied
|
275
|
-
day_sch = OpenStudio::Model::ScheduleDay.new(
|
342
|
+
day_sch = OpenStudio::Model::ScheduleDay.new(spaces[0].model)
|
276
343
|
sch_ruleset.setWinterDesignDaySchedule(day_sch)
|
277
344
|
day_sch = sch_ruleset.winterDesignDaySchedule
|
278
345
|
day_sch.setName("#{sch_name} Winter Design Day")
|
279
346
|
day_sch.addValue(OpenStudio::Time.new(0, 24, 0, 0), 1)
|
280
347
|
|
281
348
|
# Summer Design Day - All Occupied
|
282
|
-
day_sch = OpenStudio::Model::ScheduleDay.new(
|
349
|
+
day_sch = OpenStudio::Model::ScheduleDay.new(spaces[0].model)
|
283
350
|
sch_ruleset.setSummerDesignDaySchedule(day_sch)
|
284
351
|
day_sch = sch_ruleset.summerDesignDaySchedule
|
285
352
|
day_sch.setName("#{sch_name} Summer Design Day")
|
286
353
|
day_sch.addValue(OpenStudio::Time.new(0, 24, 0, 0), 1)
|
287
354
|
|
288
|
-
# Create ruleset schedules, attempting to create
|
289
|
-
# the minimum number of unique rules.
|
355
|
+
# Create ruleset schedules, attempting to create the minimum number of unique rules
|
290
356
|
['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'].each do |weekday|
|
291
357
|
end_of_prev_rule = yearly_data[0]['date']
|
292
358
|
yearly_data.each_with_index do |daily_data, k|
|
@@ -299,11 +365,8 @@ class Standard
|
|
299
365
|
values = daily_data['values']
|
300
366
|
daily_occs = daily_data['daily_occs']
|
301
367
|
|
302
|
-
# If the next (Monday, Tuesday, etc.)
|
303
|
-
# is the
|
304
|
-
# If the next is different, or if
|
305
|
-
# we've reached the end of the year,
|
306
|
-
# create a new rule
|
368
|
+
# If the next (Monday, Tuesday, etc.) is the same as today, keep going
|
369
|
+
# If the next is different, or if we've reached the end of the year, create a new rule
|
307
370
|
unless yearly_data[k + 7].nil?
|
308
371
|
next_day_times = yearly_data[k + 7]['times']
|
309
372
|
next_day_values = yearly_data[k + 7]['values']
|
@@ -313,16 +376,15 @@ class Standard
|
|
313
376
|
daily_os_times = daily_data['daily_os_times']
|
314
377
|
daily_occs = daily_data['daily_occs']
|
315
378
|
|
316
|
-
# If here, we need to make a rule to cover from the previous
|
317
|
-
|
318
|
-
|
379
|
+
# If here, we need to make a rule to cover from the previous rule to today
|
380
|
+
OpenStudio.logFree(OpenStudio::Debug, 'openstudio.Standards.Model', "Making a new rule for #{weekday} from #{end_of_prev_rule} to #{date}")
|
319
381
|
sch_rule = OpenStudio::Model::ScheduleRule.new(sch_ruleset)
|
320
382
|
sch_rule.setName("#{sch_name} #{weekday} Rule")
|
321
383
|
day_sch = sch_rule.daySchedule
|
322
384
|
day_sch.setName("#{sch_name} #{weekday}")
|
323
|
-
daily_os_times.each_with_index do |time,
|
324
|
-
value = values[
|
325
|
-
next if value == values[
|
385
|
+
daily_os_times.each_with_index do |time, t|
|
386
|
+
value = values[t]
|
387
|
+
next if value == values[t + 1] # Don't add breaks if same value
|
326
388
|
day_sch.addValue(time, value)
|
327
389
|
end
|
328
390
|
|
@@ -1053,18 +1115,11 @@ class Standard
|
|
1053
1115
|
when 'ASHRAE 169-2006-1A',
|
1054
1116
|
'ASHRAE 169-2006-1B',
|
1055
1117
|
'ASHRAE 169-2006-2A',
|
1056
|
-
'ASHRAE 169-2006-2B'
|
1057
|
-
'ASHRAE 169-2013-1A',
|
1058
|
-
'ASHRAE 169-2013-1B',
|
1059
|
-
'ASHRAE 169-2013-2A',
|
1060
|
-
'ASHRAE 169-2013-2B'
|
1118
|
+
'ASHRAE 169-2006-2B'
|
1061
1119
|
htg_lim_btu_per_ft2 = 5
|
1062
1120
|
when 'ASHRAE 169-2006-3A',
|
1063
1121
|
'ASHRAE 169-2006-3B',
|
1064
|
-
'ASHRAE 169-2006-3C'
|
1065
|
-
'ASHRAE 169-2013-3A',
|
1066
|
-
'ASHRAE 169-2013-3B',
|
1067
|
-
'ASHRAE 169-2013-3C'
|
1122
|
+
'ASHRAE 169-2006-3C'
|
1068
1123
|
htg_lim_btu_per_ft2 = 10
|
1069
1124
|
when 'ASHRAE 169-2006-4A',
|
1070
1125
|
'ASHRAE 169-2006-4B',
|
@@ -1072,26 +1127,15 @@ class Standard
|
|
1072
1127
|
'ASHRAE 169-2006-5A',
|
1073
1128
|
'ASHRAE 169-2006-5B',
|
1074
1129
|
'ASHRAE 169-2006-5C',
|
1075
|
-
'ASHRAE 169-2013-4A',
|
1076
|
-
'ASHRAE 169-2013-4B',
|
1077
|
-
'ASHRAE 169-2013-4C',
|
1078
|
-
'ASHRAE 169-2013-5A',
|
1079
|
-
'ASHRAE 169-2013-5B',
|
1080
|
-
'ASHRAE 169-2013-5C'
|
1081
1130
|
htg_lim_btu_per_ft2 = 15
|
1082
1131
|
when 'ASHRAE 169-2006-6A',
|
1083
1132
|
'ASHRAE 169-2006-6B',
|
1084
1133
|
'ASHRAE 169-2006-7A',
|
1085
1134
|
'ASHRAE 169-2006-7B',
|
1086
|
-
'ASHRAE 169-2013-6A',
|
1087
|
-
'ASHRAE 169-2013-6B',
|
1088
|
-
'ASHRAE 169-2013-7A',
|
1089
|
-
'ASHRAE 169-2013-7B'
|
1090
1135
|
htg_lim_btu_per_ft2 = 20
|
1091
|
-
when
|
1092
|
-
'ASHRAE 169-2006-
|
1093
|
-
'ASHRAE 169-
|
1094
|
-
'ASHRAE 169-2013-8B'
|
1136
|
+
when
|
1137
|
+
'ASHRAE 169-2006-8A',
|
1138
|
+
'ASHRAE 169-2006-8B'
|
1095
1139
|
htg_lim_btu_per_ft2 = 25
|
1096
1140
|
end
|
1097
1141
|
|
@@ -9,6 +9,14 @@ class Standard
|
|
9
9
|
#
|
10
10
|
# @return [Bool] true if successful, false if not
|
11
11
|
def water_heater_mixed_apply_efficiency(water_heater_mixed)
|
12
|
+
# TODO remove this once workaround for HPWHs is removed
|
13
|
+
if water_heater_mixed.partLoadFactorCurve.is_initialized
|
14
|
+
if water_heater_mixed.partLoadFactorCurve.get.name.get.include?('HPWH_COP')
|
15
|
+
OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.WaterHeaterMixed', "For #{water_heater_mixed.name}, the workaround for HPWHs has been applied, efficiency will not be changed.")
|
16
|
+
return true
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
12
20
|
# Get the capacity of the water heater
|
13
21
|
# TODO add capability to pull autosized water heater capacity
|
14
22
|
# if the Sizing:WaterHeater object is ever implemented in OpenStudio.
|
@@ -17,7 +25,7 @@ class Standard
|
|
17
25
|
OpenStudio.logFree(OpenStudio::Warn, 'openstudio.standards.WaterHeaterMixed', "For #{water_heater_mixed.name}, cannot find capacity, standard will not be applied.")
|
18
26
|
return false
|
19
27
|
else
|
20
|
-
capacity_w = capacity_w.get
|
28
|
+
capacity_w = capacity_w.get / water_heater_mixed.component_quantity
|
21
29
|
end
|
22
30
|
capacity_btu_per_hr = OpenStudio.convert(capacity_w, 'W', 'Btu/hr').get
|
23
31
|
|
@@ -29,7 +37,7 @@ class Standard
|
|
29
37
|
OpenStudio.logFree(OpenStudio::Warn, 'openstudio.standards.WaterHeaterMixed', "For #{water_heater_mixed.name}, cannot find volume, standard will not be applied.")
|
30
38
|
return false
|
31
39
|
else
|
32
|
-
volume_m3 = @instvarbuilding_type == 'MidriseApartment' ? volume_m3.get / 23 : volume_m3.get
|
40
|
+
volume_m3 = @instvarbuilding_type == 'MidriseApartment' ? volume_m3.get / 23 : volume_m3.get / water_heater_mixed.component_quantity
|
33
41
|
end
|
34
42
|
volume_gal = OpenStudio.convert(volume_m3, 'm^3', 'gal').get
|
35
43
|
|
@@ -67,7 +67,7 @@
|
|
67
67
|
"service_water_heating_peak_flow_rate": null,
|
68
68
|
"service_water_heating_area": null,
|
69
69
|
"service_water_heating_peak_flow_per_area": 0.002137,
|
70
|
-
"service_water_heating_target_temperature":
|
70
|
+
"service_water_heating_target_temperature": 140.0,
|
71
71
|
"service_water_heating_fraction_sensible": null,
|
72
72
|
"service_water_heating_fraction_latent": null,
|
73
73
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -143,7 +143,7 @@
|
|
143
143
|
"service_water_heating_peak_flow_rate": null,
|
144
144
|
"service_water_heating_area": null,
|
145
145
|
"service_water_heating_peak_flow_per_area": 0.001781,
|
146
|
-
"service_water_heating_target_temperature":
|
146
|
+
"service_water_heating_target_temperature": 140.0,
|
147
147
|
"service_water_heating_fraction_sensible": null,
|
148
148
|
"service_water_heating_fraction_latent": null,
|
149
149
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -219,7 +219,7 @@
|
|
219
219
|
"service_water_heating_peak_flow_rate": null,
|
220
220
|
"service_water_heating_area": null,
|
221
221
|
"service_water_heating_peak_flow_per_area": 0.0019,
|
222
|
-
"service_water_heating_target_temperature":
|
222
|
+
"service_water_heating_target_temperature": 140.0,
|
223
223
|
"service_water_heating_fraction_sensible": null,
|
224
224
|
"service_water_heating_fraction_latent": null,
|
225
225
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -295,7 +295,7 @@
|
|
295
295
|
"service_water_heating_peak_flow_rate": null,
|
296
296
|
"service_water_heating_area": null,
|
297
297
|
"service_water_heating_peak_flow_per_area": 0.005462,
|
298
|
-
"service_water_heating_target_temperature":
|
298
|
+
"service_water_heating_target_temperature": 140.0,
|
299
299
|
"service_water_heating_fraction_sensible": null,
|
300
300
|
"service_water_heating_fraction_latent": null,
|
301
301
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -371,7 +371,7 @@
|
|
371
371
|
"service_water_heating_peak_flow_rate": null,
|
372
372
|
"service_water_heating_area": null,
|
373
373
|
"service_water_heating_peak_flow_per_area": 0.005462,
|
374
|
-
"service_water_heating_target_temperature":
|
374
|
+
"service_water_heating_target_temperature": 140.0,
|
375
375
|
"service_water_heating_fraction_sensible": null,
|
376
376
|
"service_water_heating_fraction_latent": null,
|
377
377
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -447,7 +447,7 @@
|
|
447
447
|
"service_water_heating_peak_flow_rate": null,
|
448
448
|
"service_water_heating_area": null,
|
449
449
|
"service_water_heating_peak_flow_per_area": 0.005462,
|
450
|
-
"service_water_heating_target_temperature":
|
450
|
+
"service_water_heating_target_temperature": 140.0,
|
451
451
|
"service_water_heating_fraction_sensible": null,
|
452
452
|
"service_water_heating_fraction_latent": null,
|
453
453
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -523,7 +523,7 @@
|
|
523
523
|
"service_water_heating_peak_flow_rate": null,
|
524
524
|
"service_water_heating_area": null,
|
525
525
|
"service_water_heating_peak_flow_per_area": 0.007915,
|
526
|
-
"service_water_heating_target_temperature":
|
526
|
+
"service_water_heating_target_temperature": 140.0,
|
527
527
|
"service_water_heating_fraction_sensible": null,
|
528
528
|
"service_water_heating_fraction_latent": null,
|
529
529
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -599,7 +599,7 @@
|
|
599
599
|
"service_water_heating_peak_flow_rate": null,
|
600
600
|
"service_water_heating_area": null,
|
601
601
|
"service_water_heating_peak_flow_per_area": 0.004274,
|
602
|
-
"service_water_heating_target_temperature":
|
602
|
+
"service_water_heating_target_temperature": 140.0,
|
603
603
|
"service_water_heating_fraction_sensible": null,
|
604
604
|
"service_water_heating_fraction_latent": null,
|
605
605
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -675,7 +675,7 @@
|
|
675
675
|
"service_water_heating_peak_flow_rate": null,
|
676
676
|
"service_water_heating_area": null,
|
677
677
|
"service_water_heating_peak_flow_per_area": 0.007599,
|
678
|
-
"service_water_heating_target_temperature":
|
678
|
+
"service_water_heating_target_temperature": 140.0,
|
679
679
|
"service_water_heating_fraction_sensible": null,
|
680
680
|
"service_water_heating_fraction_latent": null,
|
681
681
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -751,7 +751,7 @@
|
|
751
751
|
"service_water_heating_peak_flow_rate": null,
|
752
752
|
"service_water_heating_area": null,
|
753
753
|
"service_water_heating_peak_flow_per_area": 0.004274,
|
754
|
-
"service_water_heating_target_temperature":
|
754
|
+
"service_water_heating_target_temperature": 140.0,
|
755
755
|
"service_water_heating_fraction_sensible": null,
|
756
756
|
"service_water_heating_fraction_latent": null,
|
757
757
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -827,7 +827,7 @@
|
|
827
827
|
"service_water_heating_peak_flow_rate": null,
|
828
828
|
"service_water_heating_area": null,
|
829
829
|
"service_water_heating_peak_flow_per_area": 0.002137,
|
830
|
-
"service_water_heating_target_temperature":
|
830
|
+
"service_water_heating_target_temperature": 140.0,
|
831
831
|
"service_water_heating_fraction_sensible": null,
|
832
832
|
"service_water_heating_fraction_latent": null,
|
833
833
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -903,7 +903,7 @@
|
|
903
903
|
"service_water_heating_peak_flow_rate": null,
|
904
904
|
"service_water_heating_area": null,
|
905
905
|
"service_water_heating_peak_flow_per_area": 0.002137,
|
906
|
-
"service_water_heating_target_temperature":
|
906
|
+
"service_water_heating_target_temperature": 140.0,
|
907
907
|
"service_water_heating_fraction_sensible": null,
|
908
908
|
"service_water_heating_fraction_latent": null,
|
909
909
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -979,7 +979,7 @@
|
|
979
979
|
"service_water_heating_peak_flow_rate": null,
|
980
980
|
"service_water_heating_area": null,
|
981
981
|
"service_water_heating_peak_flow_per_area": 0.009498,
|
982
|
-
"service_water_heating_target_temperature":
|
982
|
+
"service_water_heating_target_temperature": 140.0,
|
983
983
|
"service_water_heating_fraction_sensible": null,
|
984
984
|
"service_water_heating_fraction_latent": null,
|
985
985
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -1055,7 +1055,7 @@
|
|
1055
1055
|
"service_water_heating_peak_flow_rate": null,
|
1056
1056
|
"service_water_heating_area": null,
|
1057
1057
|
"service_water_heating_peak_flow_per_area": 0.002137,
|
1058
|
-
"service_water_heating_target_temperature":
|
1058
|
+
"service_water_heating_target_temperature": 140.0,
|
1059
1059
|
"service_water_heating_fraction_sensible": null,
|
1060
1060
|
"service_water_heating_fraction_latent": null,
|
1061
1061
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -1131,7 +1131,7 @@
|
|
1131
1131
|
"service_water_heating_peak_flow_rate": null,
|
1132
1132
|
"service_water_heating_area": null,
|
1133
1133
|
"service_water_heating_peak_flow_per_area": 0.001425,
|
1134
|
-
"service_water_heating_target_temperature":
|
1134
|
+
"service_water_heating_target_temperature": 140.0,
|
1135
1135
|
"service_water_heating_fraction_sensible": null,
|
1136
1136
|
"service_water_heating_fraction_latent": null,
|
1137
1137
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -1207,7 +1207,7 @@
|
|
1207
1207
|
"service_water_heating_peak_flow_rate": null,
|
1208
1208
|
"service_water_heating_area": null,
|
1209
1209
|
"service_water_heating_peak_flow_per_area": 0.009498,
|
1210
|
-
"service_water_heating_target_temperature":
|
1210
|
+
"service_water_heating_target_temperature": 140.0,
|
1211
1211
|
"service_water_heating_fraction_sensible": null,
|
1212
1212
|
"service_water_heating_fraction_latent": null,
|
1213
1213
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -1283,7 +1283,7 @@
|
|
1283
1283
|
"service_water_heating_peak_flow_rate": null,
|
1284
1284
|
"service_water_heating_area": null,
|
1285
1285
|
"service_water_heating_peak_flow_per_area": 0.001781,
|
1286
|
-
"service_water_heating_target_temperature":
|
1286
|
+
"service_water_heating_target_temperature": 140.0,
|
1287
1287
|
"service_water_heating_fraction_sensible": null,
|
1288
1288
|
"service_water_heating_fraction_latent": null,
|
1289
1289
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -1359,7 +1359,7 @@
|
|
1359
1359
|
"service_water_heating_peak_flow_rate": null,
|
1360
1360
|
"service_water_heating_area": null,
|
1361
1361
|
"service_water_heating_peak_flow_per_area": 0.003958,
|
1362
|
-
"service_water_heating_target_temperature":
|
1362
|
+
"service_water_heating_target_temperature": 140.0,
|
1363
1363
|
"service_water_heating_fraction_sensible": null,
|
1364
1364
|
"service_water_heating_fraction_latent": null,
|
1365
1365
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -1435,7 +1435,7 @@
|
|
1435
1435
|
"service_water_heating_peak_flow_rate": null,
|
1436
1436
|
"service_water_heating_area": null,
|
1437
1437
|
"service_water_heating_peak_flow_per_area": 0.001425,
|
1438
|
-
"service_water_heating_target_temperature":
|
1438
|
+
"service_water_heating_target_temperature": 140.0,
|
1439
1439
|
"service_water_heating_fraction_sensible": null,
|
1440
1440
|
"service_water_heating_fraction_latent": null,
|
1441
1441
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -1511,7 +1511,7 @@
|
|
1511
1511
|
"service_water_heating_peak_flow_rate": null,
|
1512
1512
|
"service_water_heating_area": null,
|
1513
1513
|
"service_water_heating_peak_flow_per_area": 0.00171,
|
1514
|
-
"service_water_heating_target_temperature":
|
1514
|
+
"service_water_heating_target_temperature": 140.0,
|
1515
1515
|
"service_water_heating_fraction_sensible": null,
|
1516
1516
|
"service_water_heating_fraction_latent": null,
|
1517
1517
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -1587,7 +1587,7 @@
|
|
1587
1587
|
"service_water_heating_peak_flow_rate": null,
|
1588
1588
|
"service_water_heating_area": null,
|
1589
1589
|
"service_water_heating_peak_flow_per_area": 0.0,
|
1590
|
-
"service_water_heating_target_temperature":
|
1590
|
+
"service_water_heating_target_temperature": 140.0,
|
1591
1591
|
"service_water_heating_fraction_sensible": null,
|
1592
1592
|
"service_water_heating_fraction_latent": null,
|
1593
1593
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -1663,7 +1663,7 @@
|
|
1663
1663
|
"service_water_heating_peak_flow_rate": null,
|
1664
1664
|
"service_water_heating_area": null,
|
1665
1665
|
"service_water_heating_peak_flow_per_area": 0.006332,
|
1666
|
-
"service_water_heating_target_temperature":
|
1666
|
+
"service_water_heating_target_temperature": 140.0,
|
1667
1667
|
"service_water_heating_fraction_sensible": null,
|
1668
1668
|
"service_water_heating_fraction_latent": null,
|
1669
1669
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -1739,7 +1739,7 @@
|
|
1739
1739
|
"service_water_heating_peak_flow_rate": null,
|
1740
1740
|
"service_water_heating_area": null,
|
1741
1741
|
"service_water_heating_peak_flow_per_area": 0.001781,
|
1742
|
-
"service_water_heating_target_temperature":
|
1742
|
+
"service_water_heating_target_temperature": 140.0,
|
1743
1743
|
"service_water_heating_fraction_sensible": null,
|
1744
1744
|
"service_water_heating_fraction_latent": null,
|
1745
1745
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -1815,7 +1815,7 @@
|
|
1815
1815
|
"service_water_heating_peak_flow_rate": null,
|
1816
1816
|
"service_water_heating_area": null,
|
1817
1817
|
"service_water_heating_peak_flow_per_area": 0.00171,
|
1818
|
-
"service_water_heating_target_temperature":
|
1818
|
+
"service_water_heating_target_temperature": 140.0,
|
1819
1819
|
"service_water_heating_fraction_sensible": null,
|
1820
1820
|
"service_water_heating_fraction_latent": null,
|
1821
1821
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -1891,7 +1891,7 @@
|
|
1891
1891
|
"service_water_heating_peak_flow_rate": null,
|
1892
1892
|
"service_water_heating_area": null,
|
1893
1893
|
"service_water_heating_peak_flow_per_area": 0.00171,
|
1894
|
-
"service_water_heating_target_temperature":
|
1894
|
+
"service_water_heating_target_temperature": 140.0,
|
1895
1895
|
"service_water_heating_fraction_sensible": null,
|
1896
1896
|
"service_water_heating_fraction_latent": null,
|
1897
1897
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -1967,7 +1967,7 @@
|
|
1967
1967
|
"service_water_heating_peak_flow_rate": null,
|
1968
1968
|
"service_water_heating_area": null,
|
1969
1969
|
"service_water_heating_peak_flow_per_area": 0.001425,
|
1970
|
-
"service_water_heating_target_temperature":
|
1970
|
+
"service_water_heating_target_temperature": 140.0,
|
1971
1971
|
"service_water_heating_fraction_sensible": null,
|
1972
1972
|
"service_water_heating_fraction_latent": null,
|
1973
1973
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -2043,7 +2043,7 @@
|
|
2043
2043
|
"service_water_heating_peak_flow_rate": null,
|
2044
2044
|
"service_water_heating_area": null,
|
2045
2045
|
"service_water_heating_peak_flow_per_area": 0.000633,
|
2046
|
-
"service_water_heating_target_temperature":
|
2046
|
+
"service_water_heating_target_temperature": 140.0,
|
2047
2047
|
"service_water_heating_fraction_sensible": null,
|
2048
2048
|
"service_water_heating_fraction_latent": null,
|
2049
2049
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -2119,7 +2119,7 @@
|
|
2119
2119
|
"service_water_heating_peak_flow_rate": null,
|
2120
2120
|
"service_water_heating_area": null,
|
2121
2121
|
"service_water_heating_peak_flow_per_area": 0.003562,
|
2122
|
-
"service_water_heating_target_temperature":
|
2122
|
+
"service_water_heating_target_temperature": 140.0,
|
2123
2123
|
"service_water_heating_fraction_sensible": null,
|
2124
2124
|
"service_water_heating_fraction_latent": null,
|
2125
2125
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -2271,7 +2271,7 @@
|
|
2271
2271
|
"service_water_heating_peak_flow_rate": null,
|
2272
2272
|
"service_water_heating_area": null,
|
2273
2273
|
"service_water_heating_peak_flow_per_area": 0.0,
|
2274
|
-
"service_water_heating_target_temperature":
|
2274
|
+
"service_water_heating_target_temperature": 140.0,
|
2275
2275
|
"service_water_heating_fraction_sensible": null,
|
2276
2276
|
"service_water_heating_fraction_latent": null,
|
2277
2277
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -2347,7 +2347,7 @@
|
|
2347
2347
|
"service_water_heating_peak_flow_rate": null,
|
2348
2348
|
"service_water_heating_area": null,
|
2349
2349
|
"service_water_heating_peak_flow_per_area": 0.0,
|
2350
|
-
"service_water_heating_target_temperature":
|
2350
|
+
"service_water_heating_target_temperature": 140.0,
|
2351
2351
|
"service_water_heating_fraction_sensible": null,
|
2352
2352
|
"service_water_heating_fraction_latent": null,
|
2353
2353
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -2423,7 +2423,7 @@
|
|
2423
2423
|
"service_water_heating_peak_flow_rate": null,
|
2424
2424
|
"service_water_heating_area": null,
|
2425
2425
|
"service_water_heating_peak_flow_per_area": 0.002839298,
|
2426
|
-
"service_water_heating_target_temperature":
|
2426
|
+
"service_water_heating_target_temperature": 140.0,
|
2427
2427
|
"service_water_heating_fraction_sensible": null,
|
2428
2428
|
"service_water_heating_fraction_latent": null,
|
2429
2429
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -2499,7 +2499,7 @@
|
|
2499
2499
|
"service_water_heating_peak_flow_rate": null,
|
2500
2500
|
"service_water_heating_area": null,
|
2501
2501
|
"service_water_heating_peak_flow_per_area": 0.002839298,
|
2502
|
-
"service_water_heating_target_temperature":
|
2502
|
+
"service_water_heating_target_temperature": 140.0,
|
2503
2503
|
"service_water_heating_fraction_sensible": null,
|
2504
2504
|
"service_water_heating_fraction_latent": null,
|
2505
2505
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -2575,7 +2575,7 @@
|
|
2575
2575
|
"service_water_heating_peak_flow_rate": null,
|
2576
2576
|
"service_water_heating_area": null,
|
2577
2577
|
"service_water_heating_peak_flow_per_area": 0.001893375,
|
2578
|
-
"service_water_heating_target_temperature":
|
2578
|
+
"service_water_heating_target_temperature": 140.0,
|
2579
2579
|
"service_water_heating_fraction_sensible": null,
|
2580
2580
|
"service_water_heating_fraction_latent": null,
|
2581
2581
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -2651,7 +2651,7 @@
|
|
2651
2651
|
"service_water_heating_peak_flow_rate": null,
|
2652
2652
|
"service_water_heating_area": null,
|
2653
2653
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
2654
|
-
"service_water_heating_target_temperature":
|
2654
|
+
"service_water_heating_target_temperature": 140.0,
|
2655
2655
|
"service_water_heating_fraction_sensible": null,
|
2656
2656
|
"service_water_heating_fraction_latent": null,
|
2657
2657
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -2727,7 +2727,7 @@
|
|
2727
2727
|
"service_water_heating_peak_flow_rate": null,
|
2728
2728
|
"service_water_heating_area": null,
|
2729
2729
|
"service_water_heating_peak_flow_per_area": 0.001142515,
|
2730
|
-
"service_water_heating_target_temperature":
|
2730
|
+
"service_water_heating_target_temperature": 140.0,
|
2731
2731
|
"service_water_heating_fraction_sensible": null,
|
2732
2732
|
"service_water_heating_fraction_latent": null,
|
2733
2733
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -2803,7 +2803,7 @@
|
|
2803
2803
|
"service_water_heating_peak_flow_rate": null,
|
2804
2804
|
"service_water_heating_area": null,
|
2805
2805
|
"service_water_heating_peak_flow_per_area": 0.004120874,
|
2806
|
-
"service_water_heating_target_temperature":
|
2806
|
+
"service_water_heating_target_temperature": 140.0,
|
2807
2807
|
"service_water_heating_fraction_sensible": null,
|
2808
2808
|
"service_water_heating_fraction_latent": null,
|
2809
2809
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -2879,7 +2879,7 @@
|
|
2879
2879
|
"service_water_heating_peak_flow_rate": null,
|
2880
2880
|
"service_water_heating_area": null,
|
2881
2881
|
"service_water_heating_peak_flow_per_area": 0.004286783,
|
2882
|
-
"service_water_heating_target_temperature":
|
2882
|
+
"service_water_heating_target_temperature": 140.0,
|
2883
2883
|
"service_water_heating_fraction_sensible": null,
|
2884
2884
|
"service_water_heating_fraction_latent": null,
|
2885
2885
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -2955,7 +2955,7 @@
|
|
2955
2955
|
"service_water_heating_peak_flow_rate": null,
|
2956
2956
|
"service_water_heating_area": null,
|
2957
2957
|
"service_water_heating_peak_flow_per_area": 0.002839298,
|
2958
|
-
"service_water_heating_target_temperature":
|
2958
|
+
"service_water_heating_target_temperature": 140.0,
|
2959
2959
|
"service_water_heating_fraction_sensible": null,
|
2960
2960
|
"service_water_heating_fraction_latent": null,
|
2961
2961
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -3031,7 +3031,7 @@
|
|
3031
3031
|
"service_water_heating_peak_flow_rate": null,
|
3032
3032
|
"service_water_heating_area": null,
|
3033
3033
|
"service_water_heating_peak_flow_per_area": 0.002839298,
|
3034
|
-
"service_water_heating_target_temperature":
|
3034
|
+
"service_water_heating_target_temperature": 140.0,
|
3035
3035
|
"service_water_heating_fraction_sensible": null,
|
3036
3036
|
"service_water_heating_fraction_latent": null,
|
3037
3037
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -3107,7 +3107,7 @@
|
|
3107
3107
|
"service_water_heating_peak_flow_rate": 0.0,
|
3108
3108
|
"service_water_heating_area": null,
|
3109
3109
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3110
|
-
"service_water_heating_target_temperature":
|
3110
|
+
"service_water_heating_target_temperature": 140.0,
|
3111
3111
|
"service_water_heating_fraction_sensible": null,
|
3112
3112
|
"service_water_heating_fraction_latent": null,
|
3113
3113
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -3183,7 +3183,7 @@
|
|
3183
3183
|
"service_water_heating_peak_flow_rate": 0.0,
|
3184
3184
|
"service_water_heating_area": null,
|
3185
3185
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3186
|
-
"service_water_heating_target_temperature":
|
3186
|
+
"service_water_heating_target_temperature": 140.0,
|
3187
3187
|
"service_water_heating_fraction_sensible": null,
|
3188
3188
|
"service_water_heating_fraction_latent": null,
|
3189
3189
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -3259,7 +3259,7 @@
|
|
3259
3259
|
"service_water_heating_peak_flow_rate": 0.0,
|
3260
3260
|
"service_water_heating_area": null,
|
3261
3261
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3262
|
-
"service_water_heating_target_temperature":
|
3262
|
+
"service_water_heating_target_temperature": 140.0,
|
3263
3263
|
"service_water_heating_fraction_sensible": null,
|
3264
3264
|
"service_water_heating_fraction_latent": null,
|
3265
3265
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -3335,7 +3335,7 @@
|
|
3335
3335
|
"service_water_heating_peak_flow_rate": 0.0,
|
3336
3336
|
"service_water_heating_area": null,
|
3337
3337
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3338
|
-
"service_water_heating_target_temperature":
|
3338
|
+
"service_water_heating_target_temperature": 140.0,
|
3339
3339
|
"service_water_heating_fraction_sensible": null,
|
3340
3340
|
"service_water_heating_fraction_latent": null,
|
3341
3341
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -3411,7 +3411,7 @@
|
|
3411
3411
|
"service_water_heating_peak_flow_rate": 0.0,
|
3412
3412
|
"service_water_heating_area": null,
|
3413
3413
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3414
|
-
"service_water_heating_target_temperature":
|
3414
|
+
"service_water_heating_target_temperature": 140.0,
|
3415
3415
|
"service_water_heating_fraction_sensible": null,
|
3416
3416
|
"service_water_heating_fraction_latent": null,
|
3417
3417
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -3487,7 +3487,7 @@
|
|
3487
3487
|
"service_water_heating_peak_flow_rate": 0.0,
|
3488
3488
|
"service_water_heating_area": null,
|
3489
3489
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3490
|
-
"service_water_heating_target_temperature":
|
3490
|
+
"service_water_heating_target_temperature": 140.0,
|
3491
3491
|
"service_water_heating_fraction_sensible": null,
|
3492
3492
|
"service_water_heating_fraction_latent": null,
|
3493
3493
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -3563,7 +3563,7 @@
|
|
3563
3563
|
"service_water_heating_peak_flow_rate": 0.0,
|
3564
3564
|
"service_water_heating_area": null,
|
3565
3565
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3566
|
-
"service_water_heating_target_temperature":
|
3566
|
+
"service_water_heating_target_temperature": 140.0,
|
3567
3567
|
"service_water_heating_fraction_sensible": null,
|
3568
3568
|
"service_water_heating_fraction_latent": null,
|
3569
3569
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -3639,7 +3639,7 @@
|
|
3639
3639
|
"service_water_heating_peak_flow_rate": 0.0,
|
3640
3640
|
"service_water_heating_area": null,
|
3641
3641
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3642
|
-
"service_water_heating_target_temperature":
|
3642
|
+
"service_water_heating_target_temperature": 140.0,
|
3643
3643
|
"service_water_heating_fraction_sensible": null,
|
3644
3644
|
"service_water_heating_fraction_latent": null,
|
3645
3645
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -3715,7 +3715,7 @@
|
|
3715
3715
|
"service_water_heating_peak_flow_rate": 0.0,
|
3716
3716
|
"service_water_heating_area": null,
|
3717
3717
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3718
|
-
"service_water_heating_target_temperature":
|
3718
|
+
"service_water_heating_target_temperature": 140.0,
|
3719
3719
|
"service_water_heating_fraction_sensible": null,
|
3720
3720
|
"service_water_heating_fraction_latent": null,
|
3721
3721
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -3791,7 +3791,7 @@
|
|
3791
3791
|
"service_water_heating_peak_flow_rate": 0.0,
|
3792
3792
|
"service_water_heating_area": null,
|
3793
3793
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3794
|
-
"service_water_heating_target_temperature":
|
3794
|
+
"service_water_heating_target_temperature": 140.0,
|
3795
3795
|
"service_water_heating_fraction_sensible": null,
|
3796
3796
|
"service_water_heating_fraction_latent": null,
|
3797
3797
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -3867,7 +3867,7 @@
|
|
3867
3867
|
"service_water_heating_peak_flow_rate": 0.0,
|
3868
3868
|
"service_water_heating_area": null,
|
3869
3869
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3870
|
-
"service_water_heating_target_temperature":
|
3870
|
+
"service_water_heating_target_temperature": 140.0,
|
3871
3871
|
"service_water_heating_fraction_sensible": null,
|
3872
3872
|
"service_water_heating_fraction_latent": null,
|
3873
3873
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -3943,7 +3943,7 @@
|
|
3943
3943
|
"service_water_heating_peak_flow_rate": 0.0,
|
3944
3944
|
"service_water_heating_area": null,
|
3945
3945
|
"service_water_heating_peak_flow_per_area": 0.0,
|
3946
|
-
"service_water_heating_target_temperature":
|
3946
|
+
"service_water_heating_target_temperature": 140.0,
|
3947
3947
|
"service_water_heating_fraction_sensible": null,
|
3948
3948
|
"service_water_heating_fraction_latent": null,
|
3949
3949
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -4019,7 +4019,7 @@
|
|
4019
4019
|
"service_water_heating_peak_flow_rate": 0.0,
|
4020
4020
|
"service_water_heating_area": null,
|
4021
4021
|
"service_water_heating_peak_flow_per_area": 0.0,
|
4022
|
-
"service_water_heating_target_temperature":
|
4022
|
+
"service_water_heating_target_temperature": 140.0,
|
4023
4023
|
"service_water_heating_fraction_sensible": null,
|
4024
4024
|
"service_water_heating_fraction_latent": null,
|
4025
4025
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -4095,7 +4095,7 @@
|
|
4095
4095
|
"service_water_heating_peak_flow_rate": 0.0,
|
4096
4096
|
"service_water_heating_area": null,
|
4097
4097
|
"service_water_heating_peak_flow_per_area": 0.0,
|
4098
|
-
"service_water_heating_target_temperature":
|
4098
|
+
"service_water_heating_target_temperature": 140.0,
|
4099
4099
|
"service_water_heating_fraction_sensible": null,
|
4100
4100
|
"service_water_heating_fraction_latent": null,
|
4101
4101
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -4171,7 +4171,7 @@
|
|
4171
4171
|
"service_water_heating_peak_flow_rate": 0.0,
|
4172
4172
|
"service_water_heating_area": null,
|
4173
4173
|
"service_water_heating_peak_flow_per_area": 0.0,
|
4174
|
-
"service_water_heating_target_temperature":
|
4174
|
+
"service_water_heating_target_temperature": 140.0,
|
4175
4175
|
"service_water_heating_fraction_sensible": null,
|
4176
4176
|
"service_water_heating_fraction_latent": null,
|
4177
4177
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -4247,7 +4247,7 @@
|
|
4247
4247
|
"service_water_heating_peak_flow_rate": 0.0,
|
4248
4248
|
"service_water_heating_area": null,
|
4249
4249
|
"service_water_heating_peak_flow_per_area": 0.0,
|
4250
|
-
"service_water_heating_target_temperature":
|
4250
|
+
"service_water_heating_target_temperature": 140.0,
|
4251
4251
|
"service_water_heating_fraction_sensible": null,
|
4252
4252
|
"service_water_heating_fraction_latent": null,
|
4253
4253
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -4323,7 +4323,7 @@
|
|
4323
4323
|
"service_water_heating_peak_flow_rate": 0.0,
|
4324
4324
|
"service_water_heating_area": null,
|
4325
4325
|
"service_water_heating_peak_flow_per_area": 0.0,
|
4326
|
-
"service_water_heating_target_temperature":
|
4326
|
+
"service_water_heating_target_temperature": 140.0,
|
4327
4327
|
"service_water_heating_fraction_sensible": null,
|
4328
4328
|
"service_water_heating_fraction_latent": null,
|
4329
4329
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -4399,7 +4399,7 @@
|
|
4399
4399
|
"service_water_heating_peak_flow_rate": 0.0,
|
4400
4400
|
"service_water_heating_area": null,
|
4401
4401
|
"service_water_heating_peak_flow_per_area": 0.0,
|
4402
|
-
"service_water_heating_target_temperature":
|
4402
|
+
"service_water_heating_target_temperature": 140.0,
|
4403
4403
|
"service_water_heating_fraction_sensible": null,
|
4404
4404
|
"service_water_heating_fraction_latent": null,
|
4405
4405
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -4475,7 +4475,7 @@
|
|
4475
4475
|
"service_water_heating_peak_flow_rate": null,
|
4476
4476
|
"service_water_heating_area": null,
|
4477
4477
|
"service_water_heating_peak_flow_per_area": 0.006180727,
|
4478
|
-
"service_water_heating_target_temperature":
|
4478
|
+
"service_water_heating_target_temperature": 140.0,
|
4479
4479
|
"service_water_heating_fraction_sensible": null,
|
4480
4480
|
"service_water_heating_fraction_latent": null,
|
4481
4481
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -4551,7 +4551,7 @@
|
|
4551
4551
|
"service_water_heating_peak_flow_rate": null,
|
4552
4552
|
"service_water_heating_area": null,
|
4553
4553
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
4554
|
-
"service_water_heating_target_temperature":
|
4554
|
+
"service_water_heating_target_temperature": 140.0,
|
4555
4555
|
"service_water_heating_fraction_sensible": null,
|
4556
4556
|
"service_water_heating_fraction_latent": null,
|
4557
4557
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -4627,7 +4627,7 @@
|
|
4627
4627
|
"service_water_heating_peak_flow_rate": null,
|
4628
4628
|
"service_water_heating_area": null,
|
4629
4629
|
"service_water_heating_peak_flow_per_area": 0.002839298,
|
4630
|
-
"service_water_heating_target_temperature":
|
4630
|
+
"service_water_heating_target_temperature": 140.0,
|
4631
4631
|
"service_water_heating_fraction_sensible": null,
|
4632
4632
|
"service_water_heating_fraction_latent": null,
|
4633
4633
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -4703,7 +4703,7 @@
|
|
4703
4703
|
"service_water_heating_peak_flow_rate": null,
|
4704
4704
|
"service_water_heating_area": null,
|
4705
4705
|
"service_water_heating_peak_flow_per_area": 0.004272865,
|
4706
|
-
"service_water_heating_target_temperature":
|
4706
|
+
"service_water_heating_target_temperature": 140.0,
|
4707
4707
|
"service_water_heating_fraction_sensible": null,
|
4708
4708
|
"service_water_heating_fraction_latent": null,
|
4709
4709
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -4779,7 +4779,7 @@
|
|
4779
4779
|
"service_water_heating_peak_flow_rate": null,
|
4780
4780
|
"service_water_heating_area": null,
|
4781
4781
|
"service_water_heating_peak_flow_per_area": 0.005692514,
|
4782
|
-
"service_water_heating_target_temperature":
|
4782
|
+
"service_water_heating_target_temperature": 140.0,
|
4783
4783
|
"service_water_heating_fraction_sensible": null,
|
4784
4784
|
"service_water_heating_fraction_latent": null,
|
4785
4785
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -4855,7 +4855,7 @@
|
|
4855
4855
|
"service_water_heating_peak_flow_rate": null,
|
4856
4856
|
"service_water_heating_area": null,
|
4857
4857
|
"service_water_heating_peak_flow_per_area": 0.005692514,
|
4858
|
-
"service_water_heating_target_temperature":
|
4858
|
+
"service_water_heating_target_temperature": 140.0,
|
4859
4859
|
"service_water_heating_fraction_sensible": null,
|
4860
4860
|
"service_water_heating_fraction_latent": null,
|
4861
4861
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -4931,7 +4931,7 @@
|
|
4931
4931
|
"service_water_heating_peak_flow_rate": null,
|
4932
4932
|
"service_water_heating_area": null,
|
4933
4933
|
"service_water_heating_peak_flow_per_area": 0.009507954,
|
4934
|
-
"service_water_heating_target_temperature":
|
4934
|
+
"service_water_heating_target_temperature": 140.0,
|
4935
4935
|
"service_water_heating_fraction_sensible": null,
|
4936
4936
|
"service_water_heating_fraction_latent": null,
|
4937
4937
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -5007,7 +5007,7 @@
|
|
5007
5007
|
"service_water_heating_peak_flow_rate": null,
|
5008
5008
|
"service_water_heating_area": null,
|
5009
5009
|
"service_water_heating_peak_flow_per_area": 0.000631634,
|
5010
|
-
"service_water_heating_target_temperature":
|
5010
|
+
"service_water_heating_target_temperature": 140.0,
|
5011
5011
|
"service_water_heating_fraction_sensible": null,
|
5012
5012
|
"service_water_heating_fraction_latent": null,
|
5013
5013
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -5083,7 +5083,7 @@
|
|
5083
5083
|
"service_water_heating_peak_flow_rate": null,
|
5084
5084
|
"service_water_heating_area": null,
|
5085
5085
|
"service_water_heating_peak_flow_per_area": 0.003961647,
|
5086
|
-
"service_water_heating_target_temperature":
|
5086
|
+
"service_water_heating_target_temperature": 140.0,
|
5087
5087
|
"service_water_heating_fraction_sensible": null,
|
5088
5088
|
"service_water_heating_fraction_latent": null,
|
5089
5089
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -5159,7 +5159,7 @@
|
|
5159
5159
|
"service_water_heating_peak_flow_rate": 0.0,
|
5160
5160
|
"service_water_heating_area": null,
|
5161
5161
|
"service_water_heating_peak_flow_per_area": 0.0,
|
5162
|
-
"service_water_heating_target_temperature":
|
5162
|
+
"service_water_heating_target_temperature": 140.0,
|
5163
5163
|
"service_water_heating_fraction_sensible": null,
|
5164
5164
|
"service_water_heating_fraction_latent": null,
|
5165
5165
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -5235,7 +5235,7 @@
|
|
5235
5235
|
"service_water_heating_peak_flow_rate": 0.0,
|
5236
5236
|
"service_water_heating_area": null,
|
5237
5237
|
"service_water_heating_peak_flow_per_area": 0.0,
|
5238
|
-
"service_water_heating_target_temperature":
|
5238
|
+
"service_water_heating_target_temperature": 140.0,
|
5239
5239
|
"service_water_heating_fraction_sensible": null,
|
5240
5240
|
"service_water_heating_fraction_latent": null,
|
5241
5241
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -5311,7 +5311,7 @@
|
|
5311
5311
|
"service_water_heating_peak_flow_rate": 0.0,
|
5312
5312
|
"service_water_heating_area": null,
|
5313
5313
|
"service_water_heating_peak_flow_per_area": 0.0,
|
5314
|
-
"service_water_heating_target_temperature":
|
5314
|
+
"service_water_heating_target_temperature": 140.0,
|
5315
5315
|
"service_water_heating_fraction_sensible": null,
|
5316
5316
|
"service_water_heating_fraction_latent": null,
|
5317
5317
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -5387,7 +5387,7 @@
|
|
5387
5387
|
"service_water_heating_peak_flow_rate": 0.0,
|
5388
5388
|
"service_water_heating_area": null,
|
5389
5389
|
"service_water_heating_peak_flow_per_area": 0.0,
|
5390
|
-
"service_water_heating_target_temperature":
|
5390
|
+
"service_water_heating_target_temperature": 140.0,
|
5391
5391
|
"service_water_heating_fraction_sensible": null,
|
5392
5392
|
"service_water_heating_fraction_latent": null,
|
5393
5393
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -5463,7 +5463,7 @@
|
|
5463
5463
|
"service_water_heating_peak_flow_rate": 0.0,
|
5464
5464
|
"service_water_heating_area": null,
|
5465
5465
|
"service_water_heating_peak_flow_per_area": 0.0,
|
5466
|
-
"service_water_heating_target_temperature":
|
5466
|
+
"service_water_heating_target_temperature": 140.0,
|
5467
5467
|
"service_water_heating_fraction_sensible": null,
|
5468
5468
|
"service_water_heating_fraction_latent": null,
|
5469
5469
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -5539,7 +5539,7 @@
|
|
5539
5539
|
"service_water_heating_peak_flow_rate": 0.0,
|
5540
5540
|
"service_water_heating_area": null,
|
5541
5541
|
"service_water_heating_peak_flow_per_area": 0.0,
|
5542
|
-
"service_water_heating_target_temperature":
|
5542
|
+
"service_water_heating_target_temperature": 140.0,
|
5543
5543
|
"service_water_heating_fraction_sensible": null,
|
5544
5544
|
"service_water_heating_fraction_latent": null,
|
5545
5545
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -5615,7 +5615,7 @@
|
|
5615
5615
|
"service_water_heating_peak_flow_rate": 0.0,
|
5616
5616
|
"service_water_heating_area": null,
|
5617
5617
|
"service_water_heating_peak_flow_per_area": 0.0,
|
5618
|
-
"service_water_heating_target_temperature":
|
5618
|
+
"service_water_heating_target_temperature": 140.0,
|
5619
5619
|
"service_water_heating_fraction_sensible": null,
|
5620
5620
|
"service_water_heating_fraction_latent": null,
|
5621
5621
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -5691,7 +5691,7 @@
|
|
5691
5691
|
"service_water_heating_peak_flow_rate": 0.0,
|
5692
5692
|
"service_water_heating_area": null,
|
5693
5693
|
"service_water_heating_peak_flow_per_area": 0.0,
|
5694
|
-
"service_water_heating_target_temperature":
|
5694
|
+
"service_water_heating_target_temperature": 140.0,
|
5695
5695
|
"service_water_heating_fraction_sensible": null,
|
5696
5696
|
"service_water_heating_fraction_latent": null,
|
5697
5697
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -5767,7 +5767,7 @@
|
|
5767
5767
|
"service_water_heating_peak_flow_rate": 0.0,
|
5768
5768
|
"service_water_heating_area": null,
|
5769
5769
|
"service_water_heating_peak_flow_per_area": 0.0,
|
5770
|
-
"service_water_heating_target_temperature":
|
5770
|
+
"service_water_heating_target_temperature": 140.0,
|
5771
5771
|
"service_water_heating_fraction_sensible": null,
|
5772
5772
|
"service_water_heating_fraction_latent": null,
|
5773
5773
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -5843,7 +5843,7 @@
|
|
5843
5843
|
"service_water_heating_peak_flow_rate": null,
|
5844
5844
|
"service_water_heating_area": null,
|
5845
5845
|
"service_water_heating_peak_flow_per_area": 0.006180727,
|
5846
|
-
"service_water_heating_target_temperature":
|
5846
|
+
"service_water_heating_target_temperature": 140.0,
|
5847
5847
|
"service_water_heating_fraction_sensible": null,
|
5848
5848
|
"service_water_heating_fraction_latent": null,
|
5849
5849
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -5919,7 +5919,7 @@
|
|
5919
5919
|
"service_water_heating_peak_flow_rate": null,
|
5920
5920
|
"service_water_heating_area": null,
|
5921
5921
|
"service_water_heating_peak_flow_per_area": 0.009507954,
|
5922
|
-
"service_water_heating_target_temperature":
|
5922
|
+
"service_water_heating_target_temperature": 140.0,
|
5923
5923
|
"service_water_heating_fraction_sensible": null,
|
5924
5924
|
"service_water_heating_fraction_latent": null,
|
5925
5925
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -5995,7 +5995,7 @@
|
|
5995
5995
|
"service_water_heating_peak_flow_rate": null,
|
5996
5996
|
"service_water_heating_area": null,
|
5997
5997
|
"service_water_heating_peak_flow_per_area": 0.002849321,
|
5998
|
-
"service_water_heating_target_temperature":
|
5998
|
+
"service_water_heating_target_temperature": 140.0,
|
5999
5999
|
"service_water_heating_fraction_sensible": null,
|
6000
6000
|
"service_water_heating_fraction_latent": null,
|
6001
6001
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -6071,7 +6071,7 @@
|
|
6071
6071
|
"service_water_heating_peak_flow_rate": null,
|
6072
6072
|
"service_water_heating_area": null,
|
6073
6073
|
"service_water_heating_peak_flow_per_area": 0.002849321,
|
6074
|
-
"service_water_heating_target_temperature":
|
6074
|
+
"service_water_heating_target_temperature": 140.0,
|
6075
6075
|
"service_water_heating_fraction_sensible": null,
|
6076
6076
|
"service_water_heating_fraction_latent": null,
|
6077
6077
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -6147,7 +6147,7 @@
|
|
6147
6147
|
"service_water_heating_peak_flow_rate": null,
|
6148
6148
|
"service_water_heating_area": null,
|
6149
6149
|
"service_water_heating_peak_flow_per_area": 0.002839298,
|
6150
|
-
"service_water_heating_target_temperature":
|
6150
|
+
"service_water_heating_target_temperature": 140.0,
|
6151
6151
|
"service_water_heating_fraction_sensible": null,
|
6152
6152
|
"service_water_heating_fraction_latent": null,
|
6153
6153
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -6223,7 +6223,7 @@
|
|
6223
6223
|
"service_water_heating_peak_flow_rate": null,
|
6224
6224
|
"service_water_heating_area": null,
|
6225
6225
|
"service_water_heating_peak_flow_per_area": 0.00854573,
|
6226
|
-
"service_water_heating_target_temperature":
|
6226
|
+
"service_water_heating_target_temperature": 140.0,
|
6227
6227
|
"service_water_heating_fraction_sensible": null,
|
6228
6228
|
"service_water_heating_fraction_latent": null,
|
6229
6229
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -6299,7 +6299,7 @@
|
|
6299
6299
|
"service_water_heating_peak_flow_rate": null,
|
6300
6300
|
"service_water_heating_area": null,
|
6301
6301
|
"service_water_heating_peak_flow_per_area": 0.00854573,
|
6302
|
-
"service_water_heating_target_temperature":
|
6302
|
+
"service_water_heating_target_temperature": 140.0,
|
6303
6303
|
"service_water_heating_fraction_sensible": null,
|
6304
6304
|
"service_water_heating_fraction_latent": null,
|
6305
6305
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -6375,7 +6375,7 @@
|
|
6375
6375
|
"service_water_heating_peak_flow_rate": null,
|
6376
6376
|
"service_water_heating_area": null,
|
6377
6377
|
"service_water_heating_peak_flow_per_area": 0.004277465,
|
6378
|
-
"service_water_heating_target_temperature":
|
6378
|
+
"service_water_heating_target_temperature": 140.0,
|
6379
6379
|
"service_water_heating_fraction_sensible": null,
|
6380
6380
|
"service_water_heating_fraction_latent": null,
|
6381
6381
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -6451,7 +6451,7 @@
|
|
6451
6451
|
"service_water_heating_peak_flow_rate": null,
|
6452
6452
|
"service_water_heating_area": null,
|
6453
6453
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
6454
|
-
"service_water_heating_target_temperature":
|
6454
|
+
"service_water_heating_target_temperature": 140.0,
|
6455
6455
|
"service_water_heating_fraction_sensible": null,
|
6456
6456
|
"service_water_heating_fraction_latent": null,
|
6457
6457
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -6527,7 +6527,7 @@
|
|
6527
6527
|
"service_water_heating_peak_flow_rate": null,
|
6528
6528
|
"service_water_heating_area": null,
|
6529
6529
|
"service_water_heating_peak_flow_per_area": 0.001428144,
|
6530
|
-
"service_water_heating_target_temperature":
|
6530
|
+
"service_water_heating_target_temperature": 140.0,
|
6531
6531
|
"service_water_heating_fraction_sensible": null,
|
6532
6532
|
"service_water_heating_fraction_latent": null,
|
6533
6533
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -6603,7 +6603,7 @@
|
|
6603
6603
|
"service_water_heating_peak_flow_rate": null,
|
6604
6604
|
"service_water_heating_area": null,
|
6605
6605
|
"service_water_heating_peak_flow_per_area": 0.002853216,
|
6606
|
-
"service_water_heating_target_temperature":
|
6606
|
+
"service_water_heating_target_temperature": 140.0,
|
6607
6607
|
"service_water_heating_fraction_sensible": null,
|
6608
6608
|
"service_water_heating_fraction_latent": null,
|
6609
6609
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -6679,7 +6679,7 @@
|
|
6679
6679
|
"service_water_heating_peak_flow_rate": null,
|
6680
6680
|
"service_water_heating_area": null,
|
6681
6681
|
"service_water_heating_peak_flow_per_area": 0.0,
|
6682
|
-
"service_water_heating_target_temperature":
|
6682
|
+
"service_water_heating_target_temperature": 140.0,
|
6683
6683
|
"service_water_heating_fraction_sensible": null,
|
6684
6684
|
"service_water_heating_fraction_latent": null,
|
6685
6685
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -6755,7 +6755,7 @@
|
|
6755
6755
|
"service_water_heating_peak_flow_rate": null,
|
6756
6756
|
"service_water_heating_area": null,
|
6757
6757
|
"service_water_heating_peak_flow_per_area": 0.0,
|
6758
|
-
"service_water_heating_target_temperature":
|
6758
|
+
"service_water_heating_target_temperature": 140.0,
|
6759
6759
|
"service_water_heating_fraction_sensible": null,
|
6760
6760
|
"service_water_heating_fraction_latent": null,
|
6761
6761
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -6831,7 +6831,7 @@
|
|
6831
6831
|
"service_water_heating_peak_flow_rate": null,
|
6832
6832
|
"service_water_heating_area": null,
|
6833
6833
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
6834
|
-
"service_water_heating_target_temperature":
|
6834
|
+
"service_water_heating_target_temperature": 140.0,
|
6835
6835
|
"service_water_heating_fraction_sensible": null,
|
6836
6836
|
"service_water_heating_fraction_latent": null,
|
6837
6837
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -6907,7 +6907,7 @@
|
|
6907
6907
|
"service_water_heating_peak_flow_rate": null,
|
6908
6908
|
"service_water_heating_area": null,
|
6909
6909
|
"service_water_heating_peak_flow_per_area": 0.001072849,
|
6910
|
-
"service_water_heating_target_temperature":
|
6910
|
+
"service_water_heating_target_temperature": 140.0,
|
6911
6911
|
"service_water_heating_fraction_sensible": null,
|
6912
6912
|
"service_water_heating_fraction_latent": null,
|
6913
6913
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -6983,7 +6983,7 @@
|
|
6983
6983
|
"service_water_heating_peak_flow_rate": null,
|
6984
6984
|
"service_water_heating_area": null,
|
6985
6985
|
"service_water_heating_peak_flow_per_area": 0.007133752,
|
6986
|
-
"service_water_heating_target_temperature":
|
6986
|
+
"service_water_heating_target_temperature": 140.0,
|
6987
6987
|
"service_water_heating_fraction_sensible": null,
|
6988
6988
|
"service_water_heating_fraction_latent": null,
|
6989
6989
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -7059,7 +7059,7 @@
|
|
7059
7059
|
"service_water_heating_peak_flow_rate": null,
|
7060
7060
|
"service_water_heating_area": null,
|
7061
7061
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
7062
|
-
"service_water_heating_target_temperature":
|
7062
|
+
"service_water_heating_target_temperature": 140.0,
|
7063
7063
|
"service_water_heating_fraction_sensible": null,
|
7064
7064
|
"service_water_heating_fraction_latent": null,
|
7065
7065
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -7135,7 +7135,7 @@
|
|
7135
7135
|
"service_water_heating_peak_flow_rate": null,
|
7136
7136
|
"service_water_heating_area": null,
|
7137
7137
|
"service_water_heating_peak_flow_per_area": 0.001072849,
|
7138
|
-
"service_water_heating_target_temperature":
|
7138
|
+
"service_water_heating_target_temperature": 140.0,
|
7139
7139
|
"service_water_heating_fraction_sensible": null,
|
7140
7140
|
"service_water_heating_fraction_latent": null,
|
7141
7141
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -7211,7 +7211,7 @@
|
|
7211
7211
|
"service_water_heating_peak_flow_rate": null,
|
7212
7212
|
"service_water_heating_area": null,
|
7213
7213
|
"service_water_heating_peak_flow_per_area": 0.001072849,
|
7214
|
-
"service_water_heating_target_temperature":
|
7214
|
+
"service_water_heating_target_temperature": 140.0,
|
7215
7215
|
"service_water_heating_fraction_sensible": null,
|
7216
7216
|
"service_water_heating_fraction_latent": null,
|
7217
7217
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -7287,7 +7287,7 @@
|
|
7287
7287
|
"service_water_heating_peak_flow_rate": null,
|
7288
7288
|
"service_water_heating_area": null,
|
7289
7289
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
7290
|
-
"service_water_heating_target_temperature":
|
7290
|
+
"service_water_heating_target_temperature": 140.0,
|
7291
7291
|
"service_water_heating_fraction_sensible": null,
|
7292
7292
|
"service_water_heating_fraction_latent": null,
|
7293
7293
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -7363,7 +7363,7 @@
|
|
7363
7363
|
"service_water_heating_peak_flow_rate": null,
|
7364
7364
|
"service_water_heating_area": null,
|
7365
7365
|
"service_water_heating_peak_flow_per_area": 0.004277465,
|
7366
|
-
"service_water_heating_target_temperature":
|
7366
|
+
"service_water_heating_target_temperature": 140.0,
|
7367
7367
|
"service_water_heating_fraction_sensible": null,
|
7368
7368
|
"service_water_heating_fraction_latent": null,
|
7369
7369
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -7439,7 +7439,7 @@
|
|
7439
7439
|
"service_water_heating_peak_flow_rate": 0.0,
|
7440
7440
|
"service_water_heating_area": null,
|
7441
7441
|
"service_water_heating_peak_flow_per_area": 0.0,
|
7442
|
-
"service_water_heating_target_temperature":
|
7442
|
+
"service_water_heating_target_temperature": 140.0,
|
7443
7443
|
"service_water_heating_fraction_sensible": null,
|
7444
7444
|
"service_water_heating_fraction_latent": null,
|
7445
7445
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -7515,7 +7515,7 @@
|
|
7515
7515
|
"service_water_heating_peak_flow_rate": 0.0,
|
7516
7516
|
"service_water_heating_area": null,
|
7517
7517
|
"service_water_heating_peak_flow_per_area": 0.0,
|
7518
|
-
"service_water_heating_target_temperature":
|
7518
|
+
"service_water_heating_target_temperature": 140.0,
|
7519
7519
|
"service_water_heating_fraction_sensible": null,
|
7520
7520
|
"service_water_heating_fraction_latent": null,
|
7521
7521
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -7591,7 +7591,7 @@
|
|
7591
7591
|
"service_water_heating_peak_flow_rate": 0.0,
|
7592
7592
|
"service_water_heating_area": null,
|
7593
7593
|
"service_water_heating_peak_flow_per_area": 0.0,
|
7594
|
-
"service_water_heating_target_temperature":
|
7594
|
+
"service_water_heating_target_temperature": 140.0,
|
7595
7595
|
"service_water_heating_fraction_sensible": null,
|
7596
7596
|
"service_water_heating_fraction_latent": null,
|
7597
7597
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -7667,7 +7667,7 @@
|
|
7667
7667
|
"service_water_heating_peak_flow_rate": 0.0,
|
7668
7668
|
"service_water_heating_area": null,
|
7669
7669
|
"service_water_heating_peak_flow_per_area": 0.0,
|
7670
|
-
"service_water_heating_target_temperature":
|
7670
|
+
"service_water_heating_target_temperature": 140.0,
|
7671
7671
|
"service_water_heating_fraction_sensible": null,
|
7672
7672
|
"service_water_heating_fraction_latent": null,
|
7673
7673
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -7743,7 +7743,7 @@
|
|
7743
7743
|
"service_water_heating_peak_flow_rate": 0.0,
|
7744
7744
|
"service_water_heating_area": null,
|
7745
7745
|
"service_water_heating_peak_flow_per_area": 0.0,
|
7746
|
-
"service_water_heating_target_temperature":
|
7746
|
+
"service_water_heating_target_temperature": 140.0,
|
7747
7747
|
"service_water_heating_fraction_sensible": null,
|
7748
7748
|
"service_water_heating_fraction_latent": null,
|
7749
7749
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -7819,7 +7819,7 @@
|
|
7819
7819
|
"service_water_heating_peak_flow_rate": 0.0,
|
7820
7820
|
"service_water_heating_area": null,
|
7821
7821
|
"service_water_heating_peak_flow_per_area": 0.0,
|
7822
|
-
"service_water_heating_target_temperature":
|
7822
|
+
"service_water_heating_target_temperature": 140.0,
|
7823
7823
|
"service_water_heating_fraction_sensible": null,
|
7824
7824
|
"service_water_heating_fraction_latent": null,
|
7825
7825
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -7895,7 +7895,7 @@
|
|
7895
7895
|
"service_water_heating_peak_flow_rate": 0.0,
|
7896
7896
|
"service_water_heating_area": null,
|
7897
7897
|
"service_water_heating_peak_flow_per_area": 0.0,
|
7898
|
-
"service_water_heating_target_temperature":
|
7898
|
+
"service_water_heating_target_temperature": 140.0,
|
7899
7899
|
"service_water_heating_fraction_sensible": null,
|
7900
7900
|
"service_water_heating_fraction_latent": null,
|
7901
7901
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -7971,7 +7971,7 @@
|
|
7971
7971
|
"service_water_heating_peak_flow_rate": 0.0,
|
7972
7972
|
"service_water_heating_area": null,
|
7973
7973
|
"service_water_heating_peak_flow_per_area": 0.0,
|
7974
|
-
"service_water_heating_target_temperature":
|
7974
|
+
"service_water_heating_target_temperature": 140.0,
|
7975
7975
|
"service_water_heating_fraction_sensible": null,
|
7976
7976
|
"service_water_heating_fraction_latent": null,
|
7977
7977
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -8047,7 +8047,7 @@
|
|
8047
8047
|
"service_water_heating_peak_flow_rate": 0.0,
|
8048
8048
|
"service_water_heating_area": null,
|
8049
8049
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8050
|
-
"service_water_heating_target_temperature":
|
8050
|
+
"service_water_heating_target_temperature": 140.0,
|
8051
8051
|
"service_water_heating_fraction_sensible": null,
|
8052
8052
|
"service_water_heating_fraction_latent": null,
|
8053
8053
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -8123,7 +8123,7 @@
|
|
8123
8123
|
"service_water_heating_peak_flow_rate": 0.0,
|
8124
8124
|
"service_water_heating_area": null,
|
8125
8125
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8126
|
-
"service_water_heating_target_temperature":
|
8126
|
+
"service_water_heating_target_temperature": 140.0,
|
8127
8127
|
"service_water_heating_fraction_sensible": null,
|
8128
8128
|
"service_water_heating_fraction_latent": null,
|
8129
8129
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -8199,7 +8199,7 @@
|
|
8199
8199
|
"service_water_heating_peak_flow_rate": 0.0,
|
8200
8200
|
"service_water_heating_area": null,
|
8201
8201
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8202
|
-
"service_water_heating_target_temperature":
|
8202
|
+
"service_water_heating_target_temperature": 140.0,
|
8203
8203
|
"service_water_heating_fraction_sensible": null,
|
8204
8204
|
"service_water_heating_fraction_latent": null,
|
8205
8205
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -8275,7 +8275,7 @@
|
|
8275
8275
|
"service_water_heating_peak_flow_rate": 0.0,
|
8276
8276
|
"service_water_heating_area": null,
|
8277
8277
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8278
|
-
"service_water_heating_target_temperature":
|
8278
|
+
"service_water_heating_target_temperature": 140.0,
|
8279
8279
|
"service_water_heating_fraction_sensible": null,
|
8280
8280
|
"service_water_heating_fraction_latent": null,
|
8281
8281
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -8351,7 +8351,7 @@
|
|
8351
8351
|
"service_water_heating_peak_flow_rate": 0.0,
|
8352
8352
|
"service_water_heating_area": null,
|
8353
8353
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8354
|
-
"service_water_heating_target_temperature":
|
8354
|
+
"service_water_heating_target_temperature": 140.0,
|
8355
8355
|
"service_water_heating_fraction_sensible": null,
|
8356
8356
|
"service_water_heating_fraction_latent": null,
|
8357
8357
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -8427,7 +8427,7 @@
|
|
8427
8427
|
"service_water_heating_peak_flow_rate": 0.0,
|
8428
8428
|
"service_water_heating_area": null,
|
8429
8429
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8430
|
-
"service_water_heating_target_temperature":
|
8430
|
+
"service_water_heating_target_temperature": 140.0,
|
8431
8431
|
"service_water_heating_fraction_sensible": null,
|
8432
8432
|
"service_water_heating_fraction_latent": null,
|
8433
8433
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -8503,7 +8503,7 @@
|
|
8503
8503
|
"service_water_heating_peak_flow_rate": 0.0,
|
8504
8504
|
"service_water_heating_area": null,
|
8505
8505
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8506
|
-
"service_water_heating_target_temperature":
|
8506
|
+
"service_water_heating_target_temperature": 140.0,
|
8507
8507
|
"service_water_heating_fraction_sensible": null,
|
8508
8508
|
"service_water_heating_fraction_latent": null,
|
8509
8509
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -8579,7 +8579,7 @@
|
|
8579
8579
|
"service_water_heating_peak_flow_rate": 0.0,
|
8580
8580
|
"service_water_heating_area": null,
|
8581
8581
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8582
|
-
"service_water_heating_target_temperature":
|
8582
|
+
"service_water_heating_target_temperature": 140.0,
|
8583
8583
|
"service_water_heating_fraction_sensible": null,
|
8584
8584
|
"service_water_heating_fraction_latent": null,
|
8585
8585
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -8655,7 +8655,7 @@
|
|
8655
8655
|
"service_water_heating_peak_flow_rate": 0.0,
|
8656
8656
|
"service_water_heating_area": null,
|
8657
8657
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8658
|
-
"service_water_heating_target_temperature":
|
8658
|
+
"service_water_heating_target_temperature": 140.0,
|
8659
8659
|
"service_water_heating_fraction_sensible": null,
|
8660
8660
|
"service_water_heating_fraction_latent": null,
|
8661
8661
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -8731,7 +8731,7 @@
|
|
8731
8731
|
"service_water_heating_peak_flow_rate": 0.0,
|
8732
8732
|
"service_water_heating_area": null,
|
8733
8733
|
"service_water_heating_peak_flow_per_area": 0.0,
|
8734
|
-
"service_water_heating_target_temperature":
|
8734
|
+
"service_water_heating_target_temperature": 140.0,
|
8735
8735
|
"service_water_heating_fraction_sensible": null,
|
8736
8736
|
"service_water_heating_fraction_latent": null,
|
8737
8737
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -8807,7 +8807,7 @@
|
|
8807
8807
|
"service_water_heating_peak_flow_rate": null,
|
8808
8808
|
"service_water_heating_area": null,
|
8809
8809
|
"service_water_heating_peak_flow_per_area": 0.005455906,
|
8810
|
-
"service_water_heating_target_temperature":
|
8810
|
+
"service_water_heating_target_temperature": 140.0,
|
8811
8811
|
"service_water_heating_fraction_sensible": null,
|
8812
8812
|
"service_water_heating_fraction_latent": null,
|
8813
8813
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -8883,7 +8883,7 @@
|
|
8883
8883
|
"service_water_heating_peak_flow_rate": null,
|
8884
8884
|
"service_water_heating_area": null,
|
8885
8885
|
"service_water_heating_peak_flow_per_area": 0.001419649,
|
8886
|
-
"service_water_heating_target_temperature":
|
8886
|
+
"service_water_heating_target_temperature": 140.0,
|
8887
8887
|
"service_water_heating_fraction_sensible": null,
|
8888
8888
|
"service_water_heating_fraction_latent": null,
|
8889
8889
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -8959,7 +8959,7 @@
|
|
8959
8959
|
"service_water_heating_peak_flow_rate": null,
|
8960
8960
|
"service_water_heating_area": null,
|
8961
8961
|
"service_water_heating_peak_flow_per_area": 0.01140843,
|
8962
|
-
"service_water_heating_target_temperature":
|
8962
|
+
"service_water_heating_target_temperature": 140.0,
|
8963
8963
|
"service_water_heating_fraction_sensible": null,
|
8964
8964
|
"service_water_heating_fraction_latent": null,
|
8965
8965
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -9035,7 +9035,7 @@
|
|
9035
9035
|
"service_water_heating_peak_flow_rate": null,
|
9036
9036
|
"service_water_heating_area": null,
|
9037
9037
|
"service_water_heating_peak_flow_per_area": 0.005455906,
|
9038
|
-
"service_water_heating_target_temperature":
|
9038
|
+
"service_water_heating_target_temperature": 140.0,
|
9039
9039
|
"service_water_heating_fraction_sensible": null,
|
9040
9040
|
"service_water_heating_fraction_latent": null,
|
9041
9041
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -9111,7 +9111,7 @@
|
|
9111
9111
|
"service_water_heating_peak_flow_rate": null,
|
9112
9112
|
"service_water_heating_area": null,
|
9113
9113
|
"service_water_heating_peak_flow_per_area": 0.01140843,
|
9114
|
-
"service_water_heating_target_temperature":
|
9114
|
+
"service_water_heating_target_temperature": 140.0,
|
9115
9115
|
"service_water_heating_fraction_sensible": null,
|
9116
9116
|
"service_water_heating_fraction_latent": null,
|
9117
9117
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -9187,7 +9187,7 @@
|
|
9187
9187
|
"service_water_heating_peak_flow_rate": null,
|
9188
9188
|
"service_water_heating_area": null,
|
9189
9189
|
"service_water_heating_peak_flow_per_area": 0.004277465,
|
9190
|
-
"service_water_heating_target_temperature":
|
9190
|
+
"service_water_heating_target_temperature": 140.0,
|
9191
9191
|
"service_water_heating_fraction_sensible": null,
|
9192
9192
|
"service_water_heating_fraction_latent": null,
|
9193
9193
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -9263,7 +9263,7 @@
|
|
9263
9263
|
"service_water_heating_peak_flow_rate": null,
|
9264
9264
|
"service_water_heating_area": null,
|
9265
9265
|
"service_water_heating_peak_flow_per_area": 0.004277465,
|
9266
|
-
"service_water_heating_target_temperature":
|
9266
|
+
"service_water_heating_target_temperature": 140.0,
|
9267
9267
|
"service_water_heating_fraction_sensible": null,
|
9268
9268
|
"service_water_heating_fraction_latent": null,
|
9269
9269
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -9339,7 +9339,7 @@
|
|
9339
9339
|
"service_water_heating_peak_flow_rate": null,
|
9340
9340
|
"service_water_heating_area": null,
|
9341
9341
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
9342
|
-
"service_water_heating_target_temperature":
|
9342
|
+
"service_water_heating_target_temperature": 140.0,
|
9343
9343
|
"service_water_heating_fraction_sensible": null,
|
9344
9344
|
"service_water_heating_fraction_latent": null,
|
9345
9345
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -9415,7 +9415,7 @@
|
|
9415
9415
|
"service_water_heating_peak_flow_rate": null,
|
9416
9416
|
"service_water_heating_area": null,
|
9417
9417
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
9418
|
-
"service_water_heating_target_temperature":
|
9418
|
+
"service_water_heating_target_temperature": 140.0,
|
9419
9419
|
"service_water_heating_fraction_sensible": null,
|
9420
9420
|
"service_water_heating_fraction_latent": null,
|
9421
9421
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -9491,7 +9491,7 @@
|
|
9491
9491
|
"service_water_heating_peak_flow_rate": null,
|
9492
9492
|
"service_water_heating_area": null,
|
9493
9493
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
9494
|
-
"service_water_heating_target_temperature":
|
9494
|
+
"service_water_heating_target_temperature": 140.0,
|
9495
9495
|
"service_water_heating_fraction_sensible": null,
|
9496
9496
|
"service_water_heating_fraction_latent": null,
|
9497
9497
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -9567,7 +9567,7 @@
|
|
9567
9567
|
"service_water_heating_peak_flow_rate": null,
|
9568
9568
|
"service_water_heating_area": null,
|
9569
9569
|
"service_water_heating_peak_flow_per_area": 0.0,
|
9570
|
-
"service_water_heating_target_temperature":
|
9570
|
+
"service_water_heating_target_temperature": 140.0,
|
9571
9571
|
"service_water_heating_fraction_sensible": null,
|
9572
9572
|
"service_water_heating_fraction_latent": null,
|
9573
9573
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -9643,7 +9643,7 @@
|
|
9643
9643
|
"service_water_heating_peak_flow_rate": null,
|
9644
9644
|
"service_water_heating_area": null,
|
9645
9645
|
"service_water_heating_peak_flow_per_area": 0.0,
|
9646
|
-
"service_water_heating_target_temperature":
|
9646
|
+
"service_water_heating_target_temperature": 140.0,
|
9647
9647
|
"service_water_heating_fraction_sensible": null,
|
9648
9648
|
"service_water_heating_fraction_latent": null,
|
9649
9649
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -9719,7 +9719,7 @@
|
|
9719
9719
|
"service_water_heating_peak_flow_rate": null,
|
9720
9720
|
"service_water_heating_area": null,
|
9721
9721
|
"service_water_heating_peak_flow_per_area": 0.0,
|
9722
|
-
"service_water_heating_target_temperature":
|
9722
|
+
"service_water_heating_target_temperature": 140.0,
|
9723
9723
|
"service_water_heating_fraction_sensible": null,
|
9724
9724
|
"service_water_heating_fraction_latent": null,
|
9725
9725
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -9795,7 +9795,7 @@
|
|
9795
9795
|
"service_water_heating_peak_flow_rate": null,
|
9796
9796
|
"service_water_heating_area": null,
|
9797
9797
|
"service_water_heating_peak_flow_per_area": 0.0,
|
9798
|
-
"service_water_heating_target_temperature":
|
9798
|
+
"service_water_heating_target_temperature": 140.0,
|
9799
9799
|
"service_water_heating_fraction_sensible": null,
|
9800
9800
|
"service_water_heating_fraction_latent": null,
|
9801
9801
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -9871,7 +9871,7 @@
|
|
9871
9871
|
"service_water_heating_peak_flow_rate": null,
|
9872
9872
|
"service_water_heating_area": null,
|
9873
9873
|
"service_water_heating_peak_flow_per_area": 0.0,
|
9874
|
-
"service_water_heating_target_temperature":
|
9874
|
+
"service_water_heating_target_temperature": 140.0,
|
9875
9875
|
"service_water_heating_fraction_sensible": null,
|
9876
9876
|
"service_water_heating_fraction_latent": null,
|
9877
9877
|
"service_water_heating_schedule": "NECB-*-Service Water Heating",
|
@@ -9947,7 +9947,7 @@
|
|
9947
9947
|
"service_water_heating_peak_flow_rate": 0.0,
|
9948
9948
|
"service_water_heating_area": null,
|
9949
9949
|
"service_water_heating_peak_flow_per_area": 0.0,
|
9950
|
-
"service_water_heating_target_temperature":
|
9950
|
+
"service_water_heating_target_temperature": 140.0,
|
9951
9951
|
"service_water_heating_fraction_sensible": null,
|
9952
9952
|
"service_water_heating_fraction_latent": null,
|
9953
9953
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -10023,7 +10023,7 @@
|
|
10023
10023
|
"service_water_heating_peak_flow_rate": 0.0,
|
10024
10024
|
"service_water_heating_area": null,
|
10025
10025
|
"service_water_heating_peak_flow_per_area": 0.0,
|
10026
|
-
"service_water_heating_target_temperature":
|
10026
|
+
"service_water_heating_target_temperature": 140.0,
|
10027
10027
|
"service_water_heating_fraction_sensible": null,
|
10028
10028
|
"service_water_heating_fraction_latent": null,
|
10029
10029
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -10099,7 +10099,7 @@
|
|
10099
10099
|
"service_water_heating_peak_flow_rate": 0.0,
|
10100
10100
|
"service_water_heating_area": null,
|
10101
10101
|
"service_water_heating_peak_flow_per_area": 0.0,
|
10102
|
-
"service_water_heating_target_temperature":
|
10102
|
+
"service_water_heating_target_temperature": 140.0,
|
10103
10103
|
"service_water_heating_fraction_sensible": null,
|
10104
10104
|
"service_water_heating_fraction_latent": null,
|
10105
10105
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -10175,7 +10175,7 @@
|
|
10175
10175
|
"service_water_heating_peak_flow_rate": 0.0,
|
10176
10176
|
"service_water_heating_area": null,
|
10177
10177
|
"service_water_heating_peak_flow_per_area": 0.0,
|
10178
|
-
"service_water_heating_target_temperature":
|
10178
|
+
"service_water_heating_target_temperature": 140.0,
|
10179
10179
|
"service_water_heating_fraction_sensible": null,
|
10180
10180
|
"service_water_heating_fraction_latent": null,
|
10181
10181
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -10251,7 +10251,7 @@
|
|
10251
10251
|
"service_water_heating_peak_flow_rate": 0.0,
|
10252
10252
|
"service_water_heating_area": null,
|
10253
10253
|
"service_water_heating_peak_flow_per_area": 0.0,
|
10254
|
-
"service_water_heating_target_temperature":
|
10254
|
+
"service_water_heating_target_temperature": 140.0,
|
10255
10255
|
"service_water_heating_fraction_sensible": null,
|
10256
10256
|
"service_water_heating_fraction_latent": null,
|
10257
10257
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -10327,7 +10327,7 @@
|
|
10327
10327
|
"service_water_heating_peak_flow_rate": 0.0,
|
10328
10328
|
"service_water_heating_area": null,
|
10329
10329
|
"service_water_heating_peak_flow_per_area": 0.0,
|
10330
|
-
"service_water_heating_target_temperature":
|
10330
|
+
"service_water_heating_target_temperature": 140.0,
|
10331
10331
|
"service_water_heating_fraction_sensible": null,
|
10332
10332
|
"service_water_heating_fraction_latent": null,
|
10333
10333
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -10403,7 +10403,7 @@
|
|
10403
10403
|
"service_water_heating_peak_flow_rate": 0.0,
|
10404
10404
|
"service_water_heating_area": null,
|
10405
10405
|
"service_water_heating_peak_flow_per_area": 0.0,
|
10406
|
-
"service_water_heating_target_temperature":
|
10406
|
+
"service_water_heating_target_temperature": 140.0,
|
10407
10407
|
"service_water_heating_fraction_sensible": null,
|
10408
10408
|
"service_water_heating_fraction_latent": null,
|
10409
10409
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -10479,7 +10479,7 @@
|
|
10479
10479
|
"service_water_heating_peak_flow_rate": 0.0,
|
10480
10480
|
"service_water_heating_area": null,
|
10481
10481
|
"service_water_heating_peak_flow_per_area": 0.0,
|
10482
|
-
"service_water_heating_target_temperature":
|
10482
|
+
"service_water_heating_target_temperature": 140.0,
|
10483
10483
|
"service_water_heating_fraction_sensible": null,
|
10484
10484
|
"service_water_heating_fraction_latent": null,
|
10485
10485
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -10555,7 +10555,7 @@
|
|
10555
10555
|
"service_water_heating_peak_flow_rate": 0.0,
|
10556
10556
|
"service_water_heating_area": null,
|
10557
10557
|
"service_water_heating_peak_flow_per_area": 0.0,
|
10558
|
-
"service_water_heating_target_temperature":
|
10558
|
+
"service_water_heating_target_temperature": 140.0,
|
10559
10559
|
"service_water_heating_fraction_sensible": null,
|
10560
10560
|
"service_water_heating_fraction_latent": null,
|
10561
10561
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -10631,7 +10631,7 @@
|
|
10631
10631
|
"service_water_heating_peak_flow_rate": null,
|
10632
10632
|
"service_water_heating_area": null,
|
10633
10633
|
"service_water_heating_peak_flow_per_area": 0.002853216,
|
10634
|
-
"service_water_heating_target_temperature":
|
10634
|
+
"service_water_heating_target_temperature": 140.0,
|
10635
10635
|
"service_water_heating_fraction_sensible": null,
|
10636
10636
|
"service_water_heating_fraction_latent": null,
|
10637
10637
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -10707,7 +10707,7 @@
|
|
10707
10707
|
"service_water_heating_peak_flow_rate": null,
|
10708
10708
|
"service_water_heating_area": null,
|
10709
10709
|
"service_water_heating_peak_flow_per_area": 0.001425822,
|
10710
|
-
"service_water_heating_target_temperature":
|
10710
|
+
"service_water_heating_target_temperature": 140.0,
|
10711
10711
|
"service_water_heating_fraction_sensible": null,
|
10712
10712
|
"service_water_heating_fraction_latent": null,
|
10713
10713
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -10783,7 +10783,7 @@
|
|
10783
10783
|
"service_water_heating_peak_flow_rate": null,
|
10784
10784
|
"service_water_heating_area": null,
|
10785
10785
|
"service_water_heating_peak_flow_per_area": 0.001425822,
|
10786
|
-
"service_water_heating_target_temperature":
|
10786
|
+
"service_water_heating_target_temperature": 140.0,
|
10787
10787
|
"service_water_heating_fraction_sensible": null,
|
10788
10788
|
"service_water_heating_fraction_latent": null,
|
10789
10789
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -10859,7 +10859,7 @@
|
|
10859
10859
|
"service_water_heating_peak_flow_rate": null,
|
10860
10860
|
"service_water_heating_area": null,
|
10861
10861
|
"service_water_heating_peak_flow_per_area": 0.001425822,
|
10862
|
-
"service_water_heating_target_temperature":
|
10862
|
+
"service_water_heating_target_temperature": 140.0,
|
10863
10863
|
"service_water_heating_fraction_sensible": null,
|
10864
10864
|
"service_water_heating_fraction_latent": null,
|
10865
10865
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -10935,7 +10935,7 @@
|
|
10935
10935
|
"service_water_heating_peak_flow_rate": 0.0,
|
10936
10936
|
"service_water_heating_area": null,
|
10937
10937
|
"service_water_heating_peak_flow_per_area": 0.0,
|
10938
|
-
"service_water_heating_target_temperature":
|
10938
|
+
"service_water_heating_target_temperature": 140.0,
|
10939
10939
|
"service_water_heating_fraction_sensible": null,
|
10940
10940
|
"service_water_heating_fraction_latent": null,
|
10941
10941
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -11011,7 +11011,7 @@
|
|
11011
11011
|
"service_water_heating_peak_flow_rate": 0.0,
|
11012
11012
|
"service_water_heating_area": null,
|
11013
11013
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11014
|
-
"service_water_heating_target_temperature":
|
11014
|
+
"service_water_heating_target_temperature": 140.0,
|
11015
11015
|
"service_water_heating_fraction_sensible": null,
|
11016
11016
|
"service_water_heating_fraction_latent": null,
|
11017
11017
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -11087,7 +11087,7 @@
|
|
11087
11087
|
"service_water_heating_peak_flow_rate": 0.0,
|
11088
11088
|
"service_water_heating_area": null,
|
11089
11089
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11090
|
-
"service_water_heating_target_temperature":
|
11090
|
+
"service_water_heating_target_temperature": 140.0,
|
11091
11091
|
"service_water_heating_fraction_sensible": null,
|
11092
11092
|
"service_water_heating_fraction_latent": null,
|
11093
11093
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -11163,7 +11163,7 @@
|
|
11163
11163
|
"service_water_heating_peak_flow_rate": 0.0,
|
11164
11164
|
"service_water_heating_area": null,
|
11165
11165
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11166
|
-
"service_water_heating_target_temperature":
|
11166
|
+
"service_water_heating_target_temperature": 140.0,
|
11167
11167
|
"service_water_heating_fraction_sensible": null,
|
11168
11168
|
"service_water_heating_fraction_latent": null,
|
11169
11169
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -11239,7 +11239,7 @@
|
|
11239
11239
|
"service_water_heating_peak_flow_rate": 0.0,
|
11240
11240
|
"service_water_heating_area": null,
|
11241
11241
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11242
|
-
"service_water_heating_target_temperature":
|
11242
|
+
"service_water_heating_target_temperature": 140.0,
|
11243
11243
|
"service_water_heating_fraction_sensible": null,
|
11244
11244
|
"service_water_heating_fraction_latent": null,
|
11245
11245
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -11315,7 +11315,7 @@
|
|
11315
11315
|
"service_water_heating_peak_flow_rate": 0.0,
|
11316
11316
|
"service_water_heating_area": null,
|
11317
11317
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11318
|
-
"service_water_heating_target_temperature":
|
11318
|
+
"service_water_heating_target_temperature": 140.0,
|
11319
11319
|
"service_water_heating_fraction_sensible": null,
|
11320
11320
|
"service_water_heating_fraction_latent": null,
|
11321
11321
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -11391,7 +11391,7 @@
|
|
11391
11391
|
"service_water_heating_peak_flow_rate": 0.0,
|
11392
11392
|
"service_water_heating_area": null,
|
11393
11393
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11394
|
-
"service_water_heating_target_temperature":
|
11394
|
+
"service_water_heating_target_temperature": 140.0,
|
11395
11395
|
"service_water_heating_fraction_sensible": null,
|
11396
11396
|
"service_water_heating_fraction_latent": null,
|
11397
11397
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -11467,7 +11467,7 @@
|
|
11467
11467
|
"service_water_heating_peak_flow_rate": 0.0,
|
11468
11468
|
"service_water_heating_area": null,
|
11469
11469
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11470
|
-
"service_water_heating_target_temperature":
|
11470
|
+
"service_water_heating_target_temperature": 140.0,
|
11471
11471
|
"service_water_heating_fraction_sensible": null,
|
11472
11472
|
"service_water_heating_fraction_latent": null,
|
11473
11473
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -11543,7 +11543,7 @@
|
|
11543
11543
|
"service_water_heating_peak_flow_rate": 0.0,
|
11544
11544
|
"service_water_heating_area": null,
|
11545
11545
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11546
|
-
"service_water_heating_target_temperature":
|
11546
|
+
"service_water_heating_target_temperature": 140.0,
|
11547
11547
|
"service_water_heating_fraction_sensible": null,
|
11548
11548
|
"service_water_heating_fraction_latent": null,
|
11549
11549
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -11619,7 +11619,7 @@
|
|
11619
11619
|
"service_water_heating_peak_flow_rate": 0.0,
|
11620
11620
|
"service_water_heating_area": null,
|
11621
11621
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11622
|
-
"service_water_heating_target_temperature":
|
11622
|
+
"service_water_heating_target_temperature": 140.0,
|
11623
11623
|
"service_water_heating_fraction_sensible": null,
|
11624
11624
|
"service_water_heating_fraction_latent": null,
|
11625
11625
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -11695,7 +11695,7 @@
|
|
11695
11695
|
"service_water_heating_peak_flow_rate": 0.0,
|
11696
11696
|
"service_water_heating_area": null,
|
11697
11697
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11698
|
-
"service_water_heating_target_temperature":
|
11698
|
+
"service_water_heating_target_temperature": 140.0,
|
11699
11699
|
"service_water_heating_fraction_sensible": null,
|
11700
11700
|
"service_water_heating_fraction_latent": null,
|
11701
11701
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -11771,7 +11771,7 @@
|
|
11771
11771
|
"service_water_heating_peak_flow_rate": 0.0,
|
11772
11772
|
"service_water_heating_area": null,
|
11773
11773
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11774
|
-
"service_water_heating_target_temperature":
|
11774
|
+
"service_water_heating_target_temperature": 140.0,
|
11775
11775
|
"service_water_heating_fraction_sensible": null,
|
11776
11776
|
"service_water_heating_fraction_latent": null,
|
11777
11777
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -11847,7 +11847,7 @@
|
|
11847
11847
|
"service_water_heating_peak_flow_rate": 0.0,
|
11848
11848
|
"service_water_heating_area": null,
|
11849
11849
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11850
|
-
"service_water_heating_target_temperature":
|
11850
|
+
"service_water_heating_target_temperature": 140.0,
|
11851
11851
|
"service_water_heating_fraction_sensible": null,
|
11852
11852
|
"service_water_heating_fraction_latent": null,
|
11853
11853
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -11923,7 +11923,7 @@
|
|
11923
11923
|
"service_water_heating_peak_flow_rate": 0.0,
|
11924
11924
|
"service_water_heating_area": null,
|
11925
11925
|
"service_water_heating_peak_flow_per_area": 0.0,
|
11926
|
-
"service_water_heating_target_temperature":
|
11926
|
+
"service_water_heating_target_temperature": 140.0,
|
11927
11927
|
"service_water_heating_fraction_sensible": null,
|
11928
11928
|
"service_water_heating_fraction_latent": null,
|
11929
11929
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -11999,7 +11999,7 @@
|
|
11999
11999
|
"service_water_heating_peak_flow_rate": 0.0,
|
12000
12000
|
"service_water_heating_area": null,
|
12001
12001
|
"service_water_heating_peak_flow_per_area": 0.0,
|
12002
|
-
"service_water_heating_target_temperature":
|
12002
|
+
"service_water_heating_target_temperature": 140.0,
|
12003
12003
|
"service_water_heating_fraction_sensible": null,
|
12004
12004
|
"service_water_heating_fraction_latent": null,
|
12005
12005
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -12075,7 +12075,7 @@
|
|
12075
12075
|
"service_water_heating_peak_flow_rate": 0.0,
|
12076
12076
|
"service_water_heating_area": null,
|
12077
12077
|
"service_water_heating_peak_flow_per_area": 0.0,
|
12078
|
-
"service_water_heating_target_temperature":
|
12078
|
+
"service_water_heating_target_temperature": 140.0,
|
12079
12079
|
"service_water_heating_fraction_sensible": null,
|
12080
12080
|
"service_water_heating_fraction_latent": null,
|
12081
12081
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -12151,7 +12151,7 @@
|
|
12151
12151
|
"service_water_heating_peak_flow_rate": 0.0,
|
12152
12152
|
"service_water_heating_area": null,
|
12153
12153
|
"service_water_heating_peak_flow_per_area": 0.0,
|
12154
|
-
"service_water_heating_target_temperature":
|
12154
|
+
"service_water_heating_target_temperature": 140.0,
|
12155
12155
|
"service_water_heating_fraction_sensible": null,
|
12156
12156
|
"service_water_heating_fraction_latent": null,
|
12157
12157
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -12227,7 +12227,7 @@
|
|
12227
12227
|
"service_water_heating_peak_flow_rate": 0.0,
|
12228
12228
|
"service_water_heating_area": null,
|
12229
12229
|
"service_water_heating_peak_flow_per_area": 0.0,
|
12230
|
-
"service_water_heating_target_temperature":
|
12230
|
+
"service_water_heating_target_temperature": 140.0,
|
12231
12231
|
"service_water_heating_fraction_sensible": null,
|
12232
12232
|
"service_water_heating_fraction_latent": null,
|
12233
12233
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -12303,7 +12303,7 @@
|
|
12303
12303
|
"service_water_heating_peak_flow_rate": null,
|
12304
12304
|
"service_water_heating_area": null,
|
12305
12305
|
"service_water_heating_peak_flow_per_area": 0.001425822,
|
12306
|
-
"service_water_heating_target_temperature":
|
12306
|
+
"service_water_heating_target_temperature": 140.0,
|
12307
12307
|
"service_water_heating_fraction_sensible": null,
|
12308
12308
|
"service_water_heating_fraction_latent": null,
|
12309
12309
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -12379,7 +12379,7 @@
|
|
12379
12379
|
"service_water_heating_peak_flow_rate": null,
|
12380
12380
|
"service_water_heating_area": null,
|
12381
12381
|
"service_water_heating_peak_flow_per_area": 0.001425822,
|
12382
|
-
"service_water_heating_target_temperature":
|
12382
|
+
"service_water_heating_target_temperature": 140.0,
|
12383
12383
|
"service_water_heating_fraction_sensible": null,
|
12384
12384
|
"service_water_heating_fraction_latent": null,
|
12385
12385
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -12455,7 +12455,7 @@
|
|
12455
12455
|
"service_water_heating_peak_flow_rate": null,
|
12456
12456
|
"service_water_heating_area": null,
|
12457
12457
|
"service_water_heating_peak_flow_per_area": 0.005706432,
|
12458
|
-
"service_water_heating_target_temperature":
|
12458
|
+
"service_water_heating_target_temperature": 140.0,
|
12459
12459
|
"service_water_heating_fraction_sensible": null,
|
12460
12460
|
"service_water_heating_fraction_latent": null,
|
12461
12461
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -12531,7 +12531,7 @@
|
|
12531
12531
|
"service_water_heating_peak_flow_rate": null,
|
12532
12532
|
"service_water_heating_area": null,
|
12533
12533
|
"service_water_heating_peak_flow_per_area": 0.001191281,
|
12534
|
-
"service_water_heating_target_temperature":
|
12534
|
+
"service_water_heating_target_temperature": 140.0,
|
12535
12535
|
"service_water_heating_fraction_sensible": null,
|
12536
12536
|
"service_water_heating_fraction_latent": null,
|
12537
12537
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -12607,7 +12607,7 @@
|
|
12607
12607
|
"service_water_heating_peak_flow_rate": null,
|
12608
12608
|
"service_water_heating_area": null,
|
12609
12609
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
12610
|
-
"service_water_heating_target_temperature":
|
12610
|
+
"service_water_heating_target_temperature": 140.0,
|
12611
12611
|
"service_water_heating_fraction_sensible": null,
|
12612
12612
|
"service_water_heating_fraction_latent": null,
|
12613
12613
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -12683,7 +12683,7 @@
|
|
12683
12683
|
"service_water_heating_peak_flow_rate": null,
|
12684
12684
|
"service_water_heating_area": null,
|
12685
12685
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
12686
|
-
"service_water_heating_target_temperature":
|
12686
|
+
"service_water_heating_target_temperature": 140.0,
|
12687
12687
|
"service_water_heating_fraction_sensible": null,
|
12688
12688
|
"service_water_heating_fraction_latent": null,
|
12689
12689
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -12759,7 +12759,7 @@
|
|
12759
12759
|
"service_water_heating_peak_flow_rate": null,
|
12760
12760
|
"service_water_heating_area": null,
|
12761
12761
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
12762
|
-
"service_water_heating_target_temperature":
|
12762
|
+
"service_water_heating_target_temperature": 140.0,
|
12763
12763
|
"service_water_heating_fraction_sensible": null,
|
12764
12764
|
"service_water_heating_fraction_latent": null,
|
12765
12765
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -12835,7 +12835,7 @@
|
|
12835
12835
|
"service_water_heating_peak_flow_rate": null,
|
12836
12836
|
"service_water_heating_area": null,
|
12837
12837
|
"service_water_heating_peak_flow_per_area": 0.0,
|
12838
|
-
"service_water_heating_target_temperature":
|
12838
|
+
"service_water_heating_target_temperature": 140.0,
|
12839
12839
|
"service_water_heating_fraction_sensible": null,
|
12840
12840
|
"service_water_heating_fraction_latent": null,
|
12841
12841
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -12911,7 +12911,7 @@
|
|
12911
12911
|
"service_water_heating_peak_flow_rate": null,
|
12912
12912
|
"service_water_heating_area": null,
|
12913
12913
|
"service_water_heating_peak_flow_per_area": 0.002839298,
|
12914
|
-
"service_water_heating_target_temperature":
|
12914
|
+
"service_water_heating_target_temperature": 140.0,
|
12915
12915
|
"service_water_heating_fraction_sensible": null,
|
12916
12916
|
"service_water_heating_fraction_latent": null,
|
12917
12917
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -12987,7 +12987,7 @@
|
|
12987
12987
|
"service_water_heating_peak_flow_rate": null,
|
12988
12988
|
"service_water_heating_area": null,
|
12989
12989
|
"service_water_heating_peak_flow_per_area": 0.004120874,
|
12990
|
-
"service_water_heating_target_temperature":
|
12990
|
+
"service_water_heating_target_temperature": 140.0,
|
12991
12991
|
"service_water_heating_fraction_sensible": null,
|
12992
12992
|
"service_water_heating_fraction_latent": null,
|
12993
12993
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -13063,7 +13063,7 @@
|
|
13063
13063
|
"service_water_heating_peak_flow_rate": null,
|
13064
13064
|
"service_water_heating_area": null,
|
13065
13065
|
"service_water_heating_peak_flow_per_area": 0.005692514,
|
13066
|
-
"service_water_heating_target_temperature":
|
13066
|
+
"service_water_heating_target_temperature": 140.0,
|
13067
13067
|
"service_water_heating_fraction_sensible": null,
|
13068
13068
|
"service_water_heating_fraction_latent": null,
|
13069
13069
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -13139,7 +13139,7 @@
|
|
13139
13139
|
"service_water_heating_peak_flow_rate": null,
|
13140
13140
|
"service_water_heating_area": null,
|
13141
13141
|
"service_water_heating_peak_flow_per_area": 0.002138732,
|
13142
|
-
"service_water_heating_target_temperature":
|
13142
|
+
"service_water_heating_target_temperature": 140.0,
|
13143
13143
|
"service_water_heating_fraction_sensible": null,
|
13144
13144
|
"service_water_heating_fraction_latent": null,
|
13145
13145
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -13215,7 +13215,7 @@
|
|
13215
13215
|
"service_water_heating_peak_flow_rate": null,
|
13216
13216
|
"service_water_heating_area": null,
|
13217
13217
|
"service_water_heating_peak_flow_per_area": 0.001419649,
|
13218
|
-
"service_water_heating_target_temperature":
|
13218
|
+
"service_water_heating_target_temperature": 140.0,
|
13219
13219
|
"service_water_heating_fraction_sensible": null,
|
13220
13220
|
"service_water_heating_fraction_latent": null,
|
13221
13221
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -13291,7 +13291,7 @@
|
|
13291
13291
|
"service_water_heating_peak_flow_rate": null,
|
13292
13292
|
"service_water_heating_area": null,
|
13293
13293
|
"service_water_heating_peak_flow_per_area": 0.004286783,
|
13294
|
-
"service_water_heating_target_temperature":
|
13294
|
+
"service_water_heating_target_temperature": 140.0,
|
13295
13295
|
"service_water_heating_fraction_sensible": null,
|
13296
13296
|
"service_water_heating_fraction_latent": null,
|
13297
13297
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -13367,7 +13367,7 @@
|
|
13367
13367
|
"service_water_heating_peak_flow_rate": null,
|
13368
13368
|
"service_water_heating_area": null,
|
13369
13369
|
"service_water_heating_peak_flow_per_area": 0.001419649,
|
13370
|
-
"service_water_heating_target_temperature":
|
13370
|
+
"service_water_heating_target_temperature": 140.0,
|
13371
13371
|
"service_water_heating_fraction_sensible": null,
|
13372
13372
|
"service_water_heating_fraction_latent": null,
|
13373
13373
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -13443,7 +13443,7 @@
|
|
13443
13443
|
"service_water_heating_peak_flow_rate": null,
|
13444
13444
|
"service_water_heating_area": null,
|
13445
13445
|
"service_water_heating_peak_flow_per_area": 0.000631634,
|
13446
|
-
"service_water_heating_target_temperature":
|
13446
|
+
"service_water_heating_target_temperature": 140.0,
|
13447
13447
|
"service_water_heating_fraction_sensible": null,
|
13448
13448
|
"service_water_heating_fraction_latent": null,
|
13449
13449
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -13519,7 +13519,7 @@
|
|
13519
13519
|
"service_water_heating_peak_flow_rate": null,
|
13520
13520
|
"service_water_heating_area": null,
|
13521
13521
|
"service_water_heating_peak_flow_per_area": 0.000710589,
|
13522
|
-
"service_water_heating_target_temperature":
|
13522
|
+
"service_water_heating_target_temperature": 140.0,
|
13523
13523
|
"service_water_heating_fraction_sensible": null,
|
13524
13524
|
"service_water_heating_fraction_latent": null,
|
13525
13525
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -13595,7 +13595,7 @@
|
|
13595
13595
|
"service_water_heating_peak_flow_rate": null,
|
13596
13596
|
"service_water_heating_area": null,
|
13597
13597
|
"service_water_heating_peak_flow_per_area": 0.000631634,
|
13598
|
-
"service_water_heating_target_temperature":
|
13598
|
+
"service_water_heating_target_temperature": 140.0,
|
13599
13599
|
"service_water_heating_fraction_sensible": null,
|
13600
13600
|
"service_water_heating_fraction_latent": null,
|
13601
13601
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -13671,7 +13671,7 @@
|
|
13671
13671
|
"service_water_heating_peak_flow_rate": null,
|
13672
13672
|
"service_water_heating_area": null,
|
13673
13673
|
"service_water_heating_peak_flow_per_area": 0.000631634,
|
13674
|
-
"service_water_heating_target_temperature":
|
13674
|
+
"service_water_heating_target_temperature": 140.0,
|
13675
13675
|
"service_water_heating_fraction_sensible": null,
|
13676
13676
|
"service_water_heating_fraction_latent": null,
|
13677
13677
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -13747,7 +13747,7 @@
|
|
13747
13747
|
"service_water_heating_peak_flow_rate": null,
|
13748
13748
|
"service_water_heating_area": null,
|
13749
13749
|
"service_water_heating_peak_flow_per_area": 0.002839298,
|
13750
|
-
"service_water_heating_target_temperature":
|
13750
|
+
"service_water_heating_target_temperature": 140.0,
|
13751
13751
|
"service_water_heating_fraction_sensible": null,
|
13752
13752
|
"service_water_heating_fraction_latent": null,
|
13753
13753
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -13823,7 +13823,7 @@
|
|
13823
13823
|
"service_water_heating_peak_flow_rate": null,
|
13824
13824
|
"service_water_heating_area": null,
|
13825
13825
|
"service_water_heating_peak_flow_per_area": 0.00854573,
|
13826
|
-
"service_water_heating_target_temperature":
|
13826
|
+
"service_water_heating_target_temperature": 140.0,
|
13827
13827
|
"service_water_heating_fraction_sensible": null,
|
13828
13828
|
"service_water_heating_fraction_latent": null,
|
13829
13829
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -13899,7 +13899,7 @@
|
|
13899
13899
|
"service_water_heating_peak_flow_rate": null,
|
13900
13900
|
"service_water_heating_area": null,
|
13901
13901
|
"service_water_heating_peak_flow_per_area": 0.00854573,
|
13902
|
-
"service_water_heating_target_temperature":
|
13902
|
+
"service_water_heating_target_temperature": 140.0,
|
13903
13903
|
"service_water_heating_fraction_sensible": null,
|
13904
13904
|
"service_water_heating_fraction_latent": null,
|
13905
13905
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -13975,7 +13975,7 @@
|
|
13975
13975
|
"service_water_heating_peak_flow_rate": null,
|
13976
13976
|
"service_water_heating_area": null,
|
13977
13977
|
"service_water_heating_peak_flow_per_area": 0.00854573,
|
13978
|
-
"service_water_heating_target_temperature":
|
13978
|
+
"service_water_heating_target_temperature": 140.0,
|
13979
13979
|
"service_water_heating_fraction_sensible": null,
|
13980
13980
|
"service_water_heating_fraction_latent": null,
|
13981
13981
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -14051,7 +14051,7 @@
|
|
14051
14051
|
"service_water_heating_peak_flow_rate": null,
|
14052
14052
|
"service_water_heating_area": null,
|
14053
14053
|
"service_water_heating_peak_flow_per_area": 0.00854573,
|
14054
|
-
"service_water_heating_target_temperature":
|
14054
|
+
"service_water_heating_target_temperature": 140.0,
|
14055
14055
|
"service_water_heating_fraction_sensible": null,
|
14056
14056
|
"service_water_heating_fraction_latent": null,
|
14057
14057
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -14127,7 +14127,7 @@
|
|
14127
14127
|
"service_water_heating_peak_flow_rate": null,
|
14128
14128
|
"service_water_heating_area": null,
|
14129
14129
|
"service_water_heating_peak_flow_per_area": 0.00854573,
|
14130
|
-
"service_water_heating_target_temperature":
|
14130
|
+
"service_water_heating_target_temperature": 140.0,
|
14131
14131
|
"service_water_heating_fraction_sensible": null,
|
14132
14132
|
"service_water_heating_fraction_latent": null,
|
14133
14133
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -14203,7 +14203,7 @@
|
|
14203
14203
|
"service_water_heating_peak_flow_rate": 0.0,
|
14204
14204
|
"service_water_heating_area": null,
|
14205
14205
|
"service_water_heating_peak_flow_per_area": 0.0,
|
14206
|
-
"service_water_heating_target_temperature":
|
14206
|
+
"service_water_heating_target_temperature": 140.0,
|
14207
14207
|
"service_water_heating_fraction_sensible": null,
|
14208
14208
|
"service_water_heating_fraction_latent": null,
|
14209
14209
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -14279,7 +14279,7 @@
|
|
14279
14279
|
"service_water_heating_peak_flow_rate": 0.0,
|
14280
14280
|
"service_water_heating_area": null,
|
14281
14281
|
"service_water_heating_peak_flow_per_area": 0.0,
|
14282
|
-
"service_water_heating_target_temperature":
|
14282
|
+
"service_water_heating_target_temperature": 140.0,
|
14283
14283
|
"service_water_heating_fraction_sensible": null,
|
14284
14284
|
"service_water_heating_fraction_latent": null,
|
14285
14285
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -14355,7 +14355,7 @@
|
|
14355
14355
|
"service_water_heating_peak_flow_rate": 0.0,
|
14356
14356
|
"service_water_heating_area": null,
|
14357
14357
|
"service_water_heating_peak_flow_per_area": 0.0,
|
14358
|
-
"service_water_heating_target_temperature":
|
14358
|
+
"service_water_heating_target_temperature": 140.0,
|
14359
14359
|
"service_water_heating_fraction_sensible": null,
|
14360
14360
|
"service_water_heating_fraction_latent": null,
|
14361
14361
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -14431,7 +14431,7 @@
|
|
14431
14431
|
"service_water_heating_peak_flow_rate": 0.0,
|
14432
14432
|
"service_water_heating_area": null,
|
14433
14433
|
"service_water_heating_peak_flow_per_area": 0.0,
|
14434
|
-
"service_water_heating_target_temperature":
|
14434
|
+
"service_water_heating_target_temperature": 140.0,
|
14435
14435
|
"service_water_heating_fraction_sensible": null,
|
14436
14436
|
"service_water_heating_fraction_latent": null,
|
14437
14437
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -14507,7 +14507,7 @@
|
|
14507
14507
|
"service_water_heating_peak_flow_rate": 0.0,
|
14508
14508
|
"service_water_heating_area": null,
|
14509
14509
|
"service_water_heating_peak_flow_per_area": 0.0,
|
14510
|
-
"service_water_heating_target_temperature":
|
14510
|
+
"service_water_heating_target_temperature": 140.0,
|
14511
14511
|
"service_water_heating_fraction_sensible": null,
|
14512
14512
|
"service_water_heating_fraction_latent": null,
|
14513
14513
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -14583,7 +14583,7 @@
|
|
14583
14583
|
"service_water_heating_peak_flow_rate": 0.0,
|
14584
14584
|
"service_water_heating_area": null,
|
14585
14585
|
"service_water_heating_peak_flow_per_area": 0.0,
|
14586
|
-
"service_water_heating_target_temperature":
|
14586
|
+
"service_water_heating_target_temperature": 140.0,
|
14587
14587
|
"service_water_heating_fraction_sensible": null,
|
14588
14588
|
"service_water_heating_fraction_latent": null,
|
14589
14589
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -14659,7 +14659,7 @@
|
|
14659
14659
|
"service_water_heating_peak_flow_rate": 0.0,
|
14660
14660
|
"service_water_heating_area": null,
|
14661
14661
|
"service_water_heating_peak_flow_per_area": 0.0,
|
14662
|
-
"service_water_heating_target_temperature":
|
14662
|
+
"service_water_heating_target_temperature": 140.0,
|
14663
14663
|
"service_water_heating_fraction_sensible": null,
|
14664
14664
|
"service_water_heating_fraction_latent": null,
|
14665
14665
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -14735,7 +14735,7 @@
|
|
14735
14735
|
"service_water_heating_peak_flow_rate": 0.0,
|
14736
14736
|
"service_water_heating_area": null,
|
14737
14737
|
"service_water_heating_peak_flow_per_area": 0.0,
|
14738
|
-
"service_water_heating_target_temperature":
|
14738
|
+
"service_water_heating_target_temperature": 140.0,
|
14739
14739
|
"service_water_heating_fraction_sensible": null,
|
14740
14740
|
"service_water_heating_fraction_latent": null,
|
14741
14741
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -14811,7 +14811,7 @@
|
|
14811
14811
|
"service_water_heating_peak_flow_rate": 0.0,
|
14812
14812
|
"service_water_heating_area": null,
|
14813
14813
|
"service_water_heating_peak_flow_per_area": 0.0,
|
14814
|
-
"service_water_heating_target_temperature":
|
14814
|
+
"service_water_heating_target_temperature": 140.0,
|
14815
14815
|
"service_water_heating_fraction_sensible": null,
|
14816
14816
|
"service_water_heating_fraction_latent": null,
|
14817
14817
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -14887,7 +14887,7 @@
|
|
14887
14887
|
"service_water_heating_peak_flow_rate": null,
|
14888
14888
|
"service_water_heating_area": null,
|
14889
14889
|
"service_water_heating_peak_flow_per_area": 0.00142675,
|
14890
|
-
"service_water_heating_target_temperature":
|
14890
|
+
"service_water_heating_target_temperature": 140.0,
|
14891
14891
|
"service_water_heating_fraction_sensible": null,
|
14892
14892
|
"service_water_heating_fraction_latent": null,
|
14893
14893
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -14963,7 +14963,7 @@
|
|
14963
14963
|
"service_water_heating_peak_flow_rate": null,
|
14964
14964
|
"service_water_heating_area": null,
|
14965
14965
|
"service_water_heating_peak_flow_per_area": 0.00142675,
|
14966
|
-
"service_water_heating_target_temperature":
|
14966
|
+
"service_water_heating_target_temperature": 140.0,
|
14967
14967
|
"service_water_heating_fraction_sensible": null,
|
14968
14968
|
"service_water_heating_fraction_latent": null,
|
14969
14969
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -15039,7 +15039,7 @@
|
|
15039
15039
|
"service_water_heating_peak_flow_rate": null,
|
15040
15040
|
"service_water_heating_area": null,
|
15041
15041
|
"service_water_heating_peak_flow_per_area": 0.00142675,
|
15042
|
-
"service_water_heating_target_temperature":
|
15042
|
+
"service_water_heating_target_temperature": 140.0,
|
15043
15043
|
"service_water_heating_fraction_sensible": null,
|
15044
15044
|
"service_water_heating_fraction_latent": null,
|
15045
15045
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -15115,7 +15115,7 @@
|
|
15115
15115
|
"service_water_heating_peak_flow_rate": null,
|
15116
15116
|
"service_water_heating_area": null,
|
15117
15117
|
"service_water_heating_peak_flow_per_area": 0.00142675,
|
15118
|
-
"service_water_heating_target_temperature":
|
15118
|
+
"service_water_heating_target_temperature": 140.0,
|
15119
15119
|
"service_water_heating_fraction_sensible": null,
|
15120
15120
|
"service_water_heating_fraction_latent": null,
|
15121
15121
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -15191,7 +15191,7 @@
|
|
15191
15191
|
"service_water_heating_peak_flow_rate": null,
|
15192
15192
|
"service_water_heating_area": null,
|
15193
15193
|
"service_water_heating_peak_flow_per_area": 0.001546575,
|
15194
|
-
"service_water_heating_target_temperature":
|
15194
|
+
"service_water_heating_target_temperature": 140.0,
|
15195
15195
|
"service_water_heating_fraction_sensible": null,
|
15196
15196
|
"service_water_heating_fraction_latent": null,
|
15197
15197
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -15267,7 +15267,7 @@
|
|
15267
15267
|
"service_water_heating_peak_flow_rate": null,
|
15268
15268
|
"service_water_heating_area": null,
|
15269
15269
|
"service_water_heating_peak_flow_per_area": 0.003089824,
|
15270
|
-
"service_water_heating_target_temperature":
|
15270
|
+
"service_water_heating_target_temperature": 140.0,
|
15271
15271
|
"service_water_heating_fraction_sensible": null,
|
15272
15272
|
"service_water_heating_fraction_latent": null,
|
15273
15273
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -15343,7 +15343,7 @@
|
|
15343
15343
|
"service_water_heating_peak_flow_rate": null,
|
15344
15344
|
"service_water_heating_area": null,
|
15345
15345
|
"service_water_heating_peak_flow_per_area": 0.003089824,
|
15346
|
-
"service_water_heating_target_temperature":
|
15346
|
+
"service_water_heating_target_temperature": 140.0,
|
15347
15347
|
"service_water_heating_fraction_sensible": null,
|
15348
15348
|
"service_water_heating_fraction_latent": null,
|
15349
15349
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -15419,7 +15419,7 @@
|
|
15419
15419
|
"service_water_heating_peak_flow_rate": null,
|
15420
15420
|
"service_water_heating_area": null,
|
15421
15421
|
"service_water_heating_peak_flow_per_area": 0.001546575,
|
15422
|
-
"service_water_heating_target_temperature":
|
15422
|
+
"service_water_heating_target_temperature": 140.0,
|
15423
15423
|
"service_water_heating_fraction_sensible": null,
|
15424
15424
|
"service_water_heating_fraction_latent": null,
|
15425
15425
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -15495,7 +15495,7 @@
|
|
15495
15495
|
"service_water_heating_peak_flow_rate": null,
|
15496
15496
|
"service_water_heating_area": null,
|
15497
15497
|
"service_water_heating_peak_flow_per_area": 0.00061863,
|
15498
|
-
"service_water_heating_target_temperature":
|
15498
|
+
"service_water_heating_target_temperature": 140.0,
|
15499
15499
|
"service_water_heating_fraction_sensible": null,
|
15500
15500
|
"service_water_heating_fraction_latent": null,
|
15501
15501
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -15571,7 +15571,7 @@
|
|
15571
15571
|
"service_water_heating_peak_flow_rate": null,
|
15572
15572
|
"service_water_heating_area": null,
|
15573
15573
|
"service_water_heating_peak_flow_per_area": 0.00061863,
|
15574
|
-
"service_water_heating_target_temperature":
|
15574
|
+
"service_water_heating_target_temperature": 140.0,
|
15575
15575
|
"service_water_heating_fraction_sensible": null,
|
15576
15576
|
"service_water_heating_fraction_latent": null,
|
15577
15577
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -15647,7 +15647,7 @@
|
|
15647
15647
|
"service_water_heating_peak_flow_rate": null,
|
15648
15648
|
"service_water_heating_area": null,
|
15649
15649
|
"service_water_heating_peak_flow_per_area": 0.000309315,
|
15650
|
-
"service_water_heating_target_temperature":
|
15650
|
+
"service_water_heating_target_temperature": 140.0,
|
15651
15651
|
"service_water_heating_fraction_sensible": null,
|
15652
15652
|
"service_water_heating_fraction_latent": null,
|
15653
15653
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -15723,7 +15723,7 @@
|
|
15723
15723
|
"service_water_heating_peak_flow_rate": null,
|
15724
15724
|
"service_water_heating_area": null,
|
15725
15725
|
"service_water_heating_peak_flow_per_area": 0.000309315,
|
15726
|
-
"service_water_heating_target_temperature":
|
15726
|
+
"service_water_heating_target_temperature": 140.0,
|
15727
15727
|
"service_water_heating_fraction_sensible": null,
|
15728
15728
|
"service_water_heating_fraction_latent": null,
|
15729
15729
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -15799,7 +15799,7 @@
|
|
15799
15799
|
"service_water_heating_peak_flow_rate": null,
|
15800
15800
|
"service_water_heating_area": null,
|
15801
15801
|
"service_water_heating_peak_flow_per_area": 0.000309315,
|
15802
|
-
"service_water_heating_target_temperature":
|
15802
|
+
"service_water_heating_target_temperature": 140.0,
|
15803
15803
|
"service_water_heating_fraction_sensible": null,
|
15804
15804
|
"service_water_heating_fraction_latent": null,
|
15805
15805
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -15875,7 +15875,7 @@
|
|
15875
15875
|
"service_water_heating_peak_flow_rate": null,
|
15876
15876
|
"service_water_heating_area": null,
|
15877
15877
|
"service_water_heating_peak_flow_per_area": 0.000309315,
|
15878
|
-
"service_water_heating_target_temperature":
|
15878
|
+
"service_water_heating_target_temperature": 140.0,
|
15879
15879
|
"service_water_heating_fraction_sensible": null,
|
15880
15880
|
"service_water_heating_fraction_latent": null,
|
15881
15881
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -15951,7 +15951,7 @@
|
|
15951
15951
|
"service_water_heating_peak_flow_rate": 0.0,
|
15952
15952
|
"service_water_heating_area": null,
|
15953
15953
|
"service_water_heating_peak_flow_per_area": 0.0,
|
15954
|
-
"service_water_heating_target_temperature":
|
15954
|
+
"service_water_heating_target_temperature": 140.0,
|
15955
15955
|
"service_water_heating_fraction_sensible": null,
|
15956
15956
|
"service_water_heating_fraction_latent": null,
|
15957
15957
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -16027,7 +16027,7 @@
|
|
16027
16027
|
"service_water_heating_peak_flow_rate": 0.0,
|
16028
16028
|
"service_water_heating_area": null,
|
16029
16029
|
"service_water_heating_peak_flow_per_area": 0.0,
|
16030
|
-
"service_water_heating_target_temperature":
|
16030
|
+
"service_water_heating_target_temperature": 140.0,
|
16031
16031
|
"service_water_heating_fraction_sensible": null,
|
16032
16032
|
"service_water_heating_fraction_latent": null,
|
16033
16033
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -16103,7 +16103,7 @@
|
|
16103
16103
|
"service_water_heating_peak_flow_rate": 0.0,
|
16104
16104
|
"service_water_heating_area": null,
|
16105
16105
|
"service_water_heating_peak_flow_per_area": 0.0,
|
16106
|
-
"service_water_heating_target_temperature":
|
16106
|
+
"service_water_heating_target_temperature": 140.0,
|
16107
16107
|
"service_water_heating_fraction_sensible": null,
|
16108
16108
|
"service_water_heating_fraction_latent": null,
|
16109
16109
|
"service_water_heating_schedule": "NECB-C-Service Water Heating",
|
@@ -16179,7 +16179,7 @@
|
|
16179
16179
|
"service_water_heating_peak_flow_rate": 0.0,
|
16180
16180
|
"service_water_heating_area": null,
|
16181
16181
|
"service_water_heating_peak_flow_per_area": 0.0,
|
16182
|
-
"service_water_heating_target_temperature":
|
16182
|
+
"service_water_heating_target_temperature": 140.0,
|
16183
16183
|
"service_water_heating_fraction_sensible": null,
|
16184
16184
|
"service_water_heating_fraction_latent": null,
|
16185
16185
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -16255,7 +16255,7 @@
|
|
16255
16255
|
"service_water_heating_peak_flow_rate": 0.0,
|
16256
16256
|
"service_water_heating_area": null,
|
16257
16257
|
"service_water_heating_peak_flow_per_area": 0.0,
|
16258
|
-
"service_water_heating_target_temperature":
|
16258
|
+
"service_water_heating_target_temperature": 140.0,
|
16259
16259
|
"service_water_heating_fraction_sensible": null,
|
16260
16260
|
"service_water_heating_fraction_latent": null,
|
16261
16261
|
"service_water_heating_schedule": "NECB-E-Service Water Heating",
|
@@ -16331,7 +16331,7 @@
|
|
16331
16331
|
"service_water_heating_peak_flow_rate": 0.0,
|
16332
16332
|
"service_water_heating_area": null,
|
16333
16333
|
"service_water_heating_peak_flow_per_area": 0.0,
|
16334
|
-
"service_water_heating_target_temperature":
|
16334
|
+
"service_water_heating_target_temperature": 140.0,
|
16335
16335
|
"service_water_heating_fraction_sensible": null,
|
16336
16336
|
"service_water_heating_fraction_latent": null,
|
16337
16337
|
"service_water_heating_schedule": "NECB-F-Service Water Heating",
|
@@ -16407,7 +16407,7 @@
|
|
16407
16407
|
"service_water_heating_peak_flow_rate": 0.0,
|
16408
16408
|
"service_water_heating_area": null,
|
16409
16409
|
"service_water_heating_peak_flow_per_area": 0.0,
|
16410
|
-
"service_water_heating_target_temperature":
|
16410
|
+
"service_water_heating_target_temperature": 140.0,
|
16411
16411
|
"service_water_heating_fraction_sensible": null,
|
16412
16412
|
"service_water_heating_fraction_latent": null,
|
16413
16413
|
"service_water_heating_schedule": "NECB-G-Service Water Heating",
|
@@ -16483,7 +16483,7 @@
|
|
16483
16483
|
"service_water_heating_peak_flow_rate": 0.0,
|
16484
16484
|
"service_water_heating_area": null,
|
16485
16485
|
"service_water_heating_peak_flow_per_area": 0.0,
|
16486
|
-
"service_water_heating_target_temperature":
|
16486
|
+
"service_water_heating_target_temperature": 140.0,
|
16487
16487
|
"service_water_heating_fraction_sensible": null,
|
16488
16488
|
"service_water_heating_fraction_latent": null,
|
16489
16489
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -16559,7 +16559,7 @@
|
|
16559
16559
|
"service_water_heating_peak_flow_rate": 0.0,
|
16560
16560
|
"service_water_heating_area": null,
|
16561
16561
|
"service_water_heating_peak_flow_per_area": 0.0,
|
16562
|
-
"service_water_heating_target_temperature":
|
16562
|
+
"service_water_heating_target_temperature": 140.0,
|
16563
16563
|
"service_water_heating_fraction_sensible": null,
|
16564
16564
|
"service_water_heating_fraction_latent": null,
|
16565
16565
|
"service_water_heating_schedule": "NECB-I-Service Water Heating",
|
@@ -16635,7 +16635,7 @@
|
|
16635
16635
|
"service_water_heating_peak_flow_rate": null,
|
16636
16636
|
"service_water_heating_area": null,
|
16637
16637
|
"service_water_heating_peak_flow_per_area": 0.001425822,
|
16638
|
-
"service_water_heating_target_temperature":
|
16638
|
+
"service_water_heating_target_temperature": 140.0,
|
16639
16639
|
"service_water_heating_fraction_sensible": null,
|
16640
16640
|
"service_water_heating_fraction_latent": null,
|
16641
16641
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -16711,7 +16711,7 @@
|
|
16711
16711
|
"service_water_heating_peak_flow_rate": null,
|
16712
16712
|
"service_water_heating_area": null,
|
16713
16713
|
"service_water_heating_peak_flow_per_area": 0.004274,
|
16714
|
-
"service_water_heating_target_temperature":
|
16714
|
+
"service_water_heating_target_temperature": 140.0,
|
16715
16715
|
"service_water_heating_fraction_sensible": null,
|
16716
16716
|
"service_water_heating_fraction_latent": null,
|
16717
16717
|
"service_water_heating_schedule": "NECB-B-Service Water Heating",
|
@@ -16787,7 +16787,7 @@
|
|
16787
16787
|
"service_water_heating_peak_flow_rate": null,
|
16788
16788
|
"service_water_heating_area": null,
|
16789
16789
|
"service_water_heating_peak_flow_per_area": 0.00171,
|
16790
|
-
"service_water_heating_target_temperature":
|
16790
|
+
"service_water_heating_target_temperature": 140.0,
|
16791
16791
|
"service_water_heating_fraction_sensible": null,
|
16792
16792
|
"service_water_heating_fraction_latent": null,
|
16793
16793
|
"service_water_heating_schedule": "NECB-D-Service Water Heating",
|
@@ -16863,7 +16863,7 @@
|
|
16863
16863
|
"service_water_heating_peak_flow_rate": null,
|
16864
16864
|
"service_water_heating_area": null,
|
16865
16865
|
"service_water_heating_peak_flow_per_area": 0.002058,
|
16866
|
-
"service_water_heating_target_temperature":
|
16866
|
+
"service_water_heating_target_temperature": 140.0,
|
16867
16867
|
"service_water_heating_fraction_sensible": null,
|
16868
16868
|
"service_water_heating_fraction_latent": null,
|
16869
16869
|
"service_water_heating_schedule": "NECB-H-Service Water Heating",
|
@@ -16939,7 +16939,7 @@
|
|
16939
16939
|
"service_water_heating_peak_flow_rate": null,
|
16940
16940
|
"service_water_heating_area": null,
|
16941
16941
|
"service_water_heating_peak_flow_per_area": 0.000095,
|
16942
|
-
"service_water_heating_target_temperature":
|
16942
|
+
"service_water_heating_target_temperature": 140.0,
|
16943
16943
|
"service_water_heating_fraction_sensible": null,
|
16944
16944
|
"service_water_heating_fraction_latent": null,
|
16945
16945
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -17015,7 +17015,7 @@
|
|
17015
17015
|
"service_water_heating_peak_flow_rate": null,
|
17016
17016
|
"service_water_heating_area": null,
|
17017
17017
|
"service_water_heating_peak_flow_per_area": 0.000095,
|
17018
|
-
"service_water_heating_target_temperature":
|
17018
|
+
"service_water_heating_target_temperature": 140.0,
|
17019
17019
|
"service_water_heating_fraction_sensible": null,
|
17020
17020
|
"service_water_heating_fraction_latent": null,
|
17021
17021
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|
@@ -17091,7 +17091,7 @@
|
|
17091
17091
|
"service_water_heating_peak_flow_rate": null,
|
17092
17092
|
"service_water_heating_area": null,
|
17093
17093
|
"service_water_heating_peak_flow_per_area": 0.001425,
|
17094
|
-
"service_water_heating_target_temperature":
|
17094
|
+
"service_water_heating_target_temperature": 140.0,
|
17095
17095
|
"service_water_heating_fraction_sensible": null,
|
17096
17096
|
"service_water_heating_fraction_latent": null,
|
17097
17097
|
"service_water_heating_schedule": "NECB-A-Service Water Heating",
|