openstudio-standards 0.2.8 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
| @@ -19,8 +19,7 @@ class NECB2011 | |
| 19 19 | 
             
                                                       OpenStudio.convert(prototype_input['main_water_heater_capacity'], 'Btu/hr', 'W').get,
         | 
| 20 20 | 
             
                                                       OpenStudio.convert(prototype_input['main_water_heater_volume'], 'gal', 'm^3').get,
         | 
| 21 21 | 
             
                                                       swh_fueltype,
         | 
| 22 | 
            -
                                                       OpenStudio.convert(prototype_input['main_service_water_parasitic_fuel_consumption_rate'], 'Btu/hr', 'W').get | 
| 23 | 
            -
                                                       building_type)
         | 
| 22 | 
            +
                                                       OpenStudio.convert(prototype_input['main_service_water_parasitic_fuel_consumption_rate'], 'Btu/hr', 'W').get)
         | 
| 24 23 | 
             
                  end
         | 
| 25 24 |  | 
| 26 25 | 
             
                  # Attach the end uses if specified in prototype inputs
         | 
| @@ -37,8 +36,7 @@ class NECB2011 | |
| 37 36 | 
             
                                           OpenStudio.convert(prototype_input['main_service_water_peak_flowrate'], 'gal/min', 'm^3/s').get,
         | 
| 38 37 | 
             
                                           prototype_input['main_service_water_flowrate_schedule'],
         | 
| 39 38 | 
             
                                           OpenStudio.convert(prototype_input['main_water_use_temperature'], 'F', 'C').get,
         | 
| 40 | 
            -
                                           nil | 
| 41 | 
            -
                                           building_type)
         | 
| 39 | 
            +
                                           nil)
         | 
| 42 40 |  | 
| 43 41 | 
             
                  else
         | 
| 44 42 |  | 
| @@ -69,11 +67,9 @@ class NECB2011 | |
| 69 67 | 
             
                        # Added this to prevent double counting of zone multipliers.. space multipliers are never used in NECB archtypes.
         | 
| 70 68 | 
             
                        space_multiplier = 1
         | 
| 71 69 |  | 
| 72 | 
            -
                        model_add_swh_end_uses_by_space(model, | 
| 73 | 
            -
                                                        climate_zone,
         | 
| 70 | 
            +
                        model_add_swh_end_uses_by_space(model,
         | 
| 74 71 | 
             
                                                        main_swh_loop,
         | 
| 75 | 
            -
                                                         | 
| 76 | 
            -
                                                        space_name,
         | 
| 72 | 
            +
                                                        space,
         | 
| 77 73 | 
             
                                                        space_multiplier)
         | 
| 78 74 | 
             
                      end
         | 
| 79 75 | 
             
                    end
         | 
| @@ -91,16 +87,14 @@ class NECB2011 | |
| 91 87 | 
             
                                                           prototype_input['booster_water_heater_fuel'],
         | 
| 92 88 | 
             
                                                           OpenStudio.convert(prototype_input['booster_water_temperature'], 'F', 'C').get,
         | 
| 93 89 | 
             
                                                           0,
         | 
| 94 | 
            -
                                                           nil | 
| 95 | 
            -
                                                           building_type)
         | 
| 90 | 
            +
                                                           nil)
         | 
| 96 91 |  | 
| 97 92 | 
             
                  # Attach the end uses
         | 
| 98 93 | 
             
                  model_add_booster_swh_end_uses(model,
         | 
| 99 94 | 
             
                                                 swh_booster_loop,
         | 
| 100 95 | 
             
                                                 OpenStudio.convert(prototype_input['booster_service_water_peak_flowrate'], 'gal/min', 'm^3/s').get,
         | 
| 101 96 | 
             
                                                 prototype_input['booster_service_water_flowrate_schedule'],
         | 
| 102 | 
            -
                                                 OpenStudio.convert(prototype_input['booster_water_use_temperature'], 'F', 'C').get | 
| 103 | 
            -
                                                 building_type)
         | 
| 97 | 
            +
                                                 OpenStudio.convert(prototype_input['booster_water_use_temperature'], 'F', 'C').get)
         | 
| 104 98 |  | 
| 105 99 | 
             
                end
         | 
| 106 100 |  | 
| @@ -117,8 +111,7 @@ class NECB2011 | |
| 117 111 | 
             
                                                        OpenStudio.convert(prototype_input['laundry_water_heater_capacity'], 'Btu/hr', 'W').get,
         | 
| 118 112 | 
             
                                                        OpenStudio.convert(prototype_input['laundry_water_heater_volume'], 'gal', 'm^3').get,
         | 
| 119 113 | 
             
                                                        prototype_input['laundry_water_heater_fuel'],
         | 
| 120 | 
            -
                                                        OpenStudio.convert(prototype_input['laundry_service_water_parasitic_fuel_consumption_rate'], 'Btu/hr', 'W').get | 
| 121 | 
            -
                                                        building_type)
         | 
| 114 | 
            +
                                                        OpenStudio.convert(prototype_input['laundry_service_water_parasitic_fuel_consumption_rate'], 'Btu/hr', 'W').get)
         | 
| 122 115 |  | 
| 123 116 | 
             
                  # Attach the end uses if specified in prototype inputs
         | 
| 124 117 | 
             
                  model_add_swh_end_uses(model,
         | 
| @@ -127,8 +120,7 @@ class NECB2011 | |
| 127 120 | 
             
                                         OpenStudio.convert(prototype_input['laundry_service_water_peak_flowrate'], 'gal/min', 'm^3/s').get,
         | 
| 128 121 | 
             
                                         prototype_input['laundry_service_water_flowrate_schedule'],
         | 
| 129 122 | 
             
                                         OpenStudio.convert(prototype_input['laundry_water_use_temperature'], 'F', 'C').get,
         | 
| 130 | 
            -
                                         nil | 
| 131 | 
            -
                                         building_type)
         | 
| 123 | 
            +
                                         nil)
         | 
| 132 124 |  | 
| 133 125 | 
             
                end
         | 
| 134 126 |  | 
| @@ -70,7 +70,7 @@ | |
| 70 70 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 71 71 | 
             
                      "service_water_heating_area": null,
         | 
| 72 72 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 73 | 
            -
                      "service_water_heating_target_temperature":  | 
| 73 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 74 74 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 75 75 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 76 76 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -149,7 +149,7 @@ | |
| 149 149 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 150 150 | 
             
                      "service_water_heating_area": null,
         | 
| 151 151 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00175973,
         | 
| 152 | 
            -
                      "service_water_heating_target_temperature":  | 
| 152 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 153 153 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 154 154 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 155 155 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -228,7 +228,7 @@ | |
| 228 228 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 229 229 | 
             
                      "service_water_heating_area": null,
         | 
| 230 230 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001877045,
         | 
| 231 | 
            -
                      "service_water_heating_target_temperature":  | 
| 231 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 232 232 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 233 233 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 234 234 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -307,7 +307,7 @@ | |
| 307 307 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 308 308 | 
             
                      "service_water_heating_area": null,
         | 
| 309 309 | 
             
                      "service_water_heating_peak_flow_per_area": 0.005396504,
         | 
| 310 | 
            -
                      "service_water_heating_target_temperature":  | 
| 310 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 311 311 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 312 312 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 313 313 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -386,7 +386,7 @@ | |
| 386 386 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 387 387 | 
             
                      "service_water_heating_area": null,
         | 
| 388 388 | 
             
                      "service_water_heating_peak_flow_per_area": 0.005396504,
         | 
| 389 | 
            -
                      "service_water_heating_target_temperature":  | 
| 389 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 390 390 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 391 391 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 392 392 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -465,7 +465,7 @@ | |
| 465 465 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 466 466 | 
             
                      "service_water_heating_area": null,
         | 
| 467 467 | 
             
                      "service_water_heating_peak_flow_per_area": 0.005396504,
         | 
| 468 | 
            -
                      "service_water_heating_target_temperature":  | 
| 468 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 469 469 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 470 470 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 471 471 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -544,7 +544,7 @@ | |
| 544 544 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 545 545 | 
             
                      "service_water_heating_area": null,
         | 
| 546 546 | 
             
                      "service_water_heating_peak_flow_per_area": 0.007821021,
         | 
| 547 | 
            -
                      "service_water_heating_target_temperature":  | 
| 547 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 548 548 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 549 549 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 550 550 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -623,7 +623,7 @@ | |
| 623 623 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 624 624 | 
             
                      "service_water_heating_area": null,
         | 
| 625 625 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004223351,
         | 
| 626 | 
            -
                      "service_water_heating_target_temperature":  | 
| 626 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 627 627 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 628 628 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 629 629 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -702,7 +702,7 @@ | |
| 702 702 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 703 703 | 
             
                      "service_water_heating_area": null,
         | 
| 704 704 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00750818,
         | 
| 705 | 
            -
                      "service_water_heating_target_temperature":  | 
| 705 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 706 706 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 707 707 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 708 708 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -781,7 +781,7 @@ | |
| 781 781 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 782 782 | 
             
                      "service_water_heating_area": null,
         | 
| 783 783 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004223351,
         | 
| 784 | 
            -
                      "service_water_heating_target_temperature":  | 
| 784 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 785 785 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 786 786 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 787 787 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -860,7 +860,7 @@ | |
| 860 860 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 861 861 | 
             
                      "service_water_heating_area": null,
         | 
| 862 862 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 863 | 
            -
                      "service_water_heating_target_temperature":  | 
| 863 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 864 864 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 865 865 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 866 866 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -939,7 +939,7 @@ | |
| 939 939 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 940 940 | 
             
                      "service_water_heating_area": null,
         | 
| 941 941 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 942 | 
            -
                      "service_water_heating_target_temperature":  | 
| 942 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 943 943 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 944 944 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 945 945 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -1018,7 +1018,7 @@ | |
| 1018 1018 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1019 1019 | 
             
                      "service_water_heating_area": null,
         | 
| 1020 1020 | 
             
                      "service_water_heating_peak_flow_per_area": 0.009385225,
         | 
| 1021 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1021 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1022 1022 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1023 1023 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1024 1024 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -1097,7 +1097,7 @@ | |
| 1097 1097 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1098 1098 | 
             
                      "service_water_heating_area": null,
         | 
| 1099 1099 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 1100 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1100 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1101 1101 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1102 1102 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1103 1103 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -1176,7 +1176,7 @@ | |
| 1176 1176 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1177 1177 | 
             
                      "service_water_heating_area": null,
         | 
| 1178 1178 | 
             
                      "service_water_heating_peak_flow_per_area": 0.009385225,
         | 
| 1179 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1179 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1180 1180 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1181 1181 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1182 1182 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -1255,7 +1255,7 @@ | |
| 1255 1255 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1256 1256 | 
             
                      "service_water_heating_area": null,
         | 
| 1257 1257 | 
             
                      "service_water_heating_peak_flow_per_area": 0.009385225,
         | 
| 1258 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1258 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1259 1259 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1260 1260 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1261 1261 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -1334,7 +1334,7 @@ | |
| 1334 1334 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1335 1335 | 
             
                      "service_water_heating_area": null,
         | 
| 1336 1336 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 1337 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1337 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1338 1338 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1339 1339 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1340 1340 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -1413,7 +1413,7 @@ | |
| 1413 1413 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1414 1414 | 
             
                      "service_water_heating_area": null,
         | 
| 1415 1415 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00175973,
         | 
| 1416 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1416 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1417 1417 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1418 1418 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1419 1419 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -1492,7 +1492,7 @@ | |
| 1492 1492 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1493 1493 | 
             
                      "service_water_heating_area": null,
         | 
| 1494 1494 | 
             
                      "service_water_heating_peak_flow_per_area": 0.009385225,
         | 
| 1495 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1495 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1496 1496 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1497 1497 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1498 1498 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -1571,7 +1571,7 @@ | |
| 1571 1571 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1572 1572 | 
             
                      "service_water_heating_area": null,
         | 
| 1573 1573 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 1574 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1574 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1575 1575 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1576 1576 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1577 1577 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -1650,7 +1650,7 @@ | |
| 1650 1650 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1651 1651 | 
             
                      "service_water_heating_area": null,
         | 
| 1652 1652 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00168934,
         | 
| 1653 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1653 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1654 1654 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1655 1655 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1656 1656 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -1729,7 +1729,7 @@ | |
| 1729 1729 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1730 1730 | 
             
                      "service_water_heating_area": null,
         | 
| 1731 1731 | 
             
                      "service_water_heating_peak_flow_per_area": 0.006256817,
         | 
| 1732 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1732 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1733 1733 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1734 1734 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1735 1735 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -1808,7 +1808,7 @@ | |
| 1808 1808 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1809 1809 | 
             
                      "service_water_heating_area": null,
         | 
| 1810 1810 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00175973,
         | 
| 1811 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1811 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1812 1812 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1813 1813 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1814 1814 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -1887,7 +1887,7 @@ | |
| 1887 1887 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1888 1888 | 
             
                      "service_water_heating_area": null,
         | 
| 1889 1889 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00168934,
         | 
| 1890 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1890 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1891 1891 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1892 1892 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1893 1893 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -1966,7 +1966,7 @@ | |
| 1966 1966 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 1967 1967 | 
             
                      "service_water_heating_area": null,
         | 
| 1968 1968 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00168934,
         | 
| 1969 | 
            -
                      "service_water_heating_target_temperature":  | 
| 1969 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 1970 1970 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 1971 1971 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 1972 1972 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -2045,7 +2045,7 @@ | |
| 2045 2045 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2046 2046 | 
             
                      "service_water_heating_area": null,
         | 
| 2047 2047 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 2048 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2048 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2049 2049 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2050 2050 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2051 2051 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -2124,7 +2124,7 @@ | |
| 2124 2124 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2125 2125 | 
             
                      "service_water_heating_area": null,
         | 
| 2126 2126 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000625682,
         | 
| 2127 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2127 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2128 2128 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2129 2129 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2130 2130 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -2203,7 +2203,7 @@ | |
| 2203 2203 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2204 2204 | 
             
                      "service_water_heating_area": null,
         | 
| 2205 2205 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003519459,
         | 
| 2206 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2206 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2207 2207 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2208 2208 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2209 2209 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -2282,7 +2282,7 @@ | |
| 2282 2282 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2283 2283 | 
             
                      "service_water_heating_area": null,
         | 
| 2284 2284 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004223351,
         | 
| 2285 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2285 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2286 2286 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2287 2287 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2288 2288 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -2361,7 +2361,7 @@ | |
| 2361 2361 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2362 2362 | 
             
                      "service_water_heating_area": null,
         | 
| 2363 2363 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 2364 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2364 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2365 2365 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2366 2366 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2367 2367 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -2440,7 +2440,7 @@ | |
| 2440 2440 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2441 2441 | 
             
                      "service_water_heating_area": null,
         | 
| 2442 2442 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00168934,
         | 
| 2443 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2443 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2444 2444 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2445 2445 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2446 2446 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -2519,7 +2519,7 @@ | |
| 2519 2519 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2520 2520 | 
             
                      "service_water_heating_area": null,
         | 
| 2521 2521 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002033465,
         | 
| 2522 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2522 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2523 2523 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2524 2524 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2525 2525 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -2598,7 +2598,7 @@ | |
| 2598 2598 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2599 2599 | 
             
                      "service_water_heating_area": null,
         | 
| 2600 2600 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0000938522,
         | 
| 2601 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2601 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2602 2602 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2603 2603 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2604 2604 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -2677,7 +2677,7 @@ | |
| 2677 2677 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2678 2678 | 
             
                      "service_water_heating_area": null,
         | 
| 2679 2679 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 2680 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2680 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2681 2681 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2682 2682 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2683 2683 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -2756,7 +2756,7 @@ | |
| 2756 2756 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2757 2757 | 
             
                      "service_water_heating_area": null,
         | 
| 2758 2758 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 2759 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2759 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2760 2760 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2761 2761 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2762 2762 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -2835,7 +2835,7 @@ | |
| 2835 2835 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2836 2836 | 
             
                      "service_water_heating_area": null,
         | 
| 2837 2837 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 2838 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2838 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2839 2839 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2840 2840 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2841 2841 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -2914,7 +2914,7 @@ | |
| 2914 2914 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2915 2915 | 
             
                      "service_water_heating_area": null,
         | 
| 2916 2916 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 2917 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2917 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2918 2918 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2919 2919 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2920 2920 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -2993,7 +2993,7 @@ | |
| 2993 2993 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 2994 2994 | 
             
                      "service_water_heating_area": null,
         | 
| 2995 2995 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 2996 | 
            -
                      "service_water_heating_target_temperature":  | 
| 2996 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 2997 2997 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 2998 2998 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 2999 2999 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -3072,7 +3072,7 @@ | |
| 3072 3072 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3073 3073 | 
             
                      "service_water_heating_area": null,
         | 
| 3074 3074 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3075 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3075 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3076 3076 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3077 3077 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3078 3078 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -3151,7 +3151,7 @@ | |
| 3151 3151 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3152 3152 | 
             
                      "service_water_heating_area": null,
         | 
| 3153 3153 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3154 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3154 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3155 3155 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3156 3156 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3157 3157 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -3230,7 +3230,7 @@ | |
| 3230 3230 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3231 3231 | 
             
                      "service_water_heating_area": null,
         | 
| 3232 3232 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3233 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3233 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3234 3234 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3235 3235 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3236 3236 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -3309,7 +3309,7 @@ | |
| 3309 3309 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3310 3310 | 
             
                      "service_water_heating_area": null,
         | 
| 3311 3311 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3312 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3312 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3313 3313 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3314 3314 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3315 3315 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -3388,7 +3388,7 @@ | |
| 3388 3388 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3389 3389 | 
             
                      "service_water_heating_area": null,
         | 
| 3390 3390 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3391 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3391 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3392 3392 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3393 3393 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3394 3394 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -3467,7 +3467,7 @@ | |
| 3467 3467 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3468 3468 | 
             
                      "service_water_heating_area": null,
         | 
| 3469 3469 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3470 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3470 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3471 3471 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3472 3472 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3473 3473 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -3546,7 +3546,7 @@ | |
| 3546 3546 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3547 3547 | 
             
                      "service_water_heating_area": null,
         | 
| 3548 3548 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3549 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3549 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3550 3550 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3551 3551 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3552 3552 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -3625,7 +3625,7 @@ | |
| 3625 3625 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3626 3626 | 
             
                      "service_water_heating_area": null,
         | 
| 3627 3627 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3628 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3628 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3629 3629 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3630 3630 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3631 3631 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -3704,7 +3704,7 @@ | |
| 3704 3704 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3705 3705 | 
             
                      "service_water_heating_area": null,
         | 
| 3706 3706 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3707 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3707 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3708 3708 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3709 3709 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3710 3710 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -3783,7 +3783,7 @@ | |
| 3783 3783 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3784 3784 | 
             
                      "service_water_heating_area": null,
         | 
| 3785 3785 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3786 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3786 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3787 3787 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3788 3788 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3789 3789 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -3862,7 +3862,7 @@ | |
| 3862 3862 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3863 3863 | 
             
                      "service_water_heating_area": null,
         | 
| 3864 3864 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3865 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3865 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3866 3866 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3867 3867 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3868 3868 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -3941,7 +3941,7 @@ | |
| 3941 3941 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 3942 3942 | 
             
                      "service_water_heating_area": null,
         | 
| 3943 3943 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 3944 | 
            -
                      "service_water_heating_target_temperature":  | 
| 3944 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 3945 3945 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 3946 3946 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 3947 3947 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -4020,7 +4020,7 @@ | |
| 4020 4020 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4021 4021 | 
             
                      "service_water_heating_area": null,
         | 
| 4022 4022 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4023 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4023 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4024 4024 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4025 4025 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4026 4026 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -4099,7 +4099,7 @@ | |
| 4099 4099 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4100 4100 | 
             
                      "service_water_heating_area": null,
         | 
| 4101 4101 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4102 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4102 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4103 4103 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4104 4104 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4105 4105 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -4178,7 +4178,7 @@ | |
| 4178 4178 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4179 4179 | 
             
                      "service_water_heating_area": null,
         | 
| 4180 4180 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4181 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4181 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4182 4182 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4183 4183 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4184 4184 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -4257,7 +4257,7 @@ | |
| 4257 4257 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4258 4258 | 
             
                      "service_water_heating_area": null,
         | 
| 4259 4259 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4260 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4260 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4261 4261 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4262 4262 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4263 4263 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -4336,7 +4336,7 @@ | |
| 4336 4336 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4337 4337 | 
             
                      "service_water_heating_area": null,
         | 
| 4338 4338 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4339 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4339 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4340 4340 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4341 4341 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4342 4342 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -4415,7 +4415,7 @@ | |
| 4415 4415 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4416 4416 | 
             
                      "service_water_heating_area": null,
         | 
| 4417 4417 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4418 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4418 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4419 4419 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4420 4420 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4421 4421 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -4494,7 +4494,7 @@ | |
| 4494 4494 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4495 4495 | 
             
                      "service_water_heating_area": null,
         | 
| 4496 4496 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4497 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4497 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4498 4498 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4499 4499 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4500 4500 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -4573,7 +4573,7 @@ | |
| 4573 4573 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4574 4574 | 
             
                      "service_water_heating_area": null,
         | 
| 4575 4575 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4576 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4576 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4577 4577 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4578 4578 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4579 4579 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -4652,7 +4652,7 @@ | |
| 4652 4652 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4653 4653 | 
             
                      "service_water_heating_area": null,
         | 
| 4654 4654 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4655 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4655 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4656 4656 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4657 4657 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4658 4658 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -4731,7 +4731,7 @@ | |
| 4731 4731 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4732 4732 | 
             
                      "service_water_heating_area": null,
         | 
| 4733 4733 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4734 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4734 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4735 4735 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4736 4736 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4737 4737 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -4810,7 +4810,7 @@ | |
| 4810 4810 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4811 4811 | 
             
                      "service_water_heating_area": null,
         | 
| 4812 4812 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4813 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4813 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4814 4814 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4815 4815 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4816 4816 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -4889,7 +4889,7 @@ | |
| 4889 4889 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4890 4890 | 
             
                      "service_water_heating_area": null,
         | 
| 4891 4891 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4892 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4892 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4893 4893 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4894 4894 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4895 4895 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -4968,7 +4968,7 @@ | |
| 4968 4968 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 4969 4969 | 
             
                      "service_water_heating_area": null,
         | 
| 4970 4970 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 4971 | 
            -
                      "service_water_heating_target_temperature":  | 
| 4971 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 4972 4972 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 4973 4973 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 4974 4974 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -5047,7 +5047,7 @@ | |
| 5047 5047 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5048 5048 | 
             
                      "service_water_heating_area": null,
         | 
| 5049 5049 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 5050 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5050 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5051 5051 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5052 5052 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5053 5053 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -5126,7 +5126,7 @@ | |
| 5126 5126 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5127 5127 | 
             
                      "service_water_heating_area": null,
         | 
| 5128 5128 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 5129 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5129 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5130 5130 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5131 5131 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5132 5132 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -5205,7 +5205,7 @@ | |
| 5205 5205 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5206 5206 | 
             
                      "service_water_heating_area": null,
         | 
| 5207 5207 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 5208 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5208 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5209 5209 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5210 5210 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5211 5211 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -5284,7 +5284,7 @@ | |
| 5284 5284 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5285 5285 | 
             
                      "service_water_heating_area": null,
         | 
| 5286 5286 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 5287 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5287 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5288 5288 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5289 5289 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5290 5290 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -5363,7 +5363,7 @@ | |
| 5363 5363 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5364 5364 | 
             
                      "service_water_heating_area": null,
         | 
| 5365 5365 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 5366 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5366 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5367 5367 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5368 5368 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5369 5369 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -5442,7 +5442,7 @@ | |
| 5442 5442 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5443 5443 | 
             
                      "service_water_heating_area": null,
         | 
| 5444 5444 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 5445 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5445 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5446 5446 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5447 5447 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5448 5448 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -5521,7 +5521,7 @@ | |
| 5521 5521 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5522 5522 | 
             
                      "service_water_heating_area": null,
         | 
| 5523 5523 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 5524 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5524 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5525 5525 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5526 5526 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5527 5527 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -5600,7 +5600,7 @@ | |
| 5600 5600 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5601 5601 | 
             
                      "service_water_heating_area": null,
         | 
| 5602 5602 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 5603 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5603 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5604 5604 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5605 5605 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5606 5606 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -5679,7 +5679,7 @@ | |
| 5679 5679 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5680 5680 | 
             
                      "service_water_heating_area": null,
         | 
| 5681 5681 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 5682 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5682 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5683 5683 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5684 5684 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5685 5685 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -5758,7 +5758,7 @@ | |
| 5758 5758 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5759 5759 | 
             
                      "service_water_heating_area": null,
         | 
| 5760 5760 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 5761 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5761 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5762 5762 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5763 5763 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5764 5764 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -5837,7 +5837,7 @@ | |
| 5837 5837 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5838 5838 | 
             
                      "service_water_heating_area": null,
         | 
| 5839 5839 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 5840 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5840 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5841 5841 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5842 5842 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5843 5843 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -5916,7 +5916,7 @@ | |
| 5916 5916 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 5917 5917 | 
             
                      "service_water_heating_area": null,
         | 
| 5918 5918 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 5919 | 
            -
                      "service_water_heating_target_temperature":  | 
| 5919 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 5920 5920 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 5921 5921 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 5922 5922 | 
             
                      "service_water_heating_schedule": "NECB-B-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.001407784,
         | 
| 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-A-Service Water Heating",
         | 
| @@ -6074,7 +6074,7 @@ | |
| 6074 6074 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6075 6075 | 
             
                      "service_water_heating_area": null,
         | 
| 6076 6076 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6077 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6077 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6078 6078 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6079 6079 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6080 6080 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -6153,7 +6153,7 @@ | |
| 6153 6153 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6154 6154 | 
             
                      "service_water_heating_area": null,
         | 
| 6155 6155 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6156 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6156 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6157 6157 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6158 6158 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6159 6159 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -6232,7 +6232,7 @@ | |
| 6232 6232 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6233 6233 | 
             
                      "service_water_heating_area": null,
         | 
| 6234 6234 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6235 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6235 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6236 6236 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6237 6237 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6238 6238 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -6311,7 +6311,7 @@ | |
| 6311 6311 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6312 6312 | 
             
                      "service_water_heating_area": null,
         | 
| 6313 6313 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6314 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6314 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6315 6315 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6316 6316 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6317 6317 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -6390,7 +6390,7 @@ | |
| 6390 6390 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6391 6391 | 
             
                      "service_water_heating_area": null,
         | 
| 6392 6392 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6393 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6393 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6394 6394 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6395 6395 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6396 6396 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -6469,7 +6469,7 @@ | |
| 6469 6469 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6470 6470 | 
             
                      "service_water_heating_area": null,
         | 
| 6471 6471 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6472 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6472 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6473 6473 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6474 6474 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6475 6475 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -6548,7 +6548,7 @@ | |
| 6548 6548 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6549 6549 | 
             
                      "service_water_heating_area": null,
         | 
| 6550 6550 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6551 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6551 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6552 6552 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6553 6553 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6554 6554 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -6627,7 +6627,7 @@ | |
| 6627 6627 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6628 6628 | 
             
                      "service_water_heating_area": null,
         | 
| 6629 6629 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6630 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6630 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6631 6631 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6632 6632 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6633 6633 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -6706,7 +6706,7 @@ | |
| 6706 6706 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6707 6707 | 
             
                      "service_water_heating_area": null,
         | 
| 6708 6708 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6709 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6709 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6710 6710 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6711 6711 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6712 6712 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -6785,7 +6785,7 @@ | |
| 6785 6785 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6786 6786 | 
             
                      "service_water_heating_area": null,
         | 
| 6787 6787 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 6788 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6788 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6789 6789 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6790 6790 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6791 6791 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -6864,7 +6864,7 @@ | |
| 6864 6864 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6865 6865 | 
             
                      "service_water_heating_area": null,
         | 
| 6866 6866 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001126227,
         | 
| 6867 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6867 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6868 6868 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6869 6869 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6870 6870 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -6943,7 +6943,7 @@ | |
| 6943 6943 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 6944 6944 | 
             
                      "service_water_heating_area": null,
         | 
| 6945 6945 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004066931,
         | 
| 6946 | 
            -
                      "service_water_heating_target_temperature":  | 
| 6946 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 6947 6947 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 6948 6948 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 6949 6949 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -7022,7 +7022,7 @@ | |
| 7022 7022 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7023 7023 | 
             
                      "service_water_heating_area": null,
         | 
| 7024 7024 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004066931,
         | 
| 7025 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7025 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7026 7026 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7027 7027 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7028 7028 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -7101,7 +7101,7 @@ | |
| 7101 7101 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7102 7102 | 
             
                      "service_water_heating_area": null,
         | 
| 7103 7103 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7104 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7104 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7105 7105 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7106 7106 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7107 7107 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -7180,7 +7180,7 @@ | |
| 7180 7180 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7181 7181 | 
             
                      "service_water_heating_area": null,
         | 
| 7182 7182 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7183 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7183 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7184 7184 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7185 7185 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7186 7186 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -7259,7 +7259,7 @@ | |
| 7259 7259 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7260 7260 | 
             
                      "service_water_heating_area": null,
         | 
| 7261 7261 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7262 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7262 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7263 7263 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7264 7264 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7265 7265 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -7338,7 +7338,7 @@ | |
| 7338 7338 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7339 7339 | 
             
                      "service_water_heating_area": null,
         | 
| 7340 7340 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7341 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7341 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7342 7342 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7343 7343 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7344 7344 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -7417,7 +7417,7 @@ | |
| 7417 7417 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7418 7418 | 
             
                      "service_water_heating_area": null,
         | 
| 7419 7419 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7420 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7420 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7421 7421 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7422 7422 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7423 7423 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -7496,7 +7496,7 @@ | |
| 7496 7496 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7497 7497 | 
             
                      "service_water_heating_area": null,
         | 
| 7498 7498 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7499 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7499 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7500 7500 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7501 7501 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7502 7502 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -7575,7 +7575,7 @@ | |
| 7575 7575 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7576 7576 | 
             
                      "service_water_heating_area": null,
         | 
| 7577 7577 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7578 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7578 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7579 7579 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7580 7580 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7581 7581 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -7654,7 +7654,7 @@ | |
| 7654 7654 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7655 7655 | 
             
                      "service_water_heating_area": null,
         | 
| 7656 7656 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7657 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7657 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7658 7658 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7659 7659 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7660 7660 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -7733,7 +7733,7 @@ | |
| 7733 7733 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7734 7734 | 
             
                      "service_water_heating_area": null,
         | 
| 7735 7735 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7736 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7736 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7737 7737 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7738 7738 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7739 7739 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -7812,7 +7812,7 @@ | |
| 7812 7812 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7813 7813 | 
             
                      "service_water_heating_area": null,
         | 
| 7814 7814 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7815 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7815 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7816 7816 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7817 7817 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7818 7818 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -7891,7 +7891,7 @@ | |
| 7891 7891 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7892 7892 | 
             
                      "service_water_heating_area": null,
         | 
| 7893 7893 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 7894 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7894 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7895 7895 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7896 7896 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7897 7897 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -7970,7 +7970,7 @@ | |
| 7970 7970 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 7971 7971 | 
             
                      "service_water_heating_area": null,
         | 
| 7972 7972 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004223351,
         | 
| 7973 | 
            -
                      "service_water_heating_target_temperature":  | 
| 7973 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 7974 7974 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 7975 7975 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 7976 7976 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -8049,7 +8049,7 @@ | |
| 8049 8049 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8050 8050 | 
             
                      "service_water_heating_area": null,
         | 
| 8051 8051 | 
             
                      "service_water_heating_peak_flow_per_area": 0.006100396,
         | 
| 8052 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8052 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8053 8053 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8054 8054 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8055 8055 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -8128,7 +8128,7 @@ | |
| 8128 8128 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8129 8129 | 
             
                      "service_water_heating_area": null,
         | 
| 8130 8130 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000422335,
         | 
| 8131 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8131 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8132 8132 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8133 8133 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8134 8134 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -8207,7 +8207,7 @@ | |
| 8207 8207 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8208 8208 | 
             
                      "service_water_heating_area": null,
         | 
| 8209 8209 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 8210 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8210 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8211 8211 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8212 8212 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8213 8213 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -8286,7 +8286,7 @@ | |
| 8286 8286 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8287 8287 | 
             
                      "service_water_heating_area": null,
         | 
| 8288 8288 | 
             
                      "service_water_heating_peak_flow_per_area": 0,
         | 
| 8289 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8289 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8290 8290 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8291 8291 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8292 8292 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -8365,7 +8365,7 @@ | |
| 8365 8365 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8366 8366 | 
             
                      "service_water_heating_area": null,
         | 
| 8367 8367 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 8368 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8368 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8369 8369 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8370 8370 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8371 8371 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -8444,7 +8444,7 @@ | |
| 8444 8444 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8445 8445 | 
             
                      "service_water_heating_area": null,
         | 
| 8446 8446 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 8447 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8447 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8448 8448 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8449 8449 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8450 8450 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -8523,7 +8523,7 @@ | |
| 8523 8523 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8524 8524 | 
             
                      "service_water_heating_area": null,
         | 
| 8525 8525 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 8526 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8526 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8527 8527 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8528 8528 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8529 8529 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -8602,7 +8602,7 @@ | |
| 8602 8602 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8603 8603 | 
             
                      "service_water_heating_area": null,
         | 
| 8604 8604 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 8605 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8605 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8606 8606 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8607 8607 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8608 8608 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -8681,7 +8681,7 @@ | |
| 8681 8681 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8682 8682 | 
             
                      "service_water_heating_area": null,
         | 
| 8683 8683 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 8684 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8684 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8685 8685 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8686 8686 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8687 8687 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -8760,7 +8760,7 @@ | |
| 8760 8760 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8761 8761 | 
             
                      "service_water_heating_area": null,
         | 
| 8762 8762 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 8763 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8763 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8764 8764 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8765 8765 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8766 8766 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -8839,7 +8839,7 @@ | |
| 8839 8839 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8840 8840 | 
             
                      "service_water_heating_area": null,
         | 
| 8841 8841 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 8842 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8842 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8843 8843 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8844 8844 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8845 8845 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -8918,7 +8918,7 @@ | |
| 8918 8918 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8919 8919 | 
             
                      "service_water_heating_area": null,
         | 
| 8920 8920 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 8921 | 
            -
                      "service_water_heating_target_temperature":  | 
| 8921 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 8922 8922 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 8923 8923 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 8924 8924 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -8997,7 +8997,7 @@ | |
| 8997 8997 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 8998 8998 | 
             
                      "service_water_heating_area": null,
         | 
| 8999 8999 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9000 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9000 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9001 9001 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9002 9002 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9003 9003 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -9076,7 +9076,7 @@ | |
| 9076 9076 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9077 9077 | 
             
                      "service_water_heating_area": null,
         | 
| 9078 9078 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9079 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9079 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9080 9080 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9081 9081 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9082 9082 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -9155,7 +9155,7 @@ | |
| 9155 9155 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9156 9156 | 
             
                      "service_water_heating_area": null,
         | 
| 9157 9157 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9158 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9158 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9159 9159 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9160 9160 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9161 9161 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -9234,7 +9234,7 @@ | |
| 9234 9234 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9235 9235 | 
             
                      "service_water_heating_area": null,
         | 
| 9236 9236 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9237 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9237 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9238 9238 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9239 9239 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9240 9240 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -9313,7 +9313,7 @@ | |
| 9313 9313 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9314 9314 | 
             
                      "service_water_heating_area": null,
         | 
| 9315 9315 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9316 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9316 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9317 9317 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9318 9318 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9319 9319 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -9392,7 +9392,7 @@ | |
| 9392 9392 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9393 9393 | 
             
                      "service_water_heating_area": null,
         | 
| 9394 9394 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9395 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9395 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9396 9396 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9397 9397 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9398 9398 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -9471,7 +9471,7 @@ | |
| 9471 9471 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9472 9472 | 
             
                      "service_water_heating_area": null,
         | 
| 9473 9473 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9474 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9474 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9475 9475 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9476 9476 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9477 9477 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -9550,7 +9550,7 @@ | |
| 9550 9550 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9551 9551 | 
             
                      "service_water_heating_area": null,
         | 
| 9552 9552 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9553 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9553 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9554 9554 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9555 9555 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9556 9556 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -9629,7 +9629,7 @@ | |
| 9629 9629 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9630 9630 | 
             
                      "service_water_heating_area": null,
         | 
| 9631 9631 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9632 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9632 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9633 9633 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9634 9634 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9635 9635 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -9708,7 +9708,7 @@ | |
| 9708 9708 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9709 9709 | 
             
                      "service_water_heating_area": null,
         | 
| 9710 9710 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9711 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9711 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9712 9712 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9713 9713 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9714 9714 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -9787,7 +9787,7 @@ | |
| 9787 9787 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9788 9788 | 
             
                      "service_water_heating_area": null,
         | 
| 9789 9789 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9790 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9790 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9791 9791 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9792 9792 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9793 9793 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -9866,7 +9866,7 @@ | |
| 9866 9866 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9867 9867 | 
             
                      "service_water_heating_area": null,
         | 
| 9868 9868 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9869 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9869 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9870 9870 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9871 9871 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9872 9872 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -9945,7 +9945,7 @@ | |
| 9945 9945 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 9946 9946 | 
             
                      "service_water_heating_area": null,
         | 
| 9947 9947 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 9948 | 
            -
                      "service_water_heating_target_temperature":  | 
| 9948 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 9949 9949 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 9950 9950 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 9951 9951 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -10024,7 +10024,7 @@ | |
| 10024 10024 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10025 10025 | 
             
                      "service_water_heating_area": null,
         | 
| 10026 10026 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10027 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10027 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10028 10028 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10029 10029 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10030 10030 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -10103,7 +10103,7 @@ | |
| 10103 10103 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10104 10104 | 
             
                      "service_water_heating_area": null,
         | 
| 10105 10105 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10106 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10106 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10107 10107 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10108 10108 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10109 10109 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -10182,7 +10182,7 @@ | |
| 10182 10182 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10183 10183 | 
             
                      "service_water_heating_area": null,
         | 
| 10184 10184 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10185 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10185 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10186 10186 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10187 10187 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10188 10188 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -10261,7 +10261,7 @@ | |
| 10261 10261 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10262 10262 | 
             
                      "service_water_heating_area": null,
         | 
| 10263 10263 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10264 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10264 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10265 10265 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10266 10266 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10267 10267 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -10340,7 +10340,7 @@ | |
| 10340 10340 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10341 10341 | 
             
                      "service_water_heating_area": null,
         | 
| 10342 10342 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10343 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10343 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10344 10344 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10345 10345 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10346 10346 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -10419,7 +10419,7 @@ | |
| 10419 10419 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10420 10420 | 
             
                      "service_water_heating_area": null,
         | 
| 10421 10421 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10422 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10422 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10423 10423 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10424 10424 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10425 10425 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -10498,7 +10498,7 @@ | |
| 10498 10498 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10499 10499 | 
             
                      "service_water_heating_area": null,
         | 
| 10500 10500 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10501 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10501 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10502 10502 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10503 10503 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10504 10504 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -10577,7 +10577,7 @@ | |
| 10577 10577 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10578 10578 | 
             
                      "service_water_heating_area": null,
         | 
| 10579 10579 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10580 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10580 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10581 10581 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10582 10582 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10583 10583 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -10656,7 +10656,7 @@ | |
| 10656 10656 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10657 10657 | 
             
                      "service_water_heating_area": null,
         | 
| 10658 10658 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10659 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10659 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10660 10660 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10661 10661 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10662 10662 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -10735,7 +10735,7 @@ | |
| 10735 10735 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10736 10736 | 
             
                      "service_water_heating_area": null,
         | 
| 10737 10737 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10738 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10738 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10739 10739 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10740 10740 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10741 10741 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -10814,7 +10814,7 @@ | |
| 10814 10814 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10815 10815 | 
             
                      "service_water_heating_area": null,
         | 
| 10816 10816 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10817 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10817 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10818 10818 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10819 10819 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10820 10820 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -10893,7 +10893,7 @@ | |
| 10893 10893 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10894 10894 | 
             
                      "service_water_heating_area": null,
         | 
| 10895 10895 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10896 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10896 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10897 10897 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10898 10898 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10899 10899 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -10972,7 +10972,7 @@ | |
| 10972 10972 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 10973 10973 | 
             
                      "service_water_heating_area": null,
         | 
| 10974 10974 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 10975 | 
            -
                      "service_water_heating_target_temperature":  | 
| 10975 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 10976 10976 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 10977 10977 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 10978 10978 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -11051,7 +11051,7 @@ | |
| 11051 11051 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11052 11052 | 
             
                      "service_water_heating_area": null,
         | 
| 11053 11053 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 11054 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11054 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11055 11055 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11056 11056 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11057 11057 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -11130,7 +11130,7 @@ | |
| 11130 11130 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11131 11131 | 
             
                      "service_water_heating_area": null,
         | 
| 11132 11132 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 11133 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11133 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11134 11134 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11135 11135 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11136 11136 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -11209,7 +11209,7 @@ | |
| 11209 11209 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11210 11210 | 
             
                      "service_water_heating_area": null,
         | 
| 11211 11211 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 11212 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11212 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11213 11213 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11214 11214 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11215 11215 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -11288,7 +11288,7 @@ | |
| 11288 11288 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11289 11289 | 
             
                      "service_water_heating_area": null,
         | 
| 11290 11290 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 11291 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11291 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11292 11292 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11293 11293 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11294 11294 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -11367,7 +11367,7 @@ | |
| 11367 11367 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11368 11368 | 
             
                      "service_water_heating_area": null,
         | 
| 11369 11369 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 11370 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11370 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11371 11371 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11372 11372 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11373 11373 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -11446,7 +11446,7 @@ | |
| 11446 11446 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11447 11447 | 
             
                      "service_water_heating_area": null,
         | 
| 11448 11448 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 11449 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11449 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11450 11450 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11451 11451 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11452 11452 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -11525,7 +11525,7 @@ | |
| 11525 11525 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11526 11526 | 
             
                      "service_water_heating_area": null,
         | 
| 11527 11527 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 11528 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11528 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11529 11529 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11530 11530 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11531 11531 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -11604,7 +11604,7 @@ | |
| 11604 11604 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11605 11605 | 
             
                      "service_water_heating_area": null,
         | 
| 11606 11606 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 11607 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11607 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11608 11608 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11609 11609 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11610 11610 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -11683,7 +11683,7 @@ | |
| 11683 11683 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11684 11684 | 
             
                      "service_water_heating_area": null,
         | 
| 11685 11685 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 11686 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11686 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11687 11687 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11688 11688 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11689 11689 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -11762,7 +11762,7 @@ | |
| 11762 11762 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11763 11763 | 
             
                      "service_water_heating_area": null,
         | 
| 11764 11764 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004223351,
         | 
| 11765 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11765 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11766 11766 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11767 11767 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11768 11768 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -11841,7 +11841,7 @@ | |
| 11841 11841 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11842 11842 | 
             
                      "service_water_heating_area": null,
         | 
| 11843 11843 | 
             
                      "service_water_heating_peak_flow_per_area": 0.005631135,
         | 
| 11844 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11844 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11845 11845 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11846 11846 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11847 11847 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -11920,7 +11920,7 @@ | |
| 11920 11920 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 11921 11921 | 
             
                      "service_water_heating_area": null,
         | 
| 11922 11922 | 
             
                      "service_water_heating_peak_flow_per_area": 0.005631135,
         | 
| 11923 | 
            -
                      "service_water_heating_target_temperature":  | 
| 11923 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 11924 11924 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 11925 11925 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 11926 11926 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -11999,7 +11999,7 @@ | |
| 11999 11999 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12000 12000 | 
             
                      "service_water_heating_area": null,
         | 
| 12001 12001 | 
             
                      "service_water_heating_peak_flow_per_area": 0.005631135,
         | 
| 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-B-Service Water Heating",
         | 
| @@ -12078,7 +12078,7 @@ | |
| 12078 12078 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12079 12079 | 
             
                      "service_water_heating_area": null,
         | 
| 12080 12080 | 
             
                      "service_water_heating_peak_flow_per_area": 0.005631135,
         | 
| 12081 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12081 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12082 12082 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12083 12083 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12084 12084 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -12157,7 +12157,7 @@ | |
| 12157 12157 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12158 12158 | 
             
                      "service_water_heating_area": null,
         | 
| 12159 12159 | 
             
                      "service_water_heating_peak_flow_per_area": 0.005631135,
         | 
| 12160 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12160 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12161 12161 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12162 12162 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12163 12163 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -12236,7 +12236,7 @@ | |
| 12236 12236 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12237 12237 | 
             
                      "service_water_heating_area": null,
         | 
| 12238 12238 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000625682,
         | 
| 12239 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12239 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12240 12240 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12241 12241 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12242 12242 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -12315,7 +12315,7 @@ | |
| 12315 12315 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12316 12316 | 
             
                      "service_water_heating_area": null,
         | 
| 12317 12317 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 12318 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12318 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12319 12319 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12320 12320 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12321 12321 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -12394,7 +12394,7 @@ | |
| 12394 12394 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12395 12395 | 
             
                      "service_water_heating_area": null,
         | 
| 12396 12396 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 12397 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12397 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12398 12398 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12399 12399 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12400 12400 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -12473,7 +12473,7 @@ | |
| 12473 12473 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12474 12474 | 
             
                      "service_water_heating_area": null,
         | 
| 12475 12475 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 12476 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12476 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12477 12477 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12478 12478 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12479 12479 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -12552,7 +12552,7 @@ | |
| 12552 12552 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12553 12553 | 
             
                      "service_water_heating_area": null,
         | 
| 12554 12554 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 12555 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12555 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12556 12556 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12557 12557 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12558 12558 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -12631,7 +12631,7 @@ | |
| 12631 12631 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12632 12632 | 
             
                      "service_water_heating_area": null,
         | 
| 12633 12633 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 12634 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12634 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12635 12635 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12636 12636 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12637 12637 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -12710,7 +12710,7 @@ | |
| 12710 12710 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12711 12711 | 
             
                      "service_water_heating_area": null,
         | 
| 12712 12712 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 12713 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12713 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12714 12714 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12715 12715 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12716 12716 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -12789,7 +12789,7 @@ | |
| 12789 12789 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12790 12790 | 
             
                      "service_water_heating_area": null,
         | 
| 12791 12791 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 12792 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12792 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12793 12793 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12794 12794 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12795 12795 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -12868,7 +12868,7 @@ | |
| 12868 12868 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12869 12869 | 
             
                      "service_water_heating_area": null,
         | 
| 12870 12870 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 12871 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12871 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12872 12872 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12873 12873 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12874 12874 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -12947,7 +12947,7 @@ | |
| 12947 12947 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 12948 12948 | 
             
                      "service_water_heating_area": null,
         | 
| 12949 12949 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 12950 | 
            -
                      "service_water_heating_target_temperature":  | 
| 12950 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 12951 12951 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 12952 12952 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 12953 12953 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -13026,7 +13026,7 @@ | |
| 13026 13026 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13027 13027 | 
             
                      "service_water_heating_area": null,
         | 
| 13028 13028 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 13029 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13029 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13030 13030 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13031 13031 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13032 13032 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -13105,7 +13105,7 @@ | |
| 13105 13105 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13106 13106 | 
             
                      "service_water_heating_area": null,
         | 
| 13107 13107 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 13108 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13108 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13109 13109 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13110 13110 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13111 13111 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -13184,7 +13184,7 @@ | |
| 13184 13184 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13185 13185 | 
             
                      "service_water_heating_area": null,
         | 
| 13186 13186 | 
             
                      "service_water_heating_peak_flow_per_area": 0.006100396,
         | 
| 13187 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13187 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13188 13188 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13189 13189 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13190 13190 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -13263,7 +13263,7 @@ | |
| 13263 13263 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13264 13264 | 
             
                      "service_water_heating_area": null,
         | 
| 13265 13265 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 13266 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13266 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13267 13267 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13268 13268 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13269 13269 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -13342,7 +13342,7 @@ | |
| 13342 13342 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13343 13343 | 
             
                      "service_water_heating_area": null,
         | 
| 13344 13344 | 
             
                      "service_water_heating_peak_flow_per_area": 0.01126227,
         | 
| 13345 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13345 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13346 13346 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13347 13347 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13348 13348 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -13421,7 +13421,7 @@ | |
| 13421 13421 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13422 13422 | 
             
                      "service_water_heating_area": null,
         | 
| 13423 13423 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004223351,
         | 
| 13424 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13424 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13425 13425 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13426 13426 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13427 13427 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -13500,7 +13500,7 @@ | |
| 13500 13500 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13501 13501 | 
             
                      "service_water_heating_area": null,
         | 
| 13502 13502 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004223351,
         | 
| 13503 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13503 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13504 13504 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13505 13505 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13506 13506 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -13579,7 +13579,7 @@ | |
| 13579 13579 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13580 13580 | 
             
                      "service_water_heating_area": null,
         | 
| 13581 13581 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 13582 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13582 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13583 13583 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13584 13584 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13585 13585 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -13658,7 +13658,7 @@ | |
| 13658 13658 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13659 13659 | 
             
                      "service_water_heating_area": null,
         | 
| 13660 13660 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 13661 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13661 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13662 13662 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13663 13663 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13664 13664 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -13737,7 +13737,7 @@ | |
| 13737 13737 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13738 13738 | 
             
                      "service_water_heating_area": null,
         | 
| 13739 13739 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 13740 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13740 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13741 13741 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13742 13742 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13743 13743 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -13816,7 +13816,7 @@ | |
| 13816 13816 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13817 13817 | 
             
                      "service_water_heating_area": null,
         | 
| 13818 13818 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 13819 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13819 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13820 13820 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13821 13821 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13822 13822 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -13895,7 +13895,7 @@ | |
| 13895 13895 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13896 13896 | 
             
                      "service_water_heating_area": null,
         | 
| 13897 13897 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 13898 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13898 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13899 13899 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13900 13900 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13901 13901 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -13974,7 +13974,7 @@ | |
| 13974 13974 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 13975 13975 | 
             
                      "service_water_heating_area": null,
         | 
| 13976 13976 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 13977 | 
            -
                      "service_water_heating_target_temperature":  | 
| 13977 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 13978 13978 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 13979 13979 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 13980 13980 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -14053,7 +14053,7 @@ | |
| 14053 14053 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14054 14054 | 
             
                      "service_water_heating_area": null,
         | 
| 14055 14055 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 14056 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14056 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14057 14057 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14058 14058 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14059 14059 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -14132,7 +14132,7 @@ | |
| 14132 14132 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14133 14133 | 
             
                      "service_water_heating_area": null,
         | 
| 14134 14134 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14135 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14135 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14136 14136 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14137 14137 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14138 14138 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -14211,7 +14211,7 @@ | |
| 14211 14211 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14212 14212 | 
             
                      "service_water_heating_area": null,
         | 
| 14213 14213 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14214 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14214 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14215 14215 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14216 14216 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14217 14217 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -14290,7 +14290,7 @@ | |
| 14290 14290 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14291 14291 | 
             
                      "service_water_heating_area": null,
         | 
| 14292 14292 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14293 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14293 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14294 14294 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14295 14295 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14296 14296 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -14369,7 +14369,7 @@ | |
| 14369 14369 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14370 14370 | 
             
                      "service_water_heating_area": null,
         | 
| 14371 14371 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14372 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14372 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14373 14373 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14374 14374 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14375 14375 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -14448,7 +14448,7 @@ | |
| 14448 14448 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14449 14449 | 
             
                      "service_water_heating_area": null,
         | 
| 14450 14450 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14451 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14451 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14452 14452 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14453 14453 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14454 14454 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -14527,7 +14527,7 @@ | |
| 14527 14527 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14528 14528 | 
             
                      "service_water_heating_area": null,
         | 
| 14529 14529 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14530 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14530 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14531 14531 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14532 14532 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14533 14533 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -14606,7 +14606,7 @@ | |
| 14606 14606 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14607 14607 | 
             
                      "service_water_heating_area": null,
         | 
| 14608 14608 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14609 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14609 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14610 14610 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14611 14611 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14612 14612 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -14685,7 +14685,7 @@ | |
| 14685 14685 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14686 14686 | 
             
                      "service_water_heating_area": null,
         | 
| 14687 14687 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14688 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14688 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14689 14689 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14690 14690 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14691 14691 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -14764,7 +14764,7 @@ | |
| 14764 14764 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14765 14765 | 
             
                      "service_water_heating_area": null,
         | 
| 14766 14766 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14767 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14767 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14768 14768 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14769 14769 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14770 14770 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -14843,7 +14843,7 @@ | |
| 14843 14843 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14844 14844 | 
             
                      "service_water_heating_area": null,
         | 
| 14845 14845 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14846 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14846 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14847 14847 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14848 14848 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14849 14849 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -14922,7 +14922,7 @@ | |
| 14922 14922 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 14923 14923 | 
             
                      "service_water_heating_area": null,
         | 
| 14924 14924 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 14925 | 
            -
                      "service_water_heating_target_temperature":  | 
| 14925 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 14926 14926 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 14927 14927 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 14928 14928 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -15001,7 +15001,7 @@ | |
| 15001 15001 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15002 15002 | 
             
                      "service_water_heating_area": null,
         | 
| 15003 15003 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 15004 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15004 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15005 15005 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15006 15006 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15007 15007 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -15080,7 +15080,7 @@ | |
| 15080 15080 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15081 15081 | 
             
                      "service_water_heating_area": null,
         | 
| 15082 15082 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 15083 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15083 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15084 15084 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15085 15085 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15086 15086 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -15159,7 +15159,7 @@ | |
| 15159 15159 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15160 15160 | 
             
                      "service_water_heating_area": null,
         | 
| 15161 15161 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002815567,
         | 
| 15162 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15162 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15163 15163 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15164 15164 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15165 15165 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -15238,7 +15238,7 @@ | |
| 15238 15238 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15239 15239 | 
             
                      "service_water_heating_area": null,
         | 
| 15240 15240 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 15241 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15241 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15242 15242 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15243 15243 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15244 15244 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -15317,7 +15317,7 @@ | |
| 15317 15317 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15318 15318 | 
             
                      "service_water_heating_area": null,
         | 
| 15319 15319 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 15320 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15320 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15321 15321 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15322 15322 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15323 15323 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -15396,7 +15396,7 @@ | |
| 15396 15396 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15397 15397 | 
             
                      "service_water_heating_area": null,
         | 
| 15398 15398 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 15399 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15399 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15400 15400 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15401 15401 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15402 15402 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -15475,7 +15475,7 @@ | |
| 15475 15475 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15476 15476 | 
             
                      "service_water_heating_area": null,
         | 
| 15477 15477 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001055838,
         | 
| 15478 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15478 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15479 15479 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15480 15480 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15481 15481 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -15554,7 +15554,7 @@ | |
| 15554 15554 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15555 15555 | 
             
                      "service_water_heating_area": null,
         | 
| 15556 15556 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000625682,
         | 
| 15557 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15557 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15558 15558 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15559 15559 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15560 15560 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -15633,7 +15633,7 @@ | |
| 15633 15633 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15634 15634 | 
             
                      "service_water_heating_area": null,
         | 
| 15635 15635 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 15636 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15636 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15637 15637 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15638 15638 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15639 15639 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -15712,7 +15712,7 @@ | |
| 15712 15712 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15713 15713 | 
             
                      "service_water_heating_area": null,
         | 
| 15714 15714 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 15715 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15715 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15716 15716 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15717 15717 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15718 15718 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -15791,7 +15791,7 @@ | |
| 15791 15791 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15792 15792 | 
             
                      "service_water_heating_area": null,
         | 
| 15793 15793 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 15794 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15794 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15795 15795 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15796 15796 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15797 15797 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -15870,7 +15870,7 @@ | |
| 15870 15870 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15871 15871 | 
             
                      "service_water_heating_area": null,
         | 
| 15872 15872 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 15873 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15873 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15874 15874 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15875 15875 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15876 15876 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -15949,7 +15949,7 @@ | |
| 15949 15949 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 15950 15950 | 
             
                      "service_water_heating_area": null,
         | 
| 15951 15951 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 15952 | 
            -
                      "service_water_heating_target_temperature":  | 
| 15952 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 15953 15953 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 15954 15954 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 15955 15955 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -16028,7 +16028,7 @@ | |
| 16028 16028 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16029 16029 | 
             
                      "service_water_heating_area": null,
         | 
| 16030 16030 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 16031 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16031 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16032 16032 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16033 16033 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16034 16034 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -16107,7 +16107,7 @@ | |
| 16107 16107 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16108 16108 | 
             
                      "service_water_heating_area": null,
         | 
| 16109 16109 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 16110 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16110 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16111 16111 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16112 16112 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16113 16113 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -16186,7 +16186,7 @@ | |
| 16186 16186 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16187 16187 | 
             
                      "service_water_heating_area": null,
         | 
| 16188 16188 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 16189 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16189 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16190 16190 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16191 16191 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16192 16192 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -16265,7 +16265,7 @@ | |
| 16265 16265 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16266 16266 | 
             
                      "service_water_heating_area": null,
         | 
| 16267 16267 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 16268 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16268 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16269 16269 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16270 16270 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16271 16271 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -16344,7 +16344,7 @@ | |
| 16344 16344 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16345 16345 | 
             
                      "service_water_heating_area": null,
         | 
| 16346 16346 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 16347 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16347 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16348 16348 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16349 16349 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16350 16350 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -16423,7 +16423,7 @@ | |
| 16423 16423 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16424 16424 | 
             
                      "service_water_heating_area": null,
         | 
| 16425 16425 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 16426 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16426 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16427 16427 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16428 16428 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16429 16429 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -16502,7 +16502,7 @@ | |
| 16502 16502 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16503 16503 | 
             
                      "service_water_heating_area": null,
         | 
| 16504 16504 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 16505 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16505 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16506 16506 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16507 16507 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16508 16508 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -16581,7 +16581,7 @@ | |
| 16581 16581 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16582 16582 | 
             
                      "service_water_heating_area": null,
         | 
| 16583 16583 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 16584 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16584 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16585 16585 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16586 16586 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16587 16587 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -16660,7 +16660,7 @@ | |
| 16660 16660 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16661 16661 | 
             
                      "service_water_heating_area": null,
         | 
| 16662 16662 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 16663 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16663 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16664 16664 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16665 16665 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16666 16666 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -16739,7 +16739,7 @@ | |
| 16739 16739 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16740 16740 | 
             
                      "service_water_heating_area": null,
         | 
| 16741 16741 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 16742 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16742 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16743 16743 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16744 16744 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16745 16745 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -16818,7 +16818,7 @@ | |
| 16818 16818 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16819 16819 | 
             
                      "service_water_heating_area": null,
         | 
| 16820 16820 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 16821 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16821 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16822 16822 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16823 16823 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16824 16824 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -16897,7 +16897,7 @@ | |
| 16897 16897 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16898 16898 | 
             
                      "service_water_heating_area": null,
         | 
| 16899 16899 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 16900 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16900 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16901 16901 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16902 16902 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16903 16903 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -16976,7 +16976,7 @@ | |
| 16976 16976 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 16977 16977 | 
             
                      "service_water_heating_area": null,
         | 
| 16978 16978 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 16979 | 
            -
                      "service_water_heating_target_temperature":  | 
| 16979 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 16980 16980 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 16981 16981 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 16982 16982 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -17055,7 +17055,7 @@ | |
| 17055 17055 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17056 17056 | 
             
                      "service_water_heating_area": null,
         | 
| 17057 17057 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17058 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17058 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17059 17059 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17060 17060 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17061 17061 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -17134,7 +17134,7 @@ | |
| 17134 17134 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17135 17135 | 
             
                      "service_water_heating_area": null,
         | 
| 17136 17136 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17137 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17137 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17138 17138 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17139 17139 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17140 17140 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -17213,7 +17213,7 @@ | |
| 17213 17213 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17214 17214 | 
             
                      "service_water_heating_area": null,
         | 
| 17215 17215 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17216 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17216 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17217 17217 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17218 17218 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17219 17219 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -17292,7 +17292,7 @@ | |
| 17292 17292 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17293 17293 | 
             
                      "service_water_heating_area": null,
         | 
| 17294 17294 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17295 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17295 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17296 17296 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17297 17297 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17298 17298 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -17371,7 +17371,7 @@ | |
| 17371 17371 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17372 17372 | 
             
                      "service_water_heating_area": null,
         | 
| 17373 17373 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17374 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17374 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17375 17375 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17376 17376 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17377 17377 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -17450,7 +17450,7 @@ | |
| 17450 17450 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17451 17451 | 
             
                      "service_water_heating_area": null,
         | 
| 17452 17452 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17453 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17453 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17454 17454 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17455 17455 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17456 17456 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -17529,7 +17529,7 @@ | |
| 17529 17529 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17530 17530 | 
             
                      "service_water_heating_area": null,
         | 
| 17531 17531 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17532 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17532 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17533 17533 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17534 17534 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17535 17535 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -17608,7 +17608,7 @@ | |
| 17608 17608 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17609 17609 | 
             
                      "service_water_heating_area": null,
         | 
| 17610 17610 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17611 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17611 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17612 17612 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17613 17613 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17614 17614 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -17687,7 +17687,7 @@ | |
| 17687 17687 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17688 17688 | 
             
                      "service_water_heating_area": null,
         | 
| 17689 17689 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17690 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17690 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17691 17691 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17692 17692 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17693 17693 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -17766,7 +17766,7 @@ | |
| 17766 17766 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17767 17767 | 
             
                      "service_water_heating_area": null,
         | 
| 17768 17768 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17769 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17769 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17770 17770 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17771 17771 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17772 17772 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -17845,7 +17845,7 @@ | |
| 17845 17845 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17846 17846 | 
             
                      "service_water_heating_area": null,
         | 
| 17847 17847 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17848 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17848 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17849 17849 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17850 17850 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17851 17851 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -17924,7 +17924,7 @@ | |
| 17924 17924 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 17925 17925 | 
             
                      "service_water_heating_area": null,
         | 
| 17926 17926 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 17927 | 
            -
                      "service_water_heating_target_temperature":  | 
| 17927 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 17928 17928 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 17929 17929 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 17930 17930 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -18003,7 +18003,7 @@ | |
| 18003 18003 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18004 18004 | 
             
                      "service_water_heating_area": null,
         | 
| 18005 18005 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 18006 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18006 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18007 18007 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18008 18008 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18009 18009 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -18082,7 +18082,7 @@ | |
| 18082 18082 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18083 18083 | 
             
                      "service_water_heating_area": null,
         | 
| 18084 18084 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 18085 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18085 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18086 18086 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18087 18087 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18088 18088 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -18161,7 +18161,7 @@ | |
| 18161 18161 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18162 18162 | 
             
                      "service_water_heating_area": null,
         | 
| 18163 18163 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 18164 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18164 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18165 18165 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18166 18166 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18167 18167 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -18240,7 +18240,7 @@ | |
| 18240 18240 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18241 18241 | 
             
                      "service_water_heating_area": null,
         | 
| 18242 18242 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 18243 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18243 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18244 18244 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18245 18245 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18246 18246 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -18319,7 +18319,7 @@ | |
| 18319 18319 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18320 18320 | 
             
                      "service_water_heating_area": null,
         | 
| 18321 18321 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 18322 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18322 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18323 18323 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18324 18324 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18325 18325 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -18398,7 +18398,7 @@ | |
| 18398 18398 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18399 18399 | 
             
                      "service_water_heating_area": null,
         | 
| 18400 18400 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 18401 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18401 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18402 18402 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18403 18403 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18404 18404 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -18477,7 +18477,7 @@ | |
| 18477 18477 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18478 18478 | 
             
                      "service_water_heating_area": null,
         | 
| 18479 18479 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 18480 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18480 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18481 18481 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18482 18482 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18483 18483 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -18556,7 +18556,7 @@ | |
| 18556 18556 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18557 18557 | 
             
                      "service_water_heating_area": null,
         | 
| 18558 18558 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 18559 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18559 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18560 18560 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18561 18561 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18562 18562 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -18635,7 +18635,7 @@ | |
| 18635 18635 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18636 18636 | 
             
                      "service_water_heating_area": null,
         | 
| 18637 18637 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 18638 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18638 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18639 18639 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18640 18640 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18641 18641 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -18714,7 +18714,7 @@ | |
| 18714 18714 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18715 18715 | 
             
                      "service_water_heating_area": null,
         | 
| 18716 18716 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 18717 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18717 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18718 18718 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18719 18719 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18720 18720 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -18793,7 +18793,7 @@ | |
| 18793 18793 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18794 18794 | 
             
                      "service_water_heating_area": null,
         | 
| 18795 18795 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 18796 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18796 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18797 18797 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18798 18798 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18799 18799 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -18872,7 +18872,7 @@ | |
| 18872 18872 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18873 18873 | 
             
                      "service_water_heating_area": null,
         | 
| 18874 18874 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 18875 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18875 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18876 18876 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18877 18877 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18878 18878 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -18951,7 +18951,7 @@ | |
| 18951 18951 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 18952 18952 | 
             
                      "service_water_heating_area": null,
         | 
| 18953 18953 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 18954 | 
            -
                      "service_water_heating_target_temperature":  | 
| 18954 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 18955 18955 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 18956 18956 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 18957 18957 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -19030,7 +19030,7 @@ | |
| 19030 19030 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19031 19031 | 
             
                      "service_water_heating_area": null,
         | 
| 19032 19032 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19033 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19033 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19034 19034 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19035 19035 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19036 19036 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -19109,7 +19109,7 @@ | |
| 19109 19109 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19110 19110 | 
             
                      "service_water_heating_area": null,
         | 
| 19111 19111 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19112 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19112 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19113 19113 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19114 19114 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19115 19115 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -19188,7 +19188,7 @@ | |
| 19188 19188 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19189 19189 | 
             
                      "service_water_heating_area": null,
         | 
| 19190 19190 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19191 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19191 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19192 19192 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19193 19193 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19194 19194 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -19267,7 +19267,7 @@ | |
| 19267 19267 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19268 19268 | 
             
                      "service_water_heating_area": null,
         | 
| 19269 19269 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19270 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19270 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19271 19271 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19272 19272 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19273 19273 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -19346,7 +19346,7 @@ | |
| 19346 19346 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19347 19347 | 
             
                      "service_water_heating_area": null,
         | 
| 19348 19348 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19349 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19349 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19350 19350 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19351 19351 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19352 19352 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -19425,7 +19425,7 @@ | |
| 19425 19425 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19426 19426 | 
             
                      "service_water_heating_area": null,
         | 
| 19427 19427 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19428 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19428 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19429 19429 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19430 19430 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19431 19431 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -19504,7 +19504,7 @@ | |
| 19504 19504 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19505 19505 | 
             
                      "service_water_heating_area": null,
         | 
| 19506 19506 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19507 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19507 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19508 19508 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19509 19509 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19510 19510 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -19583,7 +19583,7 @@ | |
| 19583 19583 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19584 19584 | 
             
                      "service_water_heating_area": null,
         | 
| 19585 19585 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19586 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19586 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19587 19587 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19588 19588 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19589 19589 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -19662,7 +19662,7 @@ | |
| 19662 19662 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19663 19663 | 
             
                      "service_water_heating_area": null,
         | 
| 19664 19664 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19665 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19665 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19666 19666 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19667 19667 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19668 19668 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -19741,7 +19741,7 @@ | |
| 19741 19741 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19742 19742 | 
             
                      "service_water_heating_area": null,
         | 
| 19743 19743 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19744 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19744 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19745 19745 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19746 19746 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19747 19747 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -19820,7 +19820,7 @@ | |
| 19820 19820 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19821 19821 | 
             
                      "service_water_heating_area": null,
         | 
| 19822 19822 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19823 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19823 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19824 19824 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19825 19825 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19826 19826 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -19899,7 +19899,7 @@ | |
| 19899 19899 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19900 19900 | 
             
                      "service_water_heating_area": null,
         | 
| 19901 19901 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19902 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19902 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19903 19903 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19904 19904 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19905 19905 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -19978,7 +19978,7 @@ | |
| 19978 19978 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 19979 19979 | 
             
                      "service_water_heating_area": null,
         | 
| 19980 19980 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 19981 | 
            -
                      "service_water_heating_target_temperature":  | 
| 19981 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 19982 19982 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 19983 19983 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 19984 19984 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -20057,7 +20057,7 @@ | |
| 20057 20057 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20058 20058 | 
             
                      "service_water_heating_area": null,
         | 
| 20059 20059 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 20060 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20060 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20061 20061 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20062 20062 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20063 20063 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -20136,7 +20136,7 @@ | |
| 20136 20136 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20137 20137 | 
             
                      "service_water_heating_area": null,
         | 
| 20138 20138 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20139 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20139 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20140 20140 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20141 20141 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20142 20142 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -20215,7 +20215,7 @@ | |
| 20215 20215 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20216 20216 | 
             
                      "service_water_heating_area": null,
         | 
| 20217 20217 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20218 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20218 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20219 20219 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20220 20220 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20221 20221 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -20294,7 +20294,7 @@ | |
| 20294 20294 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20295 20295 | 
             
                      "service_water_heating_area": null,
         | 
| 20296 20296 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20297 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20297 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20298 20298 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20299 20299 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20300 20300 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -20373,7 +20373,7 @@ | |
| 20373 20373 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20374 20374 | 
             
                      "service_water_heating_area": null,
         | 
| 20375 20375 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20376 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20376 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20377 20377 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20378 20378 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20379 20379 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -20452,7 +20452,7 @@ | |
| 20452 20452 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20453 20453 | 
             
                      "service_water_heating_area": null,
         | 
| 20454 20454 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20455 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20455 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20456 20456 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20457 20457 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20458 20458 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -20531,7 +20531,7 @@ | |
| 20531 20531 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20532 20532 | 
             
                      "service_water_heating_area": null,
         | 
| 20533 20533 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20534 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20534 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20535 20535 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20536 20536 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20537 20537 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -20610,7 +20610,7 @@ | |
| 20610 20610 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20611 20611 | 
             
                      "service_water_heating_area": null,
         | 
| 20612 20612 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20613 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20613 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20614 20614 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20615 20615 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20616 20616 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -20689,7 +20689,7 @@ | |
| 20689 20689 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20690 20690 | 
             
                      "service_water_heating_area": null,
         | 
| 20691 20691 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20692 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20692 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20693 20693 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20694 20694 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20695 20695 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -20768,7 +20768,7 @@ | |
| 20768 20768 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20769 20769 | 
             
                      "service_water_heating_area": null,
         | 
| 20770 20770 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20771 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20771 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20772 20772 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20773 20773 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20774 20774 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -20847,7 +20847,7 @@ | |
| 20847 20847 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20848 20848 | 
             
                      "service_water_heating_area": null,
         | 
| 20849 20849 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20850 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20850 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20851 20851 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20852 20852 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20853 20853 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -20926,7 +20926,7 @@ | |
| 20926 20926 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 20927 20927 | 
             
                      "service_water_heating_area": null,
         | 
| 20928 20928 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 20929 | 
            -
                      "service_water_heating_target_temperature":  | 
| 20929 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 20930 20930 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 20931 20931 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 20932 20932 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -21005,7 +21005,7 @@ | |
| 21005 21005 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21006 21006 | 
             
                      "service_water_heating_area": null,
         | 
| 21007 21007 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21008 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21008 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21009 21009 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21010 21010 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21011 21011 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -21084,7 +21084,7 @@ | |
| 21084 21084 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21085 21085 | 
             
                      "service_water_heating_area": null,
         | 
| 21086 21086 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21087 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21087 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21088 21088 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21089 21089 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21090 21090 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -21163,7 +21163,7 @@ | |
| 21163 21163 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21164 21164 | 
             
                      "service_water_heating_area": null,
         | 
| 21165 21165 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21166 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21166 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21167 21167 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21168 21168 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21169 21169 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -21242,7 +21242,7 @@ | |
| 21242 21242 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21243 21243 | 
             
                      "service_water_heating_area": null,
         | 
| 21244 21244 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21245 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21245 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21246 21246 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21247 21247 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21248 21248 | 
             
                      "service_water_heating_schedule": "NECB-D-Service Water Heating",
         | 
| @@ -21321,7 +21321,7 @@ | |
| 21321 21321 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21322 21322 | 
             
                      "service_water_heating_area": null,
         | 
| 21323 21323 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21324 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21324 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21325 21325 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21326 21326 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21327 21327 | 
             
                      "service_water_heating_schedule": "NECB-E-Service Water Heating",
         | 
| @@ -21400,7 +21400,7 @@ | |
| 21400 21400 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21401 21401 | 
             
                      "service_water_heating_area": null,
         | 
| 21402 21402 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21403 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21403 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21404 21404 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21405 21405 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21406 21406 | 
             
                      "service_water_heating_schedule": "NECB-F-Service Water Heating",
         | 
| @@ -21479,7 +21479,7 @@ | |
| 21479 21479 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21480 21480 | 
             
                      "service_water_heating_area": null,
         | 
| 21481 21481 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21482 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21482 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21483 21483 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21484 21484 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21485 21485 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -21558,7 +21558,7 @@ | |
| 21558 21558 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21559 21559 | 
             
                      "service_water_heating_area": null,
         | 
| 21560 21560 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21561 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21561 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21562 21562 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21563 21563 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21564 21564 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -21637,7 +21637,7 @@ | |
| 21637 21637 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21638 21638 | 
             
                      "service_water_heating_area": null,
         | 
| 21639 21639 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21640 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21640 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21641 21641 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21642 21642 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21643 21643 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -21716,7 +21716,7 @@ | |
| 21716 21716 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21717 21717 | 
             
                      "service_water_heating_area": null,
         | 
| 21718 21718 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21719 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21719 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21720 21720 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21721 21721 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21722 21722 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -21795,7 +21795,7 @@ | |
| 21795 21795 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21796 21796 | 
             
                      "service_water_heating_area": null,
         | 
| 21797 21797 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 21798 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21798 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21799 21799 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21800 21800 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21801 21801 | 
             
                      "service_water_heating_schedule": "NECB-K-Service Water Heating",
         | 
| @@ -21874,7 +21874,7 @@ | |
| 21874 21874 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21875 21875 | 
             
                      "service_water_heating_area": null,
         | 
| 21876 21876 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 21877 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21877 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21878 21878 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21879 21879 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21880 21880 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -21953,7 +21953,7 @@ | |
| 21953 21953 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 21954 21954 | 
             
                      "service_water_heating_area": null,
         | 
| 21955 21955 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 21956 | 
            -
                      "service_water_heating_target_temperature":  | 
| 21956 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 21957 21957 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 21958 21958 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 21959 21959 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -22032,7 +22032,7 @@ | |
| 22032 22032 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22033 22033 | 
             
                      "service_water_heating_area": null,
         | 
| 22034 22034 | 
             
                      "service_water_heating_peak_flow_per_area": 0.009385225,
         | 
| 22035 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22035 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22036 22036 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22037 22037 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22038 22038 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -22111,7 +22111,7 @@ | |
| 22111 22111 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22112 22112 | 
             
                      "service_water_heating_area": null,
         | 
| 22113 22113 | 
             
                      "service_water_heating_peak_flow_per_area": 0.009385225,
         | 
| 22114 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22114 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22115 22115 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22116 22116 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22117 22117 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -22190,7 +22190,7 @@ | |
| 22190 22190 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22191 22191 | 
             
                      "service_water_heating_area": null,
         | 
| 22192 22192 | 
             
                      "service_water_heating_peak_flow_per_area": 0.009385225,
         | 
| 22193 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22193 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22194 22194 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22195 22195 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22196 22196 | 
             
                      "service_water_heating_schedule": "NECB-J-Service Water Heating",
         | 
| @@ -22269,7 +22269,7 @@ | |
| 22269 22269 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22270 22270 | 
             
                      "service_water_heating_area": null,
         | 
| 22271 22271 | 
             
                      "service_water_heating_peak_flow_per_area": 0.009385225,
         | 
| 22272 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22272 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22273 22273 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22274 22274 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22275 22275 | 
             
                      "service_water_heating_schedule": "NECB-G-Service Water Heating",
         | 
| @@ -22348,7 +22348,7 @@ | |
| 22348 22348 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22349 22349 | 
             
                      "service_water_heating_area": null,
         | 
| 22350 22350 | 
             
                      "service_water_heating_peak_flow_per_area": 0.008446702,
         | 
| 22351 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22351 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22352 22352 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22353 22353 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22354 22354 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -22427,7 +22427,7 @@ | |
| 22427 22427 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22428 22428 | 
             
                      "service_water_heating_area": null,
         | 
| 22429 22429 | 
             
                      "service_water_heating_peak_flow_per_area": 0.008446702,
         | 
| 22430 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22430 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22431 22431 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22432 22432 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22433 22433 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -22506,7 +22506,7 @@ | |
| 22506 22506 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22507 22507 | 
             
                      "service_water_heating_area": null,
         | 
| 22508 22508 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 22509 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22509 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22510 22510 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22511 22511 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22512 22512 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -22585,7 +22585,7 @@ | |
| 22585 22585 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22586 22586 | 
             
                      "service_water_heating_area": null,
         | 
| 22587 22587 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 22588 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22588 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22589 22589 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22590 22590 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22591 22591 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -22664,7 +22664,7 @@ | |
| 22664 22664 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22665 22665 | 
             
                      "service_water_heating_area": null,
         | 
| 22666 22666 | 
             
                      "service_water_heating_peak_flow_per_area": 0.0,
         | 
| 22667 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22667 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22668 22668 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22669 22669 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22670 22670 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -22743,7 +22743,7 @@ | |
| 22743 22743 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22744 22744 | 
             
                      "service_water_heating_area": null,
         | 
| 22745 22745 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 22746 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22746 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22747 22747 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22748 22748 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22749 22749 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -22822,7 +22822,7 @@ | |
| 22822 22822 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22823 22823 | 
             
                      "service_water_heating_area": null,
         | 
| 22824 22824 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001055838,
         | 
| 22825 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22825 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22826 22826 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22827 22827 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22828 22828 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -22901,7 +22901,7 @@ | |
| 22901 22901 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22902 22902 | 
             
                      "service_water_heating_area": null,
         | 
| 22903 22903 | 
             
                      "service_water_heating_peak_flow_per_area": 0.007038919,
         | 
| 22904 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22904 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22905 22905 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22906 22906 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22907 22907 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -22980,7 +22980,7 @@ | |
| 22980 22980 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 22981 22981 | 
             
                      "service_water_heating_area": null,
         | 
| 22982 22982 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 22983 | 
            -
                      "service_water_heating_target_temperature":  | 
| 22983 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 22984 22984 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 22985 22985 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 22986 22986 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -23059,7 +23059,7 @@ | |
| 23059 23059 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23060 23060 | 
             
                      "service_water_heating_area": null,
         | 
| 23061 23061 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001055838,
         | 
| 23062 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23062 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23063 23063 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23064 23064 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23065 23065 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -23138,7 +23138,7 @@ | |
| 23138 23138 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23139 23139 | 
             
                      "service_water_heating_area": null,
         | 
| 23140 23140 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004223351,
         | 
| 23141 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23141 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23142 23142 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23143 23143 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23144 23144 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -23217,7 +23217,7 @@ | |
| 23217 23217 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23218 23218 | 
             
                      "service_water_heating_area": null,
         | 
| 23219 23219 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 23220 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23220 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23221 23221 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23222 23222 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23223 23223 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -23296,7 +23296,7 @@ | |
| 23296 23296 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23297 23297 | 
             
                      "service_water_heating_area": null,
         | 
| 23298 23298 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 23299 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23299 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23300 23300 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23301 23301 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23302 23302 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -23375,7 +23375,7 @@ | |
| 23375 23375 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23376 23376 | 
             
                      "service_water_heating_area": null,
         | 
| 23377 23377 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 23378 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23378 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23379 23379 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23380 23380 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23381 23381 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -23454,7 +23454,7 @@ | |
| 23454 23454 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23455 23455 | 
             
                      "service_water_heating_area": null,
         | 
| 23456 23456 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 23457 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23457 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23458 23458 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23459 23459 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23460 23460 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -23533,7 +23533,7 @@ | |
| 23533 23533 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23534 23534 | 
             
                      "service_water_heating_area": null,
         | 
| 23535 23535 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 23536 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23536 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23537 23537 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23538 23538 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23539 23539 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -23612,7 +23612,7 @@ | |
| 23612 23612 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23613 23613 | 
             
                      "service_water_heating_area": null,
         | 
| 23614 23614 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 23615 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23615 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23616 23616 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23617 23617 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23618 23618 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -23691,7 +23691,7 @@ | |
| 23691 23691 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23692 23692 | 
             
                      "service_water_heating_area": null,
         | 
| 23693 23693 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 23694 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23694 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23695 23695 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23696 23696 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23697 23697 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -23770,7 +23770,7 @@ | |
| 23770 23770 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23771 23771 | 
             
                      "service_water_heating_area": null,
         | 
| 23772 23772 | 
             
                      "service_water_heating_peak_flow_per_area": 0.005631135,
         | 
| 23773 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23773 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23774 23774 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23775 23775 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23776 23776 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -23849,7 +23849,7 @@ | |
| 23849 23849 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23850 23850 | 
             
                      "service_water_heating_area": null,
         | 
| 23851 23851 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001173153,
         | 
| 23852 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23852 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23853 23853 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23854 23854 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23855 23855 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -23928,7 +23928,7 @@ | |
| 23928 23928 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 23929 23929 | 
             
                      "service_water_heating_area": null,
         | 
| 23930 23930 | 
             
                      "service_water_heating_peak_flow_per_area": 0.002111676,
         | 
| 23931 | 
            -
                      "service_water_heating_target_temperature":  | 
| 23931 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 23932 23932 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 23933 23933 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 23934 23934 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -24007,7 +24007,7 @@ | |
| 24007 24007 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24008 24008 | 
             
                      "service_water_heating_area": null,
         | 
| 24009 24009 | 
             
                      "service_water_heating_peak_flow_per_area": 0.004223351,
         | 
| 24010 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24010 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24011 24011 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24012 24012 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24013 24013 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -24086,7 +24086,7 @@ | |
| 24086 24086 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24087 24087 | 
             
                      "service_water_heating_area": null,
         | 
| 24088 24088 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 24089 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24089 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24090 24090 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24091 24091 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24092 24092 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -24165,7 +24165,7 @@ | |
| 24165 24165 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24166 24166 | 
             
                      "service_water_heating_area": null,
         | 
| 24167 24167 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000625682,
         | 
| 24168 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24168 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24169 24169 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24170 24170 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24171 24171 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -24244,7 +24244,7 @@ | |
| 24244 24244 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24245 24245 | 
             
                      "service_water_heating_area": null,
         | 
| 24246 24246 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000703892,
         | 
| 24247 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24247 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24248 24248 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24249 24249 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24250 24250 | 
             
                      "service_water_heating_schedule": "NECB-C-Service Water Heating",
         | 
| @@ -24323,7 +24323,7 @@ | |
| 24323 24323 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24324 24324 | 
             
                      "service_water_heating_area": null,
         | 
| 24325 24325 | 
             
                      "service_water_heating_peak_flow_per_area": 0.000703892,
         | 
| 24326 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24326 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24327 24327 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24328 24328 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24329 24329 | 
             
                      "service_water_heating_schedule": "NECB-I-Service Water Heating",
         | 
| @@ -24402,7 +24402,7 @@ | |
| 24402 24402 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24403 24403 | 
             
                      "service_water_heating_area": null,
         | 
| 24404 24404 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001407784,
         | 
| 24405 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24405 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24406 24406 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24407 24407 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24408 24408 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -24481,7 +24481,7 @@ | |
| 24481 24481 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24482 24482 | 
             
                      "service_water_heating_area": null,
         | 
| 24483 24483 | 
             
                      "service_water_heating_peak_flow_per_area": 0.008446702,
         | 
| 24484 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24484 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24485 24485 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24486 24486 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24487 24487 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -24560,7 +24560,7 @@ | |
| 24560 24560 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24561 24561 | 
             
                      "service_water_heating_area": null,
         | 
| 24562 24562 | 
             
                      "service_water_heating_peak_flow_per_area": 0.008446702,
         | 
| 24563 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24563 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24564 24564 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24565 24565 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24566 24566 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -24639,7 +24639,7 @@ | |
| 24639 24639 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24640 24640 | 
             
                      "service_water_heating_area": null,
         | 
| 24641 24641 | 
             
                      "service_water_heating_peak_flow_per_area": 0.008446702,
         | 
| 24642 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24642 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24643 24643 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24644 24644 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24645 24645 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -24718,7 +24718,7 @@ | |
| 24718 24718 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24719 24719 | 
             
                      "service_water_heating_area": null,
         | 
| 24720 24720 | 
             
                      "service_water_heating_peak_flow_per_area": 0.008446702,
         | 
| 24721 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24721 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24722 24722 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24723 24723 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24724 24724 | 
             
                      "service_water_heating_schedule": "NECB-B-Service Water Heating",
         | 
| @@ -24797,7 +24797,7 @@ | |
| 24797 24797 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24798 24798 | 
             
                      "service_water_heating_area": null,
         | 
| 24799 24799 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001525099,
         | 
| 24800 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24800 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24801 24801 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24802 24802 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24803 24803 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -24876,7 +24876,7 @@ | |
| 24876 24876 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24877 24877 | 
             
                      "service_water_heating_area": null,
         | 
| 24878 24878 | 
             
                      "service_water_heating_peak_flow_per_area": 0.001525099,
         | 
| 24879 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24879 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24880 24880 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24881 24881 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24882 24882 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -24955,7 +24955,7 @@ | |
| 24955 24955 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 24956 24956 | 
             
                      "service_water_heating_area": null,
         | 
| 24957 24957 | 
             
                      "service_water_heating_peak_flow_per_area": 0.003050198,
         | 
| 24958 | 
            -
                      "service_water_heating_target_temperature":  | 
| 24958 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 24959 24959 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 24960 24960 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 24961 24961 | 
             
                      "service_water_heating_schedule": "NECB-H-Service Water Heating",
         | 
| @@ -25034,7 +25034,7 @@ | |
| 25034 25034 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 25035 25035 | 
             
                      "service_water_heating_area": null,
         | 
| 25036 25036 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00030502,
         | 
| 25037 | 
            -
                      "service_water_heating_target_temperature":  | 
| 25037 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 25038 25038 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 25039 25039 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 25040 25040 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         | 
| @@ -25113,7 +25113,7 @@ | |
| 25113 25113 | 
             
                      "service_water_heating_peak_flow_rate": null,
         | 
| 25114 25114 | 
             
                      "service_water_heating_area": null,
         | 
| 25115 25115 | 
             
                      "service_water_heating_peak_flow_per_area": 0.00061004,
         | 
| 25116 | 
            -
                      "service_water_heating_target_temperature":  | 
| 25116 | 
            +
                      "service_water_heating_target_temperature": 140.0,
         | 
| 25117 25117 | 
             
                      "service_water_heating_fraction_sensible": null,
         | 
| 25118 25118 | 
             
                      "service_water_heating_fraction_latent": null,
         | 
| 25119 25119 | 
             
                      "service_water_heating_schedule": "NECB-A-Service Water Heating",
         |