diff --git a/.gitignore b/.gitignore index e23b0042..a456a415 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,4 @@ **/hub/logs/ **/__pycache__/ **/.idea/ - +cerc_hub.egg-info diff --git a/cerc_hub.egg-info/.gitignore b/cerc_hub.egg-info/.gitignore deleted file mode 100644 index e0a497ab..00000000 --- a/cerc_hub.egg-info/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Except this file -* -!.gitignore \ No newline at end of file diff --git a/hub/catalog_factories/usage/nrcan_catalog.py b/hub/catalog_factories/usage/nrcan_catalog.py index a1822f84..b990bf19 100644 --- a/hub/catalog_factories/usage/nrcan_catalog.py +++ b/hub/catalog_factories/usage/nrcan_catalog.py @@ -8,6 +8,8 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord import json import urllib.request +from pathlib import Path + import xmltodict import hub.helpers.constants as cte @@ -28,12 +30,11 @@ class NrcanCatalog(Catalog): Nrcan catalog class """ def __init__(self, path): - path = str(path / 'nrcan.xml') + self._schedules_path = Path(path / 'nrcan_schedules.json').resolve() + self._space_types_path = Path(path / 'nrcan_space_types.json').resolve() + self._space_compliance_path = Path(path / 'nrcan_space_compliance_2015.json').resolve() self._content = None self._schedules = {} - with open(path, 'r', encoding='utf-8') as xml: - self._metadata = xmltodict.parse(xml.read()) - self._base_url = self._metadata['nrcan']['@base_url'] self._load_schedules() self._content = Content(self._load_archetypes()) @@ -55,11 +56,9 @@ class NrcanCatalog(Catalog): return Schedule(hub_type, raw['values'], data_type, time_step, time_range, day_types) def _load_schedules(self): - usage = self._metadata['nrcan'] - url = f'{self._base_url}{usage["schedules"]}' _schedule_types = [] - with urllib.request.urlopen(url) as json_file: - schedules_type = json.load(json_file) + with open(self._schedules_path, 'r') as f: + schedules_type = json.load(f) for schedule_type in schedules_type['tables']['schedules']['table']: schedule = NrcanCatalog._extract_schedule(schedule_type) if schedule_type['name'] not in _schedule_types: @@ -80,14 +79,11 @@ class NrcanCatalog(Catalog): def _load_archetypes(self): usages = [] - name = self._metadata['nrcan'] - url_1 = f'{self._base_url}{name["space_types"]}' - url_2 = f'{self._base_url}{name["space_types_compliance"]}' - with urllib.request.urlopen(url_1) as json_file: - space_types = json.load(json_file)['tables']['space_types']['table'] + with open(self._space_types_path, 'r') as f: + space_types = json.load(f)['tables']['space_types']['table'] space_types = [st for st in space_types if st['space_type'] == 'WholeBuilding'] - with urllib.request.urlopen(url_2) as json_file: - space_types_compliance = json.load(json_file)['tables']['space_compliance']['table'] + with open(self._space_compliance_path, 'r') as f: + space_types_compliance = json.load(f)['tables']['space_compliance']['table'] space_types_compliance = [st for st in space_types_compliance if st['space_type'] == 'WholeBuilding'] space_types_dictionary = {} for space_type in space_types_compliance: diff --git a/hub/data/usage/nrcan.xml b/hub/data/usage/nrcan.xml deleted file mode 100644 index 9fb644b0..00000000 --- a/hub/data/usage/nrcan.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - NECB2015/data/space_types.json - NECB2015/qaqc/qaqc_data/space_compliance_2015.json> - NECB2015/data/schedules.json - \ No newline at end of file diff --git a/hub/data/usage/nrcan_schedules.json b/hub/data/usage/nrcan_schedules.json new file mode 100644 index 00000000..1d3ba009 --- /dev/null +++ b/hub/data/usage/nrcan_schedules.json @@ -0,0 +1,8685 @@ +{ + "tables": { + "schedules": { + "data_type": "table", + "refs": [ + "NECB 2015 Table A-8.4.3.2.(1)-A" + ], + "table": [ + { + + "name": "NECB-*-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|WntrDsn|SmrDsn", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Constant", + "notes": null, + "values": [ + 0.0 + ] + }, + { + + "name": "NECB-*-FAN", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|WntrDsn|SmrDsn", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Constant", + "notes": null, + "values": [ + 0.0 + ] + }, + { + + "name": "NECB-*-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|WntrDsn|SmrDsn", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Constant", + "notes": null, + "values": [ + 0.0 + ] + }, + { + + "name": "NECB-*-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|WntrDsn|SmrDsn", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Constant", + "notes": null, + "values": [ + 0.0 + ] + }, + { + + "name": "NECB-*-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|WntrDsn|SmrDsn", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Constant", + "notes": null, + "values": [ + 0.0 + ] + }, + { + + "name": "NECB-*-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|WntrDsn|SmrDsn", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Constant", + "notes": null, + "values": [ + 35.0 + ] + }, + { + + "name": "NECB-*-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|WntrDsn|SmrDsn", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Constant", + "notes": null, + "values": [ + 18.0 + ] + }, + { + + "name": "NECB-Activity", + "category": "Activity", + "units": "W", + "day_types": "Default|WntrDsn|SmrDsn", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Constant", + "notes": "From DOE Reference Buildings ", + "values": [ + 130.0 + ] + }, + { + + "name": "Always On", + "category": "Unknown", + "units": null, + "day_types": "Default", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Constant", + "notes": null, + "values": [ + 1.0 + ] + }, + { + + "name": "NECB-A-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.7, + 0.9, + 0.9, + 0.9, + 0.5, + 0.5, + 0.9, + 0.9, + 0.9, + 0.7, + 0.3, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0 + ] + }, + { + + "name": "NECB-A-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-A-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-A-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.3, + 0.8, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.8, + 0.5, + 0.3, + 0.3, + 0.1, + 0.1, + 0.05 + ] + }, + { + + "name": "NECB-A-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-A-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-A-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.3, + 0.8, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.5, + 0.3, + 0.3, + 0.2, + 0.2, + 0.2 + ] + }, + { + + "name": "NECB-A-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + }, + { + + "name": "NECB-A-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + }, + { + + "name": "NECB-A-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-A-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-A-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-A-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-A-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-A-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-A-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-A-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-A-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-A-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.1, + 0.5, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.5, + 0.3, + 0.2, + 0.2, + 0.2, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-A-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-A-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-B-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.3, + 0.1, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.2, + 0.5, + 0.9, + 0.8, + 0.5, + 0.2, + 0.2, + 0.3, + 0.6, + 0.9, + 0.9, + 0.9, + 0.6, + 0.4 + ] + }, + { + + "name": "NECB-B-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.5, + 0.3, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.2, + 0.5, + 0.9, + 0.8, + 0.5, + 0.2, + 0.2, + 0.3, + 0.6, + 0.9, + 0.9, + 0.9, + 0.6, + 0.6 + ] + }, + { + + "name": "NECB-B-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.3, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.4, + 0.5, + 0.5, + 0.4, + 0.2, + 0.2, + 0.2, + 0.5, + 0.7, + 0.7, + 0.5, + 0.3, + 0.1 + ] + }, + { + + "name": "NECB-B-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.5, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5, + 0.7, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-B-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.5, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5, + 0.7, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-B-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.5, + 0.5, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.5 + ] + }, + { + + "name": "NECB-B-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.5, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5, + 0.7, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-B-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.5, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5, + 0.7, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-B-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.5, + 0.5, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.5 + ] + }, + { + + "name": "NECB-B-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-B-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-B-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0 + ] + }, + { + + "name": "NECB-B-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-B-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-B-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 35.0 + ] + }, + { + + "name": "NECB-B-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-B-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-B-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 18.0 + ] + }, + { + + "name": "NECB-B-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.6, + 0.5, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.7, + 0.7, + 0.4, + 0.5, + 0.6, + 0.6, + 0.4, + 0.3, + 0.3, + 0.4, + 0.5, + 0.8, + 0.8, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-B-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.7, + 0.6, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.7, + 0.7, + 0.4, + 0.5, + 0.6, + 0.6, + 0.4, + 0.3, + 0.3, + 0.4, + 0.5, + 0.8, + 0.8, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-B-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.5, + 0.6, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.7, + 0.7, + 0.4, + 0.5, + 0.6, + 0.6, + 0.4, + 0.3, + 0.3, + 0.4, + 0.5, + 0.8, + 0.8, + 0.5, + 0.5 + ] + }, + { + + "name": "NECB-C-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.2, + 0.5, + 0.5, + 0.7, + 0.7, + 0.7, + 0.7, + 0.8, + 0.7, + 0.5, + 0.3, + 0.3, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-C-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.2, + 0.5, + 0.6, + 0.8, + 0.9, + 0.9, + 0.9, + 0.8, + 0.7, + 0.5, + 0.2, + 0.2, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-C-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.2, + 0.5, + 0.6, + 0.8, + 0.9, + 0.9, + 0.9, + 0.8, + 0.7, + 0.5, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-C-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.6, + 0.5, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-C-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.6, + 0.5, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-C-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-C-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.6, + 0.5, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-C-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.6, + 0.5, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-C-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-C-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-C-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-C-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-C-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-C-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-C-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-C-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-C-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-C-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-C-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.1, + 0.2, + 0.3, + 0.4, + 0.8, + 0.8, + 0.8, + 0.8, + 0.6, + 0.4, + 0.3, + 0.2, + 0.2, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-C-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.1, + 0.2, + 0.3, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.5, + 0.3, + 0.2, + 0.2, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-C-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.1, + 0.2, + 0.3, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.5, + 0.3, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-D-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.9, + 0.9, + 0.9, + 0.8, + 0.8, + 0.8, + 0.8, + 0.5, + 0.2, + 0.1, + 0.3, + 0.3, + 0.3, + 0.1, + 0.0 + ] + }, + { + + "name": "NECB-D-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-D-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-D-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.3, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.5, + 0.5, + 0.7, + 0.7, + 0.7, + 0.3, + 0.05 + ] + }, + { + + "name": "NECB-D-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-D-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-D-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.3, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.5, + 0.5, + 0.7, + 0.7, + 0.7, + 0.3, + 0.05 + ] + }, + { + + "name": "NECB-D-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-D-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-D-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0 + ] + }, + { + + "name": "NECB-D-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-D-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-D-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 35.0 + ] + }, + { + + "name": "NECB-D-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-D-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-D-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 18.0 + ] + }, + { + + "name": "NECB-D-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-D-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-D-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.3, + 0.5, + 0.5, + 0.5, + 0.3, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-D-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-D-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-E-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.2, + 0.7, + 0.9, + 0.9, + 0.9, + 0.9, + 0.5, + 0.9, + 0.8, + 0.8, + 0.2, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-E-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.1, + 0.1, + 0.1, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-E-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-E-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.4, + 0.7, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.4, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-E-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.5, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-E-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-E-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.4, + 0.7, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.4, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-E-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.5, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-E-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-E-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-E-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-E-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-E-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-E-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-E-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-E-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-E-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-E-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-E-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.1, + 0.4, + 0.5, + 0.5, + 0.7, + 0.9, + 0.8, + 0.7, + 0.8, + 0.3, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-E-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.2, + 0.2, + 0.4, + 0.2, + 0.2, + 0.2, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-E-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-F-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.63, + 0.63, + 0.63, + 0.63, + 0.63, + 0.63, + 0.63, + 0.49, + 0.28, + 0.28, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.21, + 0.35, + 0.35, + 0.35, + 0.49, + 0.49, + 0.56, + 0.63 + ] + }, + { + + "name": "NECB-F-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.63, + 0.63, + 0.63, + 0.63, + 0.63, + 0.63, + 0.63, + 0.49, + 0.28, + 0.28, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.21, + 0.35, + 0.35, + 0.35, + 0.49, + 0.49, + 0.56, + 0.63 + ] + }, + { + + "name": "NECB-F-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.63, + 0.63, + 0.63, + 0.63, + 0.63, + 0.63, + 0.63, + 0.49, + 0.28, + 0.28, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.21, + 0.35, + 0.35, + 0.35, + 0.49, + 0.49, + 0.56, + 0.63 + ] + }, + { + + "name": "NECB-F-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.21, + 0.14, + 0.14, + 0.07, + 0.07, + 0.07, + 0.14, + 0.28, + 0.35, + 0.28, + 0.28, + 0.21, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.42, + 0.56, + 0.63, + 0.56, + 0.42 + ] + }, + { + + "name": "NECB-F-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.21, + 0.14, + 0.14, + 0.07, + 0.07, + 0.07, + 0.14, + 0.28, + 0.35, + 0.28, + 0.28, + 0.21, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.42, + 0.56, + 0.63, + 0.56, + 0.42 + ] + }, + { + + "name": "NECB-F-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.21, + 0.14, + 0.14, + 0.07, + 0.07, + 0.07, + 0.14, + 0.28, + 0.35, + 0.28, + 0.28, + 0.21, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.42, + 0.56, + 0.63, + 0.56, + 0.42 + ] + }, + { + + "name": "NECB-F-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.21, + 0.14, + 0.14, + 0.07, + 0.07, + 0.07, + 0.14, + 0.28, + 0.35, + 0.28, + 0.28, + 0.21, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.42, + 0.56, + 0.63, + 0.56, + 0.42 + ] + }, + { + + "name": "NECB-F-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.21, + 0.14, + 0.14, + 0.07, + 0.07, + 0.07, + 0.14, + 0.28, + 0.35, + 0.28, + 0.28, + 0.21, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.42, + 0.56, + 0.63, + 0.56, + 0.42 + ] + }, + { + + "name": "NECB-F-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.21, + 0.14, + 0.14, + 0.07, + 0.07, + 0.07, + 0.14, + 0.28, + 0.35, + 0.28, + 0.28, + 0.21, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.14, + 0.42, + 0.56, + 0.63, + 0.56, + 0.42 + ] + }, + { + + "name": "NECB-F-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-F-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-F-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-F-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-F-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-F-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-F-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-F-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-F-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-F-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.35, + 0.21, + 0.14, + 0.07, + 0.07, + 0.14, + 0.28, + 0.42, + 0.63, + 0.49, + 0.35, + 0.35, + 0.28, + 0.35, + 0.28, + 0.21, + 0.21, + 0.21, + 0.21, + 0.35, + 0.49, + 0.49, + 0.49, + 0.49 + ] + }, + { + + "name": "NECB-F-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.35, + 0.21, + 0.14, + 0.07, + 0.07, + 0.14, + 0.28, + 0.42, + 0.63, + 0.49, + 0.35, + 0.35, + 0.28, + 0.35, + 0.28, + 0.21, + 0.21, + 0.21, + 0.21, + 0.35, + 0.49, + 0.49, + 0.49, + 0.49 + ] + }, + { + + "name": "NECB-F-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.35, + 0.21, + 0.14, + 0.07, + 0.07, + 0.14, + 0.28, + 0.42, + 0.63, + 0.49, + 0.35, + 0.35, + 0.28, + 0.35, + 0.28, + 0.21, + 0.21, + 0.21, + 0.21, + 0.35, + 0.49, + 0.49, + 0.49, + 0.49 + ] + }, + { + + "name": "NECB-G-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.4, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-G-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-G-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.7, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-G-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.3, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.2, + 0.5, + 0.5, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.9, + 0.9, + 0.9, + 0.8, + 0.6 + ] + }, + { + + "name": "NECB-G-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.3, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.2, + 0.5, + 0.5, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.9, + 0.9, + 0.9, + 0.8, + 0.6 + ] + }, + { + + "name": "NECB-G-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.3, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.2, + 0.5, + 0.5, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.9, + 0.9, + 0.9, + 0.8, + 0.6 + ] + }, + { + + "name": "NECB-G-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.3, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.8, + 0.8, + 0.4, + 0.4, + 0.4, + 0.4, + 0.4, + 0.4, + 0.4, + 0.5, + 0.2, + 0.9, + 0.9, + 0.7, + 0.5, + 0.5, + 0.5 + ] + }, + { + + "name": "NECB-G-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.3, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.8, + 0.8, + 0.4, + 0.4, + 0.4, + 0.4, + 0.4, + 0.4, + 0.4, + 0.5, + 0.2, + 0.9, + 0.9, + 0.7, + 0.5, + 0.5, + 0.5 + ] + }, + { + + "name": "NECB-G-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.3, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.8, + 0.8, + 0.4, + 0.4, + 0.4, + 0.4, + 0.4, + 0.4, + 0.4, + 0.5, + 0.2, + 0.9, + 0.9, + 0.7, + 0.5, + 0.5, + 0.5 + ] + }, + { + + "name": "NECB-G-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-G-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-G-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-G-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-G-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-G-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-G-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-G-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-G-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-G-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.2, + 0.8, + 0.7, + 0.5, + 0.4, + 0.2, + 0.2, + 0.2, + 0.3, + 0.5, + 0.5, + 0.7, + 0.7, + 0.4, + 0.4, + 0.2, + 0.2, + 0.1 + ] + }, + { + + "name": "NECB-G-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.2, + 0.5, + 0.5, + 0.5, + 0.3, + 0.3, + 0.3, + 0.3, + 0.7, + 0.9, + 0.7, + 0.7, + 0.6, + 0.5, + 0.4, + 0.3, + 0.2 + ] + }, + { + + "name": "NECB-G-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.2, + 0.3, + 0.3, + 0.2, + 0.2, + 0.3, + 0.4, + 0.5, + 0.6, + 0.7, + 0.4, + 0.3, + 0.2, + 0.2, + 0.2, + 0.2 + ] + }, + { + + "name": "NECB-H-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-H-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-H-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-H-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-H-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-H-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-H-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-H-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-H-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-H-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-H-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-I-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.1, + 0.1, + 0.4, + 0.8, + 0.8, + 0.8, + 0.6, + 0.4 + ] + }, + { + + "name": "NECB-I-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.1, + 0.1, + 0.4, + 0.6, + 0.8, + 0.6, + 0.4, + 0.2, + 0.4, + 0.8, + 0.8, + 0.6, + 0.4 + ] + }, + { + + "name": "NECB-I-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.2, + 0.4, + 0.8, + 0.8, + 0.4, + 0.2, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-I-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.5, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.5, + 0.5, + 0.8, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-I-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.5, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.5, + 0.5, + 0.8, + 0.9, + 0.9, + 0.9, + 0.8, + 0.6, + 0.8, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-I-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.5, + 0.9, + 0.9, + 0.9, + 0.9, + 0.5, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-I-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.2, + 0.2, + 0.2, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ] + }, + { + + "name": "NECB-I-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.2, + 0.2, + 0.2, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ] + }, + { + + "name": "NECB-I-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.2, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + }, + { + + "name": "NECB-I-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-I-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-I-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-I-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-I-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-I-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-I-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-I-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-I-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 20.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0, + 18.0 + ] + }, + { + + "name": "NECB-I-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.2, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.2, + 0.2, + 0.2, + 0.4, + 0.9, + 0.9, + 0.9, + 0.8, + 0.6 + ] + }, + { + + "name": "NECB-I-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.2, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.2, + 0.2, + 0.2, + 0.4, + 0.8, + 0.9, + 0.8, + 0.6, + 0.4, + 0.4, + 0.9, + 0.9, + 0.8, + 0.6 + ] + }, + { + + "name": "NECB-I-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.1, + 0.2, + 0.4, + 0.4, + 0.2, + 0.1, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + }, + { + + "name": "NECB-J-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.6, + 0.6, + 0.7, + 0.7, + 0.6, + 0.6, + 0.7, + 0.7, + 0.7, + 0.6, + 0.6, + 0.6, + 0.7, + 0.7, + 0.8, + 0.9 + ] + }, + { + + "name": "NECB-J-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.6, + 0.6, + 0.7, + 0.7, + 0.6, + 0.6, + 0.7, + 0.7, + 0.7, + 0.6, + 0.6, + 0.6, + 0.7, + 0.7, + 0.8, + 0.9 + ] + }, + { + + "name": "NECB-J-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.7, + 0.6, + 0.6, + 0.7, + 0.7, + 0.6, + 0.6, + 0.7, + 0.7, + 0.7, + 0.6, + 0.6, + 0.6, + 0.7, + 0.7, + 0.8, + 0.9 + ] + }, + { + + "name": "NECB-J-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.3, + 0.5, + 0.7, + 0.7, + 0.7, + 0.7, + 0.6, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6, + 0.7, + 0.7, + 0.7, + 0.7, + 0.3 + ] + }, + { + + "name": "NECB-J-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.3, + 0.5, + 0.7, + 0.7, + 0.7, + 0.7, + 0.6, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6, + 0.7, + 0.7, + 0.7, + 0.7, + 0.3 + ] + }, + { + + "name": "NECB-J-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.3, + 0.5, + 0.7, + 0.7, + 0.7, + 0.7, + 0.6, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.6, + 0.7, + 0.7, + 0.7, + 0.7, + 0.3 + ] + }, + { + + "name": "NECB-J-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.2, + 0.3, + 0.4, + 0.6, + 0.6, + 0.5, + 0.5, + 0.4, + 0.4, + 0.5, + 0.5, + 0.4, + 0.4, + 0.5, + 0.6, + 0.7, + 0.7, + 0.5, + 0.3 + ] + }, + { + + "name": "NECB-J-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.2, + 0.3, + 0.4, + 0.6, + 0.6, + 0.5, + 0.5, + 0.4, + 0.4, + 0.5, + 0.5, + 0.4, + 0.4, + 0.5, + 0.6, + 0.7, + 0.7, + 0.5, + 0.3 + ] + }, + { + + "name": "NECB-J-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.2, + 0.3, + 0.4, + 0.6, + 0.6, + 0.5, + 0.5, + 0.4, + 0.4, + 0.5, + 0.5, + 0.4, + 0.4, + 0.5, + 0.6, + 0.7, + 0.7, + 0.5, + 0.3 + ] + }, + { + + "name": "NECB-J-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-J-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-J-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + + "name": "NECB-J-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-J-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-J-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0, + 24.0 + ] + }, + { + + "name": "NECB-J-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-J-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-J-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0, + 22.0 + ] + }, + { + + "name": "NECB-J-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.2, + 0.4, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.6, + 0.3, + 0.1, + 0.1 + ] + }, + { + + "name": "NECB-J-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.5, + 0.3, + 0.2, + 0.1, + 0.1, + 0.2, + 0.4, + 0.5, + 0.8, + 0.6, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.4, + 0.3, + 0.3, + 0.3, + 0.5, + 0.7, + 0.7, + 0.7, + 0.7 + ] + }, + { + + "name": "NECB-J-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.5, + 0.3, + 0.2, + 0.1, + 0.1, + 0.2, + 0.4, + 0.4, + 0.6, + 0.9, + 0.7, + 0.5, + 0.5, + 0.5, + 0.4, + 0.3, + 0.3, + 0.3, + 0.3, + 0.4, + 0.6, + 0.6, + 0.6, + 0.6 + ] + }, + { + + "name": "NECB-K-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.5, + 0.9, + 0.6, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.7, + 0.9, + 0.6, + 0.2, + 0.1, + 0.1, + 0.1, + 0.0 + ] + }, + { + + "name": "NECB-K-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.5, + 0.9, + 0.6, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.7, + 0.9, + 0.6, + 0.2, + 0.1, + 0.1, + 0.1, + 0.0 + ] + }, + { + + "name": "NECB-K-Occupancy", + "category": "Occupancy", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1, + 0.5, + 0.9, + 0.6, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.7, + 0.9, + 0.6, + 0.2, + 0.1, + 0.1, + 0.1, + 0.0 + ] + }, + { + + "name": "NECB-K-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-K-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-K-Lighting", + "category": "Lighting", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9 + ] + }, + { + + "name": "NECB-K-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-K-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-K-Electric-Equipment", + "category": "Equipment", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-K-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-K-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-K-Fan", + "category": "Fan", + "units": "ON_OFF", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-K-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-K-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-K-Thermostat Setpoint-Cooling", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0, + 35.0 + ] + }, + { + + "name": "NECB-K-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0 + ] + }, + { + + "name": "NECB-K-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0 + ] + }, + { + + "name": "NECB-K-Thermostat Setpoint-Heating", + "category": "Thermostat Setpoint", + "units": "TEMPERATURE", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0, + 5.0 + ] + }, + { + + "name": "NECB-K-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Default|Wkdy", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-K-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sat", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + { + + "name": "NECB-K-Service Water Heating", + "category": "Service Water Heating", + "units": "FRACTION", + "day_types": "Sun|Hol", + "start_date": "2014-01-01T00:00:00+00:00", + "end_date": "2014-12-31T00:00:00+00:00", + "type": "Hourly", + "notes": null, + "values": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ] + } + ] + } + } +} \ No newline at end of file diff --git a/hub/data/usage/nrcan_space_compliance_2015.json b/hub/data/usage/nrcan_space_compliance_2015.json new file mode 100644 index 00000000..5e9bea6a --- /dev/null +++ b/hub/data/usage/nrcan_space_compliance_2015.json @@ -0,0 +1,3211 @@ +{ + "tables": { + "space_compliance": { + "data_type": "table", + "refs": { + "lighting_per_area_w_per_m2": "Table 4.2.1.6", + "occupancy_per_area_people_per_m2": "Table A-8.4.3.3.1", + "occupancy_schedule": "Table A-8.4.3.3.1", + "electric_equipment_per_area_w_per_m2": "Table A-8.4.3.3.1" + }, + "tolerance": { + "lighting_per_area_w_per_m2": 1, + "occupancy_per_area_people_per_m2": 3, + "occupancy_schedule": null, + "electric_equipment_per_area_w_per_m2": 1 + }, + "table": [ + { + "template": "NECB2015", + "building_type": "Automotive facility", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 8.60312913012721, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Convention centre", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 10.90396599051007, + "occupancy_per_area_people_per_m2": 0.12504548154254666, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.01894158423301723 + }, + { + "template": "NECB2015", + "building_type": "Courthouse", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 10.90396599051007, + "occupancy_per_area_people_per_m2": 0.0666909234893582, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.020204352927246698 + }, + { + "template": "NECB2015", + "building_type": "Dining - bar lounge/leisure", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 10.90396599051007, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.05808751062936611 + }, + { + "template": "NECB2015", + "building_type": "Dining - cafeteria/fast food", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 9.70352936770162, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.05808751062936611 + }, + { + "template": "NECB2015", + "building_type": "Dining - family", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 10.203711293871807, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.05808751062936611 + }, + { + "template": "NECB2015", + "building_type": "Dormitory", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 6.102219499276277, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.08418480565751374 + }, + { + "template": "NECB2015", + "building_type": "Exercise centre", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 9.003274671063359, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.04545979139532631 + }, + { + "template": "NECB2015", + "building_type": "Fire station", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 7.2026197368506875, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.08081741170898679 + }, + { + "template": "NECB2015", + "building_type": "Gymnasium", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 10.10367490863777, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.04545979139532631 + }, + { + "template": "NECB2015", + "building_type": "Health care clinic", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 9.70352936770162, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Hospital", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 11.304111531446217, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Hotel/Motel", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 9.403420211999508, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.1010217646362335 + }, + { + "template": "NECB2015", + "building_type": "Library", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 12.804657309956777, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Long-term care - dwelling units", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 5.502001187872053, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.5005457785105598, + "service_water_heating_peak_flow_per_area": 0.1010217646362335 + }, + { + "template": "NECB2015", + "building_type": "Long-term care - other", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 5.502001187872053, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.5005457785105598, + "service_water_heating_peak_flow_per_area": 0.1010217646362335 + }, + { + "template": "NECB2015", + "building_type": "Manufacturing facility", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 12.604584539488702, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Motion picture theatre", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 8.20298358919106, + "occupancy_per_area_people_per_m2": 0.12504548154254666, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.01894158423301723 + }, + { + "template": "NECB2015", + "building_type": "Multi-unit residential building", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 5.502001187872053, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.1010217646362335 + }, + { + "template": "NECB2015", + "building_type": "Museum", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 11.004002375744106, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Office", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 8.803201900595285, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.0181839122525645 + }, + { + "template": "NECB2015", + "building_type": "Penitentiary", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 8.703165515361247, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.06734784667879401 + }, + { + "template": "NECB2015", + "building_type": "Performing arts theatre", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 14.90542139987156, + "occupancy_per_area_people_per_m2": 0.12504548154254666, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.01894158423301723 + }, + { + "template": "NECB2015", + "building_type": "Police station", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 9.403420211999508, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.0181839122525645 + }, + { + "template": "NECB2015", + "building_type": "Post office", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 9.403420211999508, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.0181839122525645 + }, + { + "template": "NECB2015", + "building_type": "Religious building", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 10.803929605276032, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Retail area", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 13.50491200659504, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.006734787897053916 + }, + { + "template": "NECB2015", + "building_type": "School/university", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 9.403420211999508, + "occupancy_per_area_people_per_m2": 0.12504548154254666, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.03788315770211941 + }, + { + "template": "NECB2015", + "building_type": "Sports arena", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 9.803565752935658, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.04545979139532631 + }, + { + "template": "NECB2015", + "building_type": "Storage garage", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 2.3008368603828586, + "occupancy_per_area_people_per_m2": 0.0010003638523403732, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Town hall", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 9.603492982467584, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.0181839122525645 + }, + { + "template": "NECB2015", + "building_type": "Transportation facility", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 7.502728892552799, + "occupancy_per_area_people_per_m2": 0.0666909234893582, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.02188804451955265 + }, + { + "template": "NECB2015", + "building_type": "Warehouse", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.0006669092348935823, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.0010102171081665823 + }, + { + "template": "NECB2015", + "building_type": "Workshop", + "space_type": "WholeBuilding", + "lighting_per_area_w_per_m2": 12.804657309956777, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-A", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-B", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-C", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-D", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-E", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-F", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-G", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-H", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-I", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-J", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-K", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-A", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-B", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-C", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-D", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-E", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-F", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-G", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-H", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-I", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-J", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-K", + "lighting_per_area_w_per_m2": 1.0603856834807959, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-A", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-B", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-C", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-D", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-E", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-F", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-G", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-H", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-I", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-J", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-K", + "lighting_per_area_w_per_m2": 5.01182290022527, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - auditorium", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - convention centre", + "lighting_per_area_w_per_m2": 8.903238285829323, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - gymnasium", + "lighting_per_area_w_per_m2": 7.002546966382613, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - motion picture theatre", + "lighting_per_area_w_per_m2": 12.304475383786594, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - penitentiary", + "lighting_per_area_w_per_m2": 3.0010915570211196, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - performing arts theatre", + "lighting_per_area_w_per_m2": 26.209532931317778, + "occupancy_per_area_people_per_m2": 0.1333818469787164, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - religious building", + "lighting_per_area_w_per_m2": 16.506003563616158, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - sports arena", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-A", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-B", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-C", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-D", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-E", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-F", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-G", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-H", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-I", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-J", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-K", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Banking activity area and offices", + "lighting_per_area_w_per_m2": 10.90396599051007, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.012122611756348019 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Classroom/Lecture hall/Training room - Penitentary", + "lighting_per_area_w_per_m2": 14.505275858935413, + "occupancy_per_area_people_per_m2": 0.1333818469787164, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.04377609980302036 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Classroom/Lecture hall/Training room other", + "lighting_per_area_w_per_m2": 13.404875621361002, + "occupancy_per_area_people_per_m2": 0.1333818469787164, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.04377609980302036 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-A", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-B", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-C", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-D", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-E", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-F", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-G", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-H", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-I", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-J", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-K", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 200.07277046807468, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Conference/Meeting/Multi-purpose room", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.04545979139532631 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Confinement cell", + "lighting_per_area_w_per_m2": 8.803201900595285, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.065664144322573 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Copy/Print room", + "lighting_per_area_w_per_m2": 7.802838048254912, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 60.02183114042239, + "service_water_heating_peak_flow_per_area": 0.004545978063141125 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-A", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-B", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-C", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-D", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-E", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-F", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-G", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-H", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-I", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-J", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-K", + "lighting_per_area_w_per_m2": 10.703893220041993, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-A", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-B", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-C", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-D", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-E", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-F", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-G", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-H", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-I", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-J", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-K", + "lighting_per_area_w_per_m2": 4.4016009502976425, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-A", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-B", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-C", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-D", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-E", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-F", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-G", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-H", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-I", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-J", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-K", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-A", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-B", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-C", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-D", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-E", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-F", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-G", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-H", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-I", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-J", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-K", + "lighting_per_area_w_per_m2": 7.10258335161665, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Courtroom", + "lighting_per_area_w_per_m2": 18.606767653530945, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dining area - bar lounge/leisure dining", + "lighting_per_area_w_per_m2": 11.604220687148329, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.04545979139532631 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dining area - cafeteria/fast food dining", + "lighting_per_area_w_per_m2": 7.002546966382613, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.060613058781740094 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dining area - family dining", + "lighting_per_area_w_per_m2": 9.603492982467584, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.060613058781740094 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dining area - penitentiary", + "lighting_per_area_w_per_m2": 10.303747679105847, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.060613058781740094 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dining area - space designed to ANSI/IES RP-28 (used primarily by residents)", + "lighting_per_area_w_per_m2": 28.510369791700636, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.060613058781740094 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dining area - other", + "lighting_per_area_w_per_m2": 7.002546966382613, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.060613058781740094 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dressing/Fitting room - performing arts theatre", + "lighting_per_area_w_per_m2": 6.602401425446463, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.006734787897053916 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-A", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-B", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-C", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-D", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-E", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-F", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-G", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-H", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-I", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-J", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-K", + "lighting_per_area_w_per_m2": 4.601673720765717, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Emergency vehicle garage", + "lighting_per_area_w_per_m2": 6.102219499276277, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.065664144322573 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Food preparation area", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Guest room", + "lighting_per_area_w_per_m2": 5.1018556469359035, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.12122611756348019 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Laboratory - classrooms", + "lighting_per_area_w_per_m2": 15.505639711275785, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.04545979139532631 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Laboratory - other", + "lighting_per_area_w_per_m2": 19.50709512063728, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.04545979139532631 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Laundry/Washing area", + "lighting_per_area_w_per_m2": 6.5023650402124265, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 20.007277046807467, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Loading dock interior", + "lighting_per_area_w_per_m2": 5.1018556469359035, + "occupancy_per_area_people_per_m2": 0.0020007277046807464, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Lobby - elevator", + "lighting_per_area_w_per_m2": 7.002546966382613, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Lobby - hotel", + "lighting_per_area_w_per_m2": 11.504184301914291, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Lobby - motion picture theatre", + "lighting_per_area_w_per_m2": 6.402328654978389, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Lobby - performing arts theatre", + "lighting_per_area_w_per_m2": 21.607859210552064, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Lobby - space designed to ANSI/IES RP-28 (used primarily by residents)", + "lighting_per_area_w_per_m2": 19.40705873540324, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Lobby - other", + "lighting_per_area_w_per_m2": 9.70352936770162, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-A", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-B", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-C", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-D", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-E", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-F", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-G", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-H", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-I", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-J", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Locker room-sch-K", + "lighting_per_area_w_per_m2": 8.102947203957024, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Lounge/Break room - health care facility", + "lighting_per_area_w_per_m2": 10.003638523403733, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Lounge/Break room - other", + "lighting_per_area_w_per_m2": 7.902874433488949, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.030306524008912525 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Office enclosed <= 25 m2", + "lighting_per_area_w_per_m2": 12.004366228084479, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Office enclosed > 25 m2", + "lighting_per_area_w_per_m2": 12.004366228084479, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Office open plan", + "lighting_per_area_w_per_m2": 10.603856834807956, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Pharmacy area", + "lighting_per_area_w_per_m2": 18.10658572736076, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.01136495053981034 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Sales area", + "lighting_per_area_w_per_m2": 15.505639711275785, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.006734787897053916 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-A", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-B", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-C", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-D", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-E", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-F", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-G", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-H", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-I", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-J", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Seating area general-sch-K", + "lighting_per_area_w_per_m2": 5.902146728808202, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-A", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-B", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-C", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-D", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-E", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-F", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-G", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-H", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-I", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-J", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-K", + "lighting_per_area_w_per_m2": 7.402692507318762, + "occupancy_per_area_people_per_m2": 0.005001819261701867, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage garage interior", + "lighting_per_area_w_per_m2": 2.100764089914784, + "occupancy_per_area_people_per_m2": 0.0010003638523403732, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-A", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-B", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-C", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-D", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-E", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-F", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-G", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-H", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-I", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-J", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-K", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-A", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-B", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-C", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-D", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-E", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-F", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-G", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-H", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-I", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-J", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-K", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-A", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-B", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-C", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-D", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-E", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-F", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-G", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-H", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-I", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-J", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-K", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Vehicle maintenance area", + "lighting_per_area_w_per_m2": 6.802474195914538, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-A", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-B", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-C", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-D", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-E", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-F", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-G", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-H", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-I", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-J", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-K", + "lighting_per_area_w_per_m2": 13.104766465658889, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-A", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-B", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-C", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-D", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-D-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-E", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-E-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-F", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-F-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-G", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-H", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-I", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom - other-sch-J", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Washroom other-sch-K", + "lighting_per_area_w_per_m2": 10.503820449573919, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-K-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Workshop", + "lighting_per_area_w_per_m2": 17.20625826025442, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Convention centre exhibit space", + "lighting_per_area_w_per_m2": 15.70571248174386, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dormitory living quarters", + "lighting_per_area_w_per_m2": 4.201528179829568, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.1010217646362335 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dwelling units general", + "lighting_per_area_w_per_m2": 5.001819261701867, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.1010217646362335 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Dwelling units long-term", + "lighting_per_area_w_per_m2": 5.001819261701867, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-J-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.1010217646362335 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Fire station sleeping quarters", + "lighting_per_area_w_per_m2": 2.400873245616896, + "occupancy_per_area_people_per_m2": 0.040014554093614936, + "occupancy_schedule": "NECB-G-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.1010217646362335 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Gymnasium/Fitness centre exercise area", + "lighting_per_area_w_per_m2": 7.802838048254912, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.09091958279065263 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Gymnasium/Fitness centre playing area", + "lighting_per_area_w_per_m2": 13.004730080424853, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.5005457785105598, + "service_water_heating_peak_flow_per_area": 0.09091958279065263 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Health care facility exam/treatment room", + "lighting_per_area_w_per_m2": 18.006549342126718, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Health care facility imaging room", + "lighting_per_area_w_per_m2": 16.305930793148086, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Health care facility medical supply room", + "lighting_per_area_w_per_m2": 8.002910818722986, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Health care facility nursery", + "lighting_per_area_w_per_m2": 9.503456597233546, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Health care facility nurses station", + "lighting_per_area_w_per_m2": 7.602765277786836, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.01136495053981034 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Health care facility operating room", + "lighting_per_area_w_per_m2": 26.809751242722005, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.07576632616815389 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Health care facility patient room", + "lighting_per_area_w_per_m2": 6.702437810680501, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Health care facility physical therapy room", + "lighting_per_area_w_per_m2": 9.903602138169695, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.01136495053981034 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Health care facility recovery room", + "lighting_per_area_w_per_m2": 12.40451176902063, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.04545979139532631 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Library reading area", + "lighting_per_area_w_per_m2": 11.504184301914291, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Library stacks", + "lighting_per_area_w_per_m2": 18.40669488306287, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Manufacturing facility detailed manufacturing area", + "lighting_per_area_w_per_m2": 13.905057547531188, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Manufacturing facility equipment room", + "lighting_per_area_w_per_m2": 8.002910818722986, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Manufacturing facility extra high bay area (> 15 m floor-to-ceiling height)", + "lighting_per_area_w_per_m2": 11.304111531446217, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Manufacturing facility high bay area (7.5 to 15 m floor-to-ceiling height)", + "lighting_per_area_w_per_m2": 13.304839236126966, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Manufacturing facility low bay area (< 7.5 m floor-to-ceiling height)", + "lighting_per_area_w_per_m2": 12.904693695190815, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 10.003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Museum general exhibition area", + "lighting_per_area_w_per_m2": 11.404147916680255, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.060613058781740094 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Museum restoration room", + "lighting_per_area_w_per_m2": 11.004002375744106, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 5.001819261701867, + "service_water_heating_peak_flow_per_area": 0.012627719234039804 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Post office sorting area", + "lighting_per_area_w_per_m2": 10.203711293871807, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 7.502728892552799, + "service_water_heating_peak_flow_per_area": 0.02272990107962068 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Religious building fellowship hall", + "lighting_per_area_w_per_m2": 6.902510581148576, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.04545979139532631 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Religious building worship/pulpit/choir area", + "lighting_per_area_w_per_m2": 16.506003563616158, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Retail facility dressing/fitting room", + "lighting_per_area_w_per_m2": 7.702801663020875, + "occupancy_per_area_people_per_m2": 0.0333454617446791, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.006734787897053916 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Retail facility mall concourse", + "lighting_per_area_w_per_m2": 11.904329842850442, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-C-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.007576633693206893 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Space designed to ANSI/IES RP-28 chapel (used primarily by residents)", + "lighting_per_area_w_per_m2": 23.90869607093492, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-I-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.007576633693206893 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Space designed to ANSI/IES RP-28 recreation room (used primarily by residents)", + "lighting_per_area_w_per_m2": 25.909423775615664, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.015153267386413786 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Sports arena playing area class I facility(4)", + "lighting_per_area_w_per_m2": 39.71444493791282, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.5005457785105598, + "service_water_heating_peak_flow_per_area": 0.09091958279065263 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Sports arena playing area class II facility(4)", + "lighting_per_area_w_per_m2": 25.909423775615664, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.5005457785105598, + "service_water_heating_peak_flow_per_area": 0.09091958279065263 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Sports arena playing area class III facility(4)", + "lighting_per_area_w_per_m2": 19.40705873540324, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.5005457785105598, + "service_water_heating_peak_flow_per_area": 0.09091958279065263 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Sports arena playing area class IV facility(4)", + "lighting_per_area_w_per_m2": 13.004730080424853, + "occupancy_per_area_people_per_m2": 0.20007277046807467, + "occupancy_schedule": "NECB-B-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.5005457785105598, + "service_water_heating_peak_flow_per_area": 0.09091958279065263 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Transportation facility airport concourse", + "lighting_per_area_w_per_m2": 3.901419024127456, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0.01641603608064325 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Transportation facility baggage/carousel area", + "lighting_per_area_w_per_m2": 5.702073958340128, + "occupancy_per_area_people_per_m2": 0.05001819261701867, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.01641603608064325 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Transportation facility terminal ticket counter", + "lighting_per_area_w_per_m2": 8.703165515361247, + "occupancy_per_area_people_per_m2": 0.10003638523403734, + "occupancy_schedule": "NECB-H-Occupancy", + "electric_equipment_per_area_w_per_m2": 2.5009096308509333, + "service_water_heating_peak_flow_per_area": 0.0328320721612865 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Warehouse storage area medium to bulky palletized items", + "lighting_per_area_w_per_m2": 6.202255884510315, + "occupancy_per_area_people_per_m2": 0.010003638523403734, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.0032832093689116604 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "Warehouse storage area small hand-carried items(4)", + "lighting_per_area_w_per_m2": 10.203711293871807, + "occupancy_per_area_people_per_m2": 0.020007277046807468, + "occupancy_schedule": "NECB-A-Occupancy", + "electric_equipment_per_area_w_per_m2": 1.0003638523403733, + "service_water_heating_peak_flow_per_area": 0.006566418737823321 + }, + { + "template": "NECB2015", + "building_type": "Space Function", + "space_type": "- undefined -", + "lighting_per_area_w_per_m2": 0, + "occupancy_per_area_people_per_m2": 0, + "occupancy_schedule": 0, + "electric_equipment_per_area_w_per_m2": 0, + "service_water_heating_peak_flow_per_area": 0 + } + ] + } + } +} \ No newline at end of file diff --git a/hub/data/usage/nrcan_space_types.json b/hub/data/usage/nrcan_space_types.json new file mode 100644 index 00000000..a1c7a49f --- /dev/null +++ b/hub/data/usage/nrcan_space_types.json @@ -0,0 +1,26170 @@ +{ + "tables": { + "space_types": { + "data_type": "table", + "refs": [ + "assumption" + ], + "table": [ + { + "building_type": "Automotive facility", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Automotive facility", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.7992565055762082, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Automotive facility", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Automotive Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Auto repair rooms" + }, + { + "building_type": "Convention centre", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Convention centre", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.013011152416357, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 300, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Convention centre", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 11.617100371747211, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00175973, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Conference rooms" + }, + { + "building_type": "Courthouse", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Courthouse", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.013011152416357, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Courthouse", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 6.195786864931846, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001877045, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Dining - bar lounge/leisure", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Dining - bar lounge/leisure", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.013011152416357, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 125, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Dining - bar lounge/leisure", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 30, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.005396504, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Bars, coctail lounges" + }, + { + "building_type": "Dining - cafeteria/fast food", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Dining - cafeteria/fast food", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.9014869888475836, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 300, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Dining - cafeteria/fast food", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.005396504, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Cafeteria, fast food" + }, + { + "building_type": "Dining - family", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Dining - family", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.9479553903345724, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 300, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Dining - family", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.005396504, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 70, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Dining rooms" + }, + { + "building_type": "Dormitory", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Dormitory", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.5669144981412639, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Dormitory", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.007821021, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Sleeping Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Dormitory sleeping areas" + }, + { + "building_type": "Exercise centre", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Exercise centre", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.8364312267657993, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Exercise centre", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 25, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004223351, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 70, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Sports and Amusement-Game rooms" + }, + { + "building_type": "Fire station", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Fire station", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.6691449814126395, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Fire station", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00750818, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Automotive Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Enclosed parking garage" + }, + { + "building_type": "Gymnasium", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Gymnasium", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.9386617100371747, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Gymnasium", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 25, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004223351, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 70, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Sports and Amusement-Game rooms" + }, + { + "building_type": "Health care clinic", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Health care clinic", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.9014869888475836, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 600, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Health care clinic", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hopital, Nursing and Convalescent Homes-Medical procedure" + }, + { + "building_type": "Hospital", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Hospital", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.050185873605948, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Hospital", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hopital, Nursing and Convalescent Homes-Medical procedure" + }, + { + "building_type": "Hotel/Motel", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Hotel/Motel", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.8736059479553904, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Hotel/Motel", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0.091, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.009385225, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Residential/Accomodation Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Bedrooms (assume avg. bedroom is 330 ft2)" + }, + { + "building_type": "Library", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Library", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.1895910780669146, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Library", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Historical Collections Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Libraries" + }, + { + "building_type": "Long-term care - dwelling units", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Long-term care - dwelling units", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.5111524163568774, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Long-term care - dwelling units", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0.06, + "ventilation_per_person": 5, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.13940520446096655, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.009385225, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Residential/Accomodation Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Bedroom/living room" + }, + { + "building_type": "Long-term care - other", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Long-term care - other", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.5111524163568774, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Long-term care - other", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0.06, + "ventilation_per_person": 5, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.13940520446096655, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.009385225, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Residential/Accomodation Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Bedroom/living room" + }, + { + "building_type": "Manufacturing facility", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Manufacturing facility", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.1710037174721188, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 450, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Manufacturing facility", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Industrial Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Auto repair rooms" + }, + { + "building_type": "Motion picture theatre", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Motion picture theatre", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.762081784386617, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Motion picture theatre", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 11.617100371747211, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00175973, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Multi-unit residential building", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Multi-unit residential building", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.5111524163568774, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 125, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Multi-unit residential building", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0.06, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.009385225, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Residential/Accomodation Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Living areas (Table 2, assume 10 ft ceiling)" + }, + { + "building_type": "Museum", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Museum", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.0223048327137547, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Museum", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Historical Collections Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Lobbies" + }, + { + "building_type": "Office", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Office", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.8178438661710038, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Office", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00168934, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 7, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Office space" + }, + { + "building_type": "Penitentiary", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Penitentiary", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.8085501858736059, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Penitentiary", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.006256817, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Sleeping Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Correctional Facilities-Cells" + }, + { + "building_type": "Performing arts theatre", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Performing arts theatre", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.3847583643122676, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Performing arts theatre", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 11.617100371747211, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00175973, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Police station", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Police station", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.8736059479553904, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Police station", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00168934, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Post office", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Post office", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.8736059479553904, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Post office", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00168934, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Religious building", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Religious building", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.0037174721189592, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Religious building", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Retail area", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Retail area", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.254646840148699, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 450, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Retail area", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0.3, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000625682, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Basement and street" + }, + { + "building_type": "School/university", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "School/university", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.8736059479553904, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "School/university", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 11.617100371747211, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003519459, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Classrooms" + }, + { + "building_type": "Sports arena", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Sports arena", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.9107806691449815, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Sports arena", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004223351, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Sports and Amusement-Spectator areas" + }, + { + "building_type": "Storage garage", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Storage garage", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.2137546468401487, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 75, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Storage garage", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.09293680297397769, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Enclosed parking garage" + }, + { + "building_type": "Town hall", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Town hall", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.8921933085501859, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Town hall", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00168934, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Transportation facility", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Transportation facility", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.6970260223048327, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 225, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Transportation facility", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 6.195786864931846, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002033465, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Transportation-Platforms" + }, + { + "building_type": "Warehouse", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Warehouse", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Warehouse", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.061957868649318466, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 9.38522e-05, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 5, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales floors, and Show Room Floors-Warehouses" + }, + { + "building_type": "Workshop", + "space_type": "WholeBuilding", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Workshop", + "lighting_secondary_space_type": "WholeBuilding", + "lighting_per_area": 1.1895910780669146, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Workshop", + "ventilation_secondary_space_type": "WholeBuilding", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Industrial Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Traning shop" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-A", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-B", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-C", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-D", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-E", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-F", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-G", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-H", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-I", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-J", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height < 6m)-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height < 6m)-sch-K", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height < 6m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-A", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-B", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-C", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-D", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-E", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-F", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-G", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-H", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-I", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-J", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (6 =< height <= 12m)-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (6 =< height <= 12m)-sch-K", + "lighting_per_area": 0.09851301115241637, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (6 =< height <= 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-A", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-B", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-C", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-D", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-E", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-F", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-G", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-H", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-I", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-J", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Atrium (height > 12m)-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Atrium (height > 12m)-sch-K", + "lighting_per_area": 0.4656133828996282, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Atrium (height > 12m)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - auditorium", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - auditorium", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.3, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - auditorium", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - convention centre", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - convention centre", + "lighting_per_area": 0.8271375464684015, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.2, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - convention centre", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - gymnasium", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - gymnasium", + "lighting_per_area": 0.6505576208178439, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - gymnasium", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - motion picture theatre", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - motion picture theatre", + "lighting_per_area": 1.1431226765799258, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - motion picture theatre", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - penitentiary", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - penitentiary", + "lighting_per_area": 0.2788104089219331, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - penitentiary", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - performing arts theatre", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - performing arts theatre", + "lighting_per_area": 2.4349442379182156, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - performing arts theatre", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 12.391573729863692, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - religious building", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - religious building", + "lighting_per_area": 1.533457249070632, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.3, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - religious building", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - sports arena", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - sports arena", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - sports arena", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-A", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-B", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-C", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-D", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-E", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-F", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-G", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-H", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-I", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-J", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Audience seating area permanent - other-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Audience seating area permanent - other-sch-K", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Audience seating area permanent - other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Auditorium" + }, + { + "building_type": "Space Function", + "space_type": "Banking activity area and offices", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Banking activity area and offices", + "lighting_per_area": 1.013011152416357, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Banking activity area and offices", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001126227, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 7, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Office space" + }, + { + "building_type": "Space Function", + "space_type": "Classroom/Lecture hall/Training room - Penitentary", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Classroom/Lecture hall/Training room - Penitentary", + "lighting_per_area": 1.3475836431226766, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Classroom/Lecture hall/Training room - Penitentary", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 12.391573729863692, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004066931, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Classrooms" + }, + { + "building_type": "Space Function", + "space_type": "Classroom/Lecture hall/Training room other", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Classroom/Lecture hall/Training room other", + "lighting_per_area": 1.2453531598513012, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Classroom/Lecture hall/Training room other", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 12.391573729863692, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004066931, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Classrooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-A", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-B", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-C", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-D", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-E", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-F", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-G", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-H", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-I", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-J", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Computer/Server room-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Computer/Server room-sch-K", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.7, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Computer/Server room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 18.58736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Conference/Meeting/Multi-purpose room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Conference/Meeting/Multi-purpose room", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Conference/Meeting/Multi-purpose room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004223351, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Confinement cell", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Confinement cell", + "lighting_per_area": 0.8178438661710038, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Confinement cell", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.006100396, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Sleeping Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Correctional Facilities-Cells" + }, + { + "building_type": "Space Function", + "space_type": "Copy/Print room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Copy/Print room", + "lighting_per_area": 0.724907063197026, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.2, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Copy/Print room", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 5.5762081784386615, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000422335, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 7, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Office space" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-A", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-B", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-C", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-D", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-E", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-F", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-G", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-H", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-I", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-J", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - hospital-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - hospital-sch-K", + "lighting_per_area": 0.9944237918215613, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - hospital", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-A", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-B", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-C", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-D", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-E", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-F", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-G", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-H", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-I", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-J", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - manufacturing facility-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - manufacturing facility-sch-K", + "lighting_per_area": 0.4089219330855019, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - manufacturing facility", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-A", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-B", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-C", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-D", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-E", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-F", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-G", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-H", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-I", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-J", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)-sch-K", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area - space designed to ANSI/IES RP-28 (and used primarily by residents)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-A", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-B", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-C", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-D", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-E", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-F", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-G", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-H", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-I", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-J", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Corridor/Transition area other-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Corridor/Transition area other-sch-K", + "lighting_per_area": 0.6598513011152416, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Corridor/Transition area other", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Courtroom", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Courtroom", + "lighting_per_area": 1.7286245353159853, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.2, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Courtroom", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Dining area - bar lounge/leisure dining", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dining area - bar lounge/leisure dining", + "lighting_per_area": 1.0780669144981412, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dining area - bar lounge/leisure dining", + "ventilation_per_area": 0, + "ventilation_per_person": 30, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004223351, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Bars, coctail lounges" + }, + { + "building_type": "Space Function", + "space_type": "Dining area - cafeteria/fast food dining", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dining area - cafeteria/fast food dining", + "lighting_per_area": 0.6505576208178439, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dining area - cafeteria/fast food dining", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.005631135, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Bars,Cafeteria, fast food" + }, + { + "building_type": "Space Function", + "space_type": "Dining area - family dining", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dining area - family dining", + "lighting_per_area": 0.8921933085501859, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dining area - family dining", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.005631135, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 70, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Dining rooms" + }, + { + "building_type": "Space Function", + "space_type": "Dining area - penitentiary", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dining area - penitentiary", + "lighting_per_area": 0.9572490706319704, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dining area - penitentiary", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.005631135, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 70, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Dining rooms" + }, + { + "building_type": "Space Function", + "space_type": "Dining area - space designed to ANSI/IES RP-28 (used primarily by residents)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dining area - space designed to ANSI/IES RP-28 (used primarily by residents)", + "lighting_per_area": 2.6486988847583643, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dining area - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.005631135, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 70, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Dining rooms" + }, + { + "building_type": "Space Function", + "space_type": "Dining area - other", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dining area - other", + "lighting_per_area": 0.6505576208178439, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dining area - other", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.005631135, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 70, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Dining rooms" + }, + { + "building_type": "Space Function", + "space_type": "Dressing/Fitting room - performing arts theatre", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dressing/Fitting room - performing arts theatre", + "lighting_per_area": 0.6133828996282528, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.4, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dressing/Fitting room - performing arts theatre", + "ventilation_per_area": 0.2, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000625682, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-A", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-B", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-C", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-D", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-E", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-F", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-G", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-H", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-I", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-J", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Electrical/Mechanical room-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Electrical/Mechanical room-sch-K", + "lighting_per_area": 0.4275092936802974, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.9, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Electrical/Mechanical room", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Emergency vehicle garage", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Emergency vehicle garage", + "lighting_per_area": 0.5669144981412639, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Emergency vehicle garage", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.006100396, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Automotive Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Enclosed parking garage" + }, + { + "building_type": "Space Function", + "space_type": "Food preparation area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Food preparation area", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Food preparation area", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Serices-Kitchens (cooking)" + }, + { + "building_type": "Space Function", + "space_type": "Guest room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Guest room", + "lighting_per_area": 0.4739776951672862, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Guest room", + "ventilation_per_area": 0.091, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.01126227, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Residential/Accomodation Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Bedrooms (assume avg. bedroom is 330 ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Laboratory - classrooms", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Laboratory - classrooms", + "lighting_per_area": 1.4405204460966543, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.4, + "personal_control": 0.1, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Laboratory - classrooms", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004223351, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Classrooms" + }, + { + "building_type": "Space Function", + "space_type": "Laboratory - other", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Laboratory - other", + "lighting_per_area": 1.8122676579925652, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 650, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Laboratory - other", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004223351, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Laboratories" + }, + { + "building_type": "Space Function", + "space_type": "Laundry/Washing area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Laundry/Washing area", + "lighting_per_area": 0.604089219330855, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Laundry/Washing area", + "ventilation_per_area": 0, + "ventilation_per_person": 25, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 1.858736059479554, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Dry Cleaners, Laundries-Commercial laundry" + }, + { + "building_type": "Space Function", + "space_type": "Loading dock interior", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Loading dock interior", + "lighting_per_area": 0.4739776951672862, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Loading dock interior", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.18587360594795538, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Shipping/receiving" + }, + { + "building_type": "Space Function", + "space_type": "Lobby - elevator", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Lobby - elevator", + "lighting_per_area": 0.6505576208178439, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Lobby - elevator", + "ventilation_per_area": 1, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Elevators" + }, + { + "building_type": "Space Function", + "space_type": "Lobby - hotel", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Lobby - hotel", + "lighting_per_area": 1.0687732342007434, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Lobby - hotel", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Lobby - motion picture theatre", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Lobby - motion picture theatre", + "lighting_per_area": 0.5947955390334573, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Lobby - motion picture theatre", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Lobby - performing arts theatre", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Lobby - performing arts theatre", + "lighting_per_area": 2.0074349442379185, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Lobby - performing arts theatre", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Lobby - space designed to ANSI/IES RP-28 (used primarily by residents)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Lobby - space designed to ANSI/IES RP-28 (used primarily by residents)", + "lighting_per_area": 1.8029739776951672, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Lobby - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Lobby - other", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Lobby - other", + "lighting_per_area": 0.9014869888475836, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Lobby - other", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-A", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-B", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-C", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-D", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-E", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-F", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-G", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-H", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-I", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-J", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Locker room-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Locker room-sch-K", + "lighting_per_area": 0.7527881040892194, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Locker room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Locker and dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Lounge/Break room - health care facility", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Lounge/Break room - health care facility", + "lighting_per_area": 0.929368029739777, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Lounge/Break room - health care facility", + "ventilation_per_area": 0, + "ventilation_per_person": 30, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Bars, coctail lounges" + }, + { + "building_type": "Space Function", + "space_type": "Lounge/Break room - other", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Lounge/Break room - other", + "lighting_per_area": 0.7342007434944239, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Lounge/Break room - other", + "ventilation_per_area": 0, + "ventilation_per_person": 30, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002815567, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Supermarket/Food Services Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Food and Beverage Service-Bars, coctail lounges" + }, + { + "building_type": "Space Function", + "space_type": "Office enclosed <= 25 m2", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Office enclosed <= 25 m2", + "lighting_per_area": 1.1152416356877324, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.3, + "personal_control": 0.1, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Office enclosed <= 25 m2", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 7, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Office space" + }, + { + "building_type": "Space Function", + "space_type": "Office enclosed > 25 m2", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Office enclosed > 25 m2", + "lighting_per_area": 1.1152416356877324, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.3, + "personal_control": 0.1, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Office enclosed > 25 m2", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 7, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Office space" + }, + { + "building_type": "Space Function", + "space_type": "Office open plan", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Office open plan", + "lighting_per_area": 0.9851301115241635, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.2, + "personal_control": 0.1, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Office open plan", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 7, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Office space" + }, + { + "building_type": "Space Function", + "space_type": "Pharmacy area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Pharmacy area", + "lighting_per_area": 1.6821561338289965, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Pharmacy area", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001055838, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Workrooms-Pharmacy" + }, + { + "building_type": "Space Function", + "space_type": "Sales area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Sales area", + "lighting_per_area": 1.4405204460966543, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Sales area", + "ventilation_per_area": 0.3, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000625682, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Basement and street" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-A", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-B", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-C", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-D", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-E", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-F", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-G", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-H", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-I", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-J", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Seating area general-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Seating area general-sch-K", + "lighting_per_area": 0.5483271375464684, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Seating area general", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-A", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-B", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-C", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-D", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-E", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-F", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-G", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-H", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-I", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-J", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Stairway/Stairwell-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Stairway/Stairwell-sch-K", + "lighting_per_area": 0.6877323420074349, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Stairway/Stairwell", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.4646840148698885, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Corridors and utilities" + }, + { + "building_type": "Space Function", + "space_type": "Storage garage interior", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage garage interior", + "lighting_per_area": 0.19516728624535318, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.4, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 75, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage garage interior", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.09293680297397769, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-A", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-B", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-C", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-D", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-E", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-F", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-G", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-H", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-I", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-J", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room < 5 m2-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room < 5 m2-sch-K", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room < 5 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-A", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-B", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-C", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-D", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-E", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-F", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-G", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-H", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-I", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-J", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room <= 5 m2 <= 100 m2-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room <= 5 m2 <= 100 m2-sch-K", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room <= 5 m2 <= 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-A", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-B", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-C", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-D", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-E", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-F", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-G", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-H", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-I", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-J", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Storage room > 100 m2-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Storage room > 100 m2-sch-K", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.6, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 100, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Storage room > 100 m2", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Vehicle maintenance area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Vehicle maintenance area", + "lighting_per_area": 0.6319702602230484, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Vehicle maintenance area", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Automotive Area", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Auto Repair Room (Table 6-4)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-A", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-B", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-C", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-D", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-E", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-F", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-G", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-H", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-I", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-J", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)-sch-K", + "lighting_per_area": 1.2174721189591078, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - space designed to ANSI/IES RP-28 (used primarily by residents)", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-A", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-A", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-B", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-B", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-C", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-C", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-D", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-D", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-D-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-D-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-D-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-D-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-D-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-D-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-D-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "D", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-E", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-E", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-E-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-E-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-E-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-E-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-E-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-E-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-E-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "E", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-F", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-F", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-F-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-F-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-F-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-F-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-F-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-F-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-F-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "F", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-G", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-G", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-H", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-H", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-I", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-I", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom - other-sch-J", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-J", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Washroom other-sch-K", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Washroom - other-sch-K", + "lighting_per_area": 0.9758364312267658, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-K-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Washroom - other", + "ventilation_per_area": 0, + "ventilation_per_person": 50, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-K-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-K-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-K-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-K-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-K-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-K-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Wildcard", + "necb_schedule_type": "K", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Public Spaces-Public restroom (assume 30 people/1000ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Workshop", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Workshop", + "lighting_per_area": 1.5985130111524164, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Workshop", + "ventilation_per_area": 0.18, + "ventilation_per_person": 10, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Industrial Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Wood/metal shop" + }, + { + "building_type": "Space Function", + "space_type": "Convention centre exhibit space", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Convention centre exhibit space", + "lighting_per_area": 1.4591078066914498, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Convention centre exhibit space", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 120, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Assembly rooms" + }, + { + "building_type": "Space Function", + "space_type": "Dormitory living quarters", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dormitory living quarters", + "lighting_per_area": 0.39033457249070636, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 125, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dormitory living quarters", + "ventilation_per_area": 0.091, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.009385225, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Sleeping Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Bedrooms (assume avg. bedroom is 330 ft2)" + }, + { + "building_type": "Space Function", + "space_type": "Dwelling units general", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dwelling units general", + "lighting_per_area": 0.4646840148698885, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 125, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dwelling units general", + "ventilation_per_area": 0.06, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.009385225, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Residential/Accomodation Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Living areas (Table 2, assume 10 ft ceiling)" + }, + { + "building_type": "Space Function", + "space_type": "Dwelling units long-term", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Dwelling units long-term", + "lighting_per_area": 0.4646840148698885, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-J-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 300, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Dwelling units long-term", + "ventilation_per_area": 0.06, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-J-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-J-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-J-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-J-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.009385225, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-J-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-J-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Residential/Accomodation Area", + "necb_schedule_type": "J", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Living areas (Table 2, assume 10 ft ceiling)" + }, + { + "building_type": "Space Function", + "space_type": "Fire station sleeping quarters", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Fire station sleeping quarters", + "lighting_per_area": 0.22304832713754646, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-G-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Fire station sleeping quarters", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.717472118959108, + "occupancy_schedule": "NECB-G-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-G-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-G-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-G-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.009385225, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-G-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-G-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Sleeping Area", + "necb_schedule_type": "G", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotel, Models, Resorts-Dormotory sleeping areas" + }, + { + "building_type": "Space Function", + "space_type": "Gymnasium/Fitness centre exercise area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Gymnasium/Fitness centre exercise area", + "lighting_per_area": 0.724907063197026, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Gymnasium/Fitness centre exercise area", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.008446702, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Sports and Amusement-Playing floors (gymnasium)" + }, + { + "building_type": "Space Function", + "space_type": "Gymnasium/Fitness centre playing area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Gymnasium/Fitness centre playing area", + "lighting_per_area": 1.20817843866171, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Gymnasium/Fitness centre playing area", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.13940520446096655, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.008446702, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 30, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Sports and Amusement-Playing floors (gymnasium)" + }, + { + "building_type": "Space Function", + "space_type": "Health care facility exam/treatment room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Health care facility exam/treatment room", + "lighting_per_area": 1.6728624535315986, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.3, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 600, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Health care facility exam/treatment room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hopital, Nursing and Convalescent Homes-Medical procedure" + }, + { + "building_type": "Space Function", + "space_type": "Health care facility imaging room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Health care facility imaging room", + "lighting_per_area": 1.5148698884758365, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 225, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Health care facility imaging room", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Workrooms-Darkrooms" + }, + { + "building_type": "Space Function", + "space_type": "Health care facility medical supply room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Health care facility medical supply room", + "lighting_per_area": 0.7434944237918216, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Health care facility medical supply room", + "ventilation_per_area": 0.15, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 15, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Storage rooms" + }, + { + "building_type": "Space Function", + "space_type": "Health care facility nursery", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Health care facility nursery", + "lighting_per_area": 0.8828996282527881, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Health care facility nursery", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hospitals, Nursing and Convalescent Homes-Recovery and ICU" + }, + { + "building_type": "Space Function", + "space_type": "Health care facility nurses station", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Health care facility nurses station", + "lighting_per_area": 0.7063197026022304, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Health care facility nurses station", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001055838, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 60, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Reception areas" + }, + { + "building_type": "Space Function", + "space_type": "Health care facility operating room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Health care facility operating room", + "lighting_per_area": 2.4907063197026025, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.1, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 1000, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Health care facility operating room", + "ventilation_per_area": 0, + "ventilation_per_person": 30, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.007038919, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hospitals, Nursing and Convalescent Homes-Operating rooms" + }, + { + "building_type": "Space Function", + "space_type": "Health care facility patient room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Health care facility patient room", + "lighting_per_area": 0.6226765799256506, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.1, + "personal_control": 0.1, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Health care facility patient room", + "ventilation_per_area": 0, + "ventilation_per_person": 25, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hospitals, Nursing and Convalescent Homes-Patient rooms" + }, + { + "building_type": "Space Function", + "space_type": "Health care facility physical therapy room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Health care facility physical therapy room", + "lighting_per_area": 0.9200743494423792, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.2, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Health care facility physical therapy room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001055838, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hospitals, Nursing and Convalescent Homes->Physical therapy" + }, + { + "building_type": "Space Function", + "space_type": "Health care facility recovery room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Health care facility recovery room", + "lighting_per_area": 1.1524163568773236, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Health care facility recovery room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004223351, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Hospital Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hospitals, Nursing and Convalescent Homes-Recovery and ICU" + }, + { + "building_type": "Space Function", + "space_type": "Library reading area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Library reading area", + "lighting_per_area": 1.0687732342007434, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Library reading area", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Libraries" + }, + { + "building_type": "Space Function", + "space_type": "Library stacks", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Library stacks", + "lighting_per_area": 1.7100371747211895, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Library stacks", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Libraries" + }, + { + "building_type": "Space Function", + "space_type": "Manufacturing facility detailed manufacturing area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Manufacturing facility detailed manufacturing area", + "lighting_per_area": 1.29182156133829, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 600, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Manufacturing facility detailed manufacturing area", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Industrial Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Auto repair rooms" + }, + { + "building_type": "Space Function", + "space_type": "Manufacturing facility equipment room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Manufacturing facility equipment room", + "lighting_per_area": 0.7434944237918216, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.2, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Manufacturing facility equipment room", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Industrial Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Auto repair rooms" + }, + { + "building_type": "Space Function", + "space_type": "Manufacturing facility extra high bay area (> 15 m floor-to-ceiling height)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Manufacturing facility extra high bay area (> 15 m floor-to-ceiling height)", + "lighting_per_area": 1.050185873605948, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Manufacturing facility extra high bay area (> 15 m floor-to-ceiling height)", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Industrial Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Auto repair rooms" + }, + { + "building_type": "Space Function", + "space_type": "Manufacturing facility high bay area (7.5 to 15 m floor-to-ceiling height)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Manufacturing facility high bay area (7.5 to 15 m floor-to-ceiling height)", + "lighting_per_area": 1.2360594795539035, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Manufacturing facility high bay area (7.5 to 15 m floor-to-ceiling height)", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Industrial Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Auto repair rooms" + }, + { + "building_type": "Space Function", + "space_type": "Manufacturing facility low bay area (< 7.5 m floor-to-ceiling height)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Manufacturing facility low bay area (< 7.5 m floor-to-ceiling height)", + "lighting_per_area": 1.1988847583643123, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Manufacturing facility low bay area (< 7.5 m floor-to-ceiling height)", + "ventilation_per_area": 1.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Industrial Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Garages, Repair, Service Stations-Auto repair rooms" + }, + { + "building_type": "Space Function", + "space_type": "Museum general exhibition area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Museum general exhibition area", + "lighting_per_area": 1.0594795539033457, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.2, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Museum general exhibition area", + "ventilation_per_area": 0, + "ventilation_per_person": 20, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.005631135, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Historical Collections Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 150, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Theaters-Lobbies" + }, + { + "building_type": "Space Function", + "space_type": "Museum restoration room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Museum restoration room", + "lighting_per_area": 1.0223048327137547, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.3, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 600, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Museum restoration room", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.4646840148698885, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001173153, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Historical Collections Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 10, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Workrooms-Photo studios" + }, + { + "building_type": "Space Function", + "space_type": "Post office sorting area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Post office sorting area", + "lighting_per_area": 0.9479553903345724, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Post office sorting area", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.6970260223048327, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.002111676, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Offices-Conference rooms" + }, + { + "building_type": "Space Function", + "space_type": "Religious building fellowship hall", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Religious building fellowship hall", + "lighting_per_area": 0.6412639405204461, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.3, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Religious building fellowship hall", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.004223351, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 120, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Hotels, Motels, Resorts-Assembly rooms" + }, + { + "building_type": "Space Function", + "space_type": "Religious building worship/pulpit/choir area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Religious building worship/pulpit/choir area", + "lighting_per_area": 1.533457249070632, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.1, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Religious building worship/pulpit/choir area", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 50, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Education-Music rooms" + }, + { + "building_type": "Space Function", + "space_type": "Retail facility dressing/fitting room", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Retail facility dressing/fitting room", + "lighting_per_area": 0.7156133828996283, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.4, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 350, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Retail facility dressing/fitting room", + "ventilation_per_area": 0.2, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 3.097893432465923, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000625682, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Dressing rooms" + }, + { + "building_type": "Space Function", + "space_type": "Retail facility mall concourse", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Retail facility mall concourse", + "lighting_per_area": 1.1059479553903346, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-C-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 400, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Retail facility mall concourse", + "ventilation_per_area": 0.2, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-C-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-C-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-C-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-C-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000703892, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-C-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-C-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "C", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 20, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales Floors, and Show Room Floors-Malls and arcades" + }, + { + "building_type": "Space Function", + "space_type": "Space designed to ANSI/IES RP-28 chapel (used primarily by residents)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Space designed to ANSI/IES RP-28 chapel (used primarily by residents)", + "lighting_per_area": 2.221189591078067, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-I-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Space designed to ANSI/IES RP-28 chapel (used primarily by residents)", + "ventilation_per_area": 0.06, + "ventilation_per_person": 5, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-I-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-I-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-I-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-I-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.000703892, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-I-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-I-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "I", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 120, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Places of religious worship" + }, + { + "building_type": "Space Function", + "space_type": "Space designed to ANSI/IES RP-28 recreation room (used primarily by residents)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Space designed to ANSI/IES RP-28 recreation room (used primarily by residents)", + "lighting_per_area": 2.407063197026022, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.2, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Space designed to ANSI/IES RP-28 recreation room (used primarily by residents)", + "ventilation_per_area": 0.06, + "ventilation_per_person": 5, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001407784, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Assembly Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 120, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Multipurpose assembly" + }, + { + "building_type": "Space Function", + "space_type": "Sports arena playing area class I facility(4)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Sports arena playing area class I facility(4)", + "lighting_per_area": 3.6895910780669148, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 1600, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Sports arena playing area class I facility(4)", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.13940520446096655, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.008446702, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Sports and Amusement-Ice arenaes (playing areas)" + }, + { + "building_type": "Space Function", + "space_type": "Sports arena playing area class II facility(4)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Sports arena playing area class II facility(4)", + "lighting_per_area": 2.407063197026022, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 1000, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Sports arena playing area class II facility(4)", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.13940520446096655, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.008446702, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Sports and Amusement-Ice arenaes (playing areas)" + }, + { + "building_type": "Space Function", + "space_type": "Sports arena playing area class III facility(4)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Sports arena playing area class III facility(4)", + "lighting_per_area": 1.8029739776951672, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 800, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Sports arena playing area class III facility(4)", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.13940520446096655, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.008446702, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Sports and Amusement-Ice arenaes (playing areas)" + }, + { + "building_type": "Space Function", + "space_type": "Sports arena playing area class IV facility(4)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Sports arena playing area class IV facility(4)", + "lighting_per_area": 1.20817843866171, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-B-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 500, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Sports arena playing area class IV facility(4)", + "ventilation_per_area": 0.5, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 18.58736059479554, + "occupancy_schedule": "NECB-B-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.13940520446096655, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-B-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-B-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-B-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.008446702, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-B-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-B-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "B", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Sports and Amusement-Ice arenaes (playing areas)" + }, + { + "building_type": "Space Function", + "space_type": "Transportation facility airport concourse", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Transportation facility airport concourse", + "lighting_per_area": 0.362453531598513, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 150, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Transportation facility airport concourse", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001525099, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Transportation-Platforms" + }, + { + "building_type": "Space Function", + "space_type": "Transportation facility baggage/carousel area", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Transportation facility baggage/carousel area", + "lighting_per_area": 0.5297397769516728, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Transportation facility baggage/carousel area", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 4.646840148698885, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.001525099, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Transportation-Platforms" + }, + { + "building_type": "Space Function", + "space_type": "Transportation facility terminal ticket counter", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Transportation facility terminal ticket counter", + "lighting_per_area": 0.8085501858736059, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-H-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 250, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Transportation facility terminal ticket counter", + "ventilation_per_area": 0, + "ventilation_per_person": 15, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 9.29368029739777, + "occupancy_schedule": "NECB-H-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.23234200743494424, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-H-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-H-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-H-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.003050198, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-H-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-H-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "General Area", + "necb_schedule_type": "H", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 100, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Transportation-Platforms" + }, + { + "building_type": "Space Function", + "space_type": "Warehouse storage area medium to bulky palletized items", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Warehouse storage area medium to bulky palletized items", + "lighting_per_area": 0.5762081784386618, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 200, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Warehouse storage area medium to bulky palletized items", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 0.929368029739777, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00030502, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 5, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales floors, and Show Room Floors-Warehouses" + }, + { + "building_type": "Space Function", + "space_type": "Warehouse storage area small hand-carried items(4)", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "Warehouse storage area small hand-carried items(4)", + "lighting_per_area": 0.9479553903345724, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.5, + "personal_control": 0.0, + "occ_sense": 0.67, + "lighting_fraction_to_return_air": 0.0, + "lighting_fraction_radiant": 0.5, + "lighting_fraction_visible": 0.2, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": "NECB-A-Lighting", + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": 300, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_primary_space_type": "Space Function", + "ventilation_secondary_space_type": "Warehouse storage area small hand-carried items(4)", + "ventilation_per_area": 0.05, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": 1.858736059479554, + "occupancy_schedule": "NECB-A-Occupancy", + "occupancy_activity_schedule": "NECB-Activity", + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": 0.0929368029739777, + "electric_equipment_fraction_latent": 0.0, + "electric_equipment_fraction_radiant": 0.5, + "electric_equipment_fraction_lost": 0.0, + "electric_equipment_schedule": "NECB-A-Electric-Equipment", + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": "NECB-A-Thermostat Setpoint-Heating", + "cooling_setpoint_schedule": "NECB-A-Thermostat Setpoint-Cooling", + "service_water_heating_peak_flow_rate": null, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.00061004, + "service_water_heating_target_temperature": 60.0, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": "NECB-A-Service Water Heating", + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": "NECB-A-FAN", + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "Warehouse Area", + "necb_schedule_type": "A", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 5, + "ventilation_occupancy_standard": "ASHRAE 62.1-2001 Table 2", + "ventilation_standard_space_type": "Retail Stores, Sales floors, and Show Room Floors-Warehouses" + }, + { + "building_type": "Space Function", + "space_type": "- undefined -", + "rgb": "255_255_255", + "lighting_standard": "NECB2015", + "lighting_primary_space_type": "Space Function", + "lighting_secondary_space_type": "- undefined -", + "lighting_per_area": 0.0, + "lighting_per_person": null, + "additional_lighting_per_area": null, + "rel_absence_occ": 0.0, + "personal_control": 0.0, + "occ_sense": 0.0, + "lighting_fraction_to_return_air": null, + "lighting_fraction_radiant": null, + "lighting_fraction_visible": null, + "lighting_fraction_replaceable": null, + "lpd_fractionlinear_fluorescent": 1.0, + "lpd_fractioncompact_fluorescent": null, + "lpd_fractionhigh_bay": null, + "lpd_fractionspecialty_lighting": null, + "lpd_fractionexit_lighting": null, + "lighting_schedule": null, + "compact_fluorescent_lighting_schedule": null, + "high_bay_lighting_schedule": null, + "specialty_lighting_schedule": null, + "exit_lighting_schedule": null, + "target_illuminance_setpoint": null, + "target_illuminance_setpoint_ref": "NECB2015 Table A-8.4.3.2.(2)-A", + "psa_nongeometry_fraction": null, + "ssa_nongeometry_fraction": null, + "ventilation_standard": "N/A", + "ventilation_primary_space_type": null, + "ventilation_secondary_space_type": null, + "ventilation_per_area": 0, + "ventilation_per_person": 0, + "ventilation_air_changes": 0, + "minimum_total_air_changes": null, + "occupancy_per_area": null, + "occupancy_schedule": null, + "occupancy_activity_schedule": null, + "infiltration_per_exterior_area": 0.049225, + "infiltration_per_exterior_wall_area": null, + "infiltration_air_changes": null, + "infiltration_schedule": "Always On", + "infiltration_schedule_perimeter": null, + "gas_equipment_per_area": null, + "gas_equipment_fraction_latent": null, + "gas_equipment_fraction_radiant": null, + "gas_equipment_fraction_lost": null, + "gas_equipment_schedule": null, + "electric_equipment_per_area": null, + "electric_equipment_fraction_latent": null, + "electric_equipment_fraction_radiant": null, + "electric_equipment_fraction_lost": null, + "electric_equipment_schedule": null, + "additional_electric_equipment_schedule": null, + "additional_gas_equipment_schedule": null, + "heating_setpoint_schedule": null, + "cooling_setpoint_schedule": null, + "service_water_heating_peak_flow_rate": 0.0, + "service_water_heating_area": null, + "service_water_heating_peak_flow_per_area": 0.0, + "service_water_heating_target_temperature": null, + "service_water_heating_fraction_sensible": null, + "service_water_heating_fraction_latent": null, + "service_water_heating_schedule": null, + "exhaust_per_area": null, + "exhaust_fan_efficiency": null, + "exhaust_fan_power": null, + "exhaust_fan_pressure_rise": null, + "exhaust_fan_maximum_flow_rate": null, + "exhaust_schedule": null, + "balanced_exhaust_fraction_schedule": null, + "is_residential": null, + "necb_hvac_system_selection_type": "- undefined -", + "necb_schedule_type": "- undefined -", + "notes": null, + "ventilation_occupancy_rate_people_per_1000ft2": 0, + "ventilation_occupancy_standard": "N/A", + "ventilation_standard_space_type": "N/A" + } + ] + } + } +} \ No newline at end of file diff --git a/hub/exports/building_energy/idf.py b/hub/exports/building_energy/idf.py index ecc72856..2c4d43c7 100644 --- a/hub/exports/building_energy/idf.py +++ b/hub/exports/building_energy/idf.py @@ -285,11 +285,11 @@ class Idf: self._idf.newidfobject(self._COMPACT_SCHEDULE, **_kwargs) def _write_schedules_file(self, usage, schedule): - file_name = str((Path(self._output_path) / f'{schedule.type} schedules {usage}.dat').resolve()) + file_name = str((Path(self._output_path) / f'{schedule.type} schedules {usage}.csv').resolve()) with open(file_name, 'w', encoding='utf8') as file: for value in schedule.values: file.write(f'{str(value)},\n') - return file_name + return Path(file_name).name def _add_file_schedule(self, usage, schedule, file_name): _schedule = self._idf.newidfobject(self._FILE_SCHEDULE, Name=f'{schedule.type} schedules {usage}') @@ -476,7 +476,7 @@ class Idf: self._idf.newidfobject(self._PEOPLE, Name=f'{zone_name}_occupancy', - Zone_or_ZoneList_Name=zone_name, + Zone_or_ZoneList_or_Space_or_SpaceList_Name=zone_name, Number_of_People_Schedule_Name=f'Occupancy schedules {thermal_zone.usage_name}', Number_of_People_Calculation_Method="People", Number_of_People=number_of_people, @@ -493,7 +493,7 @@ class Idf: self._idf.newidfobject(self._LIGHTS, Name=f'{zone_name}_lights', - Zone_or_ZoneList_Name=zone_name, + Zone_or_ZoneList_or_Space_or_SpaceList_Name=zone_name, Schedule_Name=f'Lighting schedules {thermal_zone.usage_name}', Design_Level_Calculation_Method=method, Watts_per_Zone_Floor_Area=watts_per_zone_floor_area, @@ -512,7 +512,7 @@ class Idf: self._idf.newidfobject(self._APPLIANCES, Fuel_Type=fuel_type, Name=f'{zone_name}_appliance', - Zone_or_ZoneList_Name=zone_name, + Zone_or_ZoneList_or_Space_or_SpaceList_Name=zone_name, Schedule_Name=f'Appliance schedules {thermal_zone.usage_name}', Design_Level_Calculation_Method=method, Power_per_Zone_Floor_Area=watts_per_zone_floor_area, @@ -526,7 +526,7 @@ class Idf: _infiltration = thermal_zone.infiltration_rate_system_off * cte.HOUR_TO_SECONDS self._idf.newidfobject(self._INFILTRATION, Name=f'{zone_name}_infiltration', - Zone_or_ZoneList_Name=zone_name, + Zone_or_ZoneList_or_Space_or_SpaceList_Name=zone_name, Schedule_Name=schedule, Design_Flow_Rate_Calculation_Method='AirChanges/Hour', Air_Changes_per_Hour=_infiltration @@ -537,7 +537,7 @@ class Idf: _air_change = thermal_zone.mechanical_air_change * cte.HOUR_TO_SECONDS self._idf.newidfobject(self._VENTILATION, Name=f'{zone_name}_ventilation', - Zone_or_ZoneList_Name=zone_name, + Zone_or_ZoneList_or_Space_or_SpaceList_Name=zone_name, Schedule_Name=schedule, Design_Flow_Rate_Calculation_Method='AirChanges/Hour', Air_Changes_per_Hour=_air_change @@ -707,8 +707,8 @@ class Idf: self._idf.intersect_match() def _add_shading(self, building): - for surface in building.surfaces: - shading = self._idf.newidfobject(self._SHADING, Name=f'{surface.name}') + for i, surface in enumerate(building.surfaces): + shading = self._idf.newidfobject(self._SHADING, Name=f'{building.name}_{i}') coordinates = self._matrix_to_list(surface.solid_polygon.coordinates, self._city.lower_corner) shading.setcoords(coordinates) @@ -716,17 +716,17 @@ class Idf: if solar_reflectance is None: solar_reflectance = ConfigurationHelper().short_wave_reflectance self._idf.newidfobject(self._SHADING_PROPERTY, - Shading_Surface_Name=f'{surface.name}', + Shading_Surface_Name=f'{building.name}_{i}', Diffuse_Solar_Reflectance_of_Unglazed_Part_of_Shading_Surface=solar_reflectance, Fraction_of_Shading_Surface_That_Is_Glazed=0) def _add_pure_geometry(self, building, zone_name): - for surface in building.surfaces: + for index, surface in enumerate(building.surfaces): outside_boundary_condition = 'Outdoors' sun_exposure = 'SunExposed' wind_exposure = 'WindExposed' idf_surface_type = self.idf_surfaces[surface.type] - _kwargs = {'Name': f'{surface.name}', + _kwargs = {'Name': f'Building_{building.name}_surface_{index}', 'Surface_Type': idf_surface_type, 'Zone_Name': zone_name} if surface.type == cte.GROUND: @@ -735,7 +735,7 @@ class Idf: wind_exposure = 'NoWind' if surface.percentage_shared is not None and surface.percentage_shared > 0.5: outside_boundary_condition = 'Surface' - outside_boundary_condition_object = surface.name + outside_boundary_condition_object = f'Building_{building.name}_surface_{index}' sun_exposure = 'NoSun' wind_exposure = 'NoWind' _kwargs['Outside_Boundary_Condition_Object'] = outside_boundary_condition_object @@ -760,12 +760,12 @@ class Idf: def _add_surfaces(self, building, zone_name): for thermal_zone in building.thermal_zones_from_internal_zones: - for boundary in thermal_zone.thermal_boundaries: + for index, boundary in enumerate(thermal_zone.thermal_boundaries): idf_surface_type = self.idf_surfaces[boundary.parent_surface.type] outside_boundary_condition = 'Outdoors' sun_exposure = 'SunExposed' wind_exposure = 'WindExposed' - _kwargs = {'Name': f'{boundary.parent_surface.name}', + _kwargs = {'Name': f'Building_{building.name}_surface_{index}', 'Surface_Type': idf_surface_type, 'Zone_Name': zone_name} if boundary.parent_surface.type == cte.GROUND: @@ -774,7 +774,7 @@ class Idf: wind_exposure = 'NoWind' if boundary.parent_surface.percentage_shared is not None and boundary.parent_surface.percentage_shared > 0.5: outside_boundary_condition = 'Surface' - outside_boundary_condition_object = boundary.parent_surface.name + outside_boundary_condition_object = f'Building_{building.name}_surface_{index}' sun_exposure = 'NoSun' wind_exposure = 'NoWind' _kwargs['Outside_Boundary_Condition_Object'] = outside_boundary_condition_object diff --git a/hub/exports/building_energy/idf_files/Energy+.idd b/hub/exports/building_energy/idf_files/Energy+.idd index 995a7e0a..40da6796 100644 --- a/hub/exports/building_energy/idf_files/Energy+.idd +++ b/hub/exports/building_energy/idf_files/Energy+.idd @@ -11204,7 +11204,2167 @@ BuildingSurface:Detailed, N361, \field Vertex 120 Y-coordinate \units m \type real - N362; \field Vertex 120 Z-coordinate + N362, \field Vertex 120 Z-coordinate + \units m + \type real + N362, \field Vertex 121 X-coordinate + \units m + \type real + N363, \field Vertex 121 Y-coordinate + \units m + \type real + N364, \field Vertex 121 Z-coordinate + \units m + \type real + N365, \field Vertex 122 X-coordinate + \units m + \type real + N366, \field Vertex 122 Y-coordinate + \units m + \type real + N367, \field Vertex 122 Z-coordinate + \units m + \type real + N368, \field Vertex 123 X-coordinate + \units m + \type real + N369, \field Vertex 123 Y-coordinate + \units m + \type real + N370, \field Vertex 123 Z-coordinate + \units m + \type real + N371, \field Vertex 124 X-coordinate + \units m + \type real + N372, \field Vertex 124 Y-coordinate + \units m + \type real + N373, \field Vertex 124 Z-coordinate + \units m + \type real + N374, \field Vertex 125 X-coordinate + \units m + \type real + N375, \field Vertex 125 Y-coordinate + \units m + \type real + N376, \field Vertex 125 Z-coordinate + \units m + \type real + N377, \field Vertex 126 X-coordinate + \units m + \type real + N378, \field Vertex 126 Y-coordinate + \units m + \type real + N379, \field Vertex 126 Z-coordinate + \units m + \type real + N380, \field Vertex 127 X-coordinate + \units m + \type real + N381, \field Vertex 127 Y-coordinate + \units m + \type real + N382, \field Vertex 127 Z-coordinate + \units m + \type real + N383, \field Vertex 128 X-coordinate + \units m + \type real + N384, \field Vertex 128 Y-coordinate + \units m + \type real + N385, \field Vertex 128 Z-coordinate + \units m + \type real + N386, \field Vertex 129 X-coordinate + \units m + \type real + N387, \field Vertex 129 Y-coordinate + \units m + \type real + N388, \field Vertex 129 Z-coordinate + \units m + \type real + N389, \field Vertex 130 X-coordinate + \units m + \type real + N390, \field Vertex 130 Y-coordinate + \units m + \type real + N391, \field Vertex 130 Z-coordinate + \units m + \type real + N392, \field Vertex 131 X-coordinate + \units m + \type real + N393, \field Vertex 131 Y-coordinate + \units m + \type real + N394, \field Vertex 131 Z-coordinate + \units m + \type real + N395, \field Vertex 132 X-coordinate + \units m + \type real + N396, \field Vertex 132 Y-coordinate + \units m + \type real + N397, \field Vertex 132 Z-coordinate + \units m + \type real + N398, \field Vertex 133 X-coordinate + \units m + \type real + N399, \field Vertex 133 Y-coordinate + \units m + \type real + N400, \field Vertex 133 Z-coordinate + \units m + \type real + N401, \field Vertex 134 X-coordinate + \units m + \type real + N402, \field Vertex 134 Y-coordinate + \units m + \type real + N403, \field Vertex 134 Z-coordinate + \units m + \type real + N404, \field Vertex 135 X-coordinate + \units m + \type real + N405, \field Vertex 135 Y-coordinate + \units m + \type real + N406, \field Vertex 135 Z-coordinate + \units m + \type real + N407, \field Vertex 136 X-coordinate + \units m + \type real + N408, \field Vertex 136 Y-coordinate + \units m + \type real + N409, \field Vertex 136 Z-coordinate + \units m + \type real + N410, \field Vertex 137 X-coordinate + \units m + \type real + N411, \field Vertex 137 Y-coordinate + \units m + \type real + N412, \field Vertex 137 Z-coordinate + \units m + \type real + N413, \field Vertex 138 X-coordinate + \units m + \type real + N414, \field Vertex 138 Y-coordinate + \units m + \type real + N415, \field Vertex 138 Z-coordinate + \units m + \type real + N416, \field Vertex 139 X-coordinate + \units m + \type real + N417, \field Vertex 139 Y-coordinate + \units m + \type real + N418, \field Vertex 139 Z-coordinate + \units m + \type real + N419, \field Vertex 140 X-coordinate + \units m + \type real + N420, \field Vertex 140 Y-coordinate + \units m + \type real + N421, \field Vertex 140 Z-coordinate + \units m + \type real + N422, \field Vertex 141 X-coordinate + \units m + \type real + N423, \field Vertex 141 Y-coordinate + \units m + \type real + N424, \field Vertex 141 Z-coordinate + \units m + \type real + N425, \field Vertex 142 X-coordinate + \units m + \type real + N426, \field Vertex 142 Y-coordinate + \units m + \type real + N427, \field Vertex 142 Z-coordinate + \units m + \type real + N428, \field Vertex 143 X-coordinate + \units m + \type real + N429, \field Vertex 143 Y-coordinate + \units m + \type real + N430, \field Vertex 143 Z-coordinate + \units m + \type real + N431, \field Vertex 144 X-coordinate + \units m + \type real + N432, \field Vertex 144 Y-coordinate + \units m + \type real + N433, \field Vertex 144 Z-coordinate + \units m + \type real + N434, \field Vertex 145 X-coordinate + \units m + \type real + N435, \field Vertex 145 Y-coordinate + \units m + \type real + N436, \field Vertex 145 Z-coordinate + \units m + \type real + N437, \field Vertex 146 X-coordinate + \units m + \type real + N438, \field Vertex 146 Y-coordinate + \units m + \type real + N439, \field Vertex 146 Z-coordinate + \units m + \type real + N440, \field Vertex 147 X-coordinate + \units m + \type real + N441, \field Vertex 147 Y-coordinate + \units m + \type real + N442, \field Vertex 147 Z-coordinate + \units m + \type real + N443, \field Vertex 148 X-coordinate + \units m + \type real + N444, \field Vertex 148 Y-coordinate + \units m + \type real + N445, \field Vertex 148 Z-coordinate + \units m + \type real + N446, \field Vertex 149 X-coordinate + \units m + \type real + N447, \field Vertex 149 Y-coordinate + \units m + \type real + N448, \field Vertex 149 Z-coordinate + \units m + \type real + N449, \field Vertex 150 X-coordinate + \units m + \type real + N450, \field Vertex 150 Y-coordinate + \units m + \type real + N451, \field Vertex 150 Z-coordinate + \units m + \type real + N452, \field Vertex 151 X-coordinate + \units m + \type real + N453, \field Vertex 151 Y-coordinate + \units m + \type real + N454, \field Vertex 151 Z-coordinate + \units m + \type real + N455, \field Vertex 152 X-coordinate + \units m + \type real + N456, \field Vertex 152 Y-coordinate + \units m + \type real + N457, \field Vertex 152 Z-coordinate + \units m + \type real + N458, \field Vertex 153 X-coordinate + \units m + \type real + N459, \field Vertex 153 Y-coordinate + \units m + \type real + N460, \field Vertex 153 Z-coordinate + \units m + \type real + N461, \field Vertex 154 X-coordinate + \units m + \type real + N462, \field Vertex 154 Y-coordinate + \units m + \type real + N463, \field Vertex 154 Z-coordinate + \units m + \type real + N464, \field Vertex 155 X-coordinate + \units m + \type real + N465, \field Vertex 155 Y-coordinate + \units m + \type real + N466, \field Vertex 155 Z-coordinate + \units m + \type real + N467, \field Vertex 156 X-coordinate + \units m + \type real + N468, \field Vertex 156 Y-coordinate + \units m + \type real + N469, \field Vertex 156 Z-coordinate + \units m + \type real + N470, \field Vertex 157 X-coordinate + \units m + \type real + N471, \field Vertex 157 Y-coordinate + \units m + \type real + N472, \field Vertex 157 Z-coordinate + \units m + \type real + N473, \field Vertex 158 X-coordinate + \units m + \type real + N474, \field Vertex 158 Y-coordinate + \units m + \type real + N475, \field Vertex 158 Z-coordinate + \units m + \type real + N476, \field Vertex 159 X-coordinate + \units m + \type real + N477, \field Vertex 159 Y-coordinate + \units m + \type real + N478, \field Vertex 159 Z-coordinate + \units m + \type real + N479, \field Vertex 160 X-coordinate + \units m + \type real + N480, \field Vertex 160 Y-coordinate + \units m + \type real + N481, \field Vertex 160 Z-coordinate + \units m + \type real + N482, \field Vertex 161 X-coordinate + \units m + \type real + N483, \field Vertex 161 Y-coordinate + \units m + \type real + N484, \field Vertex 161 Z-coordinate + \units m + \type real + N485, \field Vertex 162 X-coordinate + \units m + \type real + N486, \field Vertex 162 Y-coordinate + \units m + \type real + N487, \field Vertex 162 Z-coordinate + \units m + \type real + N488, \field Vertex 163 X-coordinate + \units m + \type real + N489, \field Vertex 163 Y-coordinate + \units m + \type real + N490, \field Vertex 163 Z-coordinate + \units m + \type real + N491, \field Vertex 164 X-coordinate + \units m + \type real + N492, \field Vertex 164 Y-coordinate + \units m + \type real + N493, \field Vertex 164 Z-coordinate + \units m + \type real + N494, \field Vertex 165 X-coordinate + \units m + \type real + N495, \field Vertex 165 Y-coordinate + \units m + \type real + N496, \field Vertex 165 Z-coordinate + \units m + \type real + N497, \field Vertex 166 X-coordinate + \units m + \type real + N498, \field Vertex 166 Y-coordinate + \units m + \type real + N499, \field Vertex 166 Z-coordinate + \units m + \type real + N500, \field Vertex 167 X-coordinate + \units m + \type real + N501, \field Vertex 167 Y-coordinate + \units m + \type real + N502, \field Vertex 167 Z-coordinate + \units m + \type real + N503, \field Vertex 168 X-coordinate + \units m + \type real + N504, \field Vertex 168 Y-coordinate + \units m + \type real + N505, \field Vertex 168 Z-coordinate + \units m + \type real + N506, \field Vertex 169 X-coordinate + \units m + \type real + N507, \field Vertex 169 Y-coordinate + \units m + \type real + N508, \field Vertex 169 Z-coordinate + \units m + \type real + N509, \field Vertex 170 X-coordinate + \units m + \type real + N510, \field Vertex 170 Y-coordinate + \units m + \type real + N511, \field Vertex 170 Z-coordinate + \units m + \type real + N512, \field Vertex 171 X-coordinate + \units m + \type real + N513, \field Vertex 171 Y-coordinate + \units m + \type real + N514, \field Vertex 171 Z-coordinate + \units m + \type real + N515, \field Vertex 172 X-coordinate + \units m + \type real + N516, \field Vertex 172 Y-coordinate + \units m + \type real + N517, \field Vertex 172 Z-coordinate + \units m + \type real + N518, \field Vertex 173 X-coordinate + \units m + \type real + N519, \field Vertex 173 Y-coordinate + \units m + \type real + N520, \field Vertex 173 Z-coordinate + \units m + \type real + N521, \field Vertex 174 X-coordinate + \units m + \type real + N522, \field Vertex 174 Y-coordinate + \units m + \type real + N523, \field Vertex 174 Z-coordinate + \units m + \type real + N524, \field Vertex 175 X-coordinate + \units m + \type real + N525, \field Vertex 175 Y-coordinate + \units m + \type real + N526, \field Vertex 175 Z-coordinate + \units m + \type real + N527, \field Vertex 176 X-coordinate + \units m + \type real + N528, \field Vertex 176 Y-coordinate + \units m + \type real + N529, \field Vertex 176 Z-coordinate + \units m + \type real + N530, \field Vertex 177 X-coordinate + \units m + \type real + N531, \field Vertex 177 Y-coordinate + \units m + \type real + N532, \field Vertex 177 Z-coordinate + \units m + \type real + N533, \field Vertex 178 X-coordinate + \units m + \type real + N534, \field Vertex 178 Y-coordinate + \units m + \type real + N535, \field Vertex 178 Z-coordinate + \units m + \type real + N536, \field Vertex 179 X-coordinate + \units m + \type real + N537, \field Vertex 179 Y-coordinate + \units m + \type real + N538, \field Vertex 179 Z-coordinate + \units m + \type real + N539, \field Vertex 180 X-coordinate + \units m + \type real + N540, \field Vertex 180 Y-coordinate + \units m + \type real + N541, \field Vertex 180 Z-coordinate + \units m + \type real + N542, \field Vertex 181 X-coordinate + \units m + \type real + N543, \field Vertex 181 Y-coordinate + \units m + \type real + N544, \field Vertex 181 Z-coordinate + \units m + \type real + N545, \field Vertex 182 X-coordinate + \units m + \type real + N546, \field Vertex 182 Y-coordinate + \units m + \type real + N547, \field Vertex 182 Z-coordinate + \units m + \type real + N548, \field Vertex 183 X-coordinate + \units m + \type real + N549, \field Vertex 183 Y-coordinate + \units m + \type real + N550, \field Vertex 183 Z-coordinate + \units m + \type real + N551, \field Vertex 184 X-coordinate + \units m + \type real + N552, \field Vertex 184 Y-coordinate + \units m + \type real + N553, \field Vertex 184 Z-coordinate + \units m + \type real + N554, \field Vertex 185 X-coordinate + \units m + \type real + N555, \field Vertex 185 Y-coordinate + \units m + \type real + N556, \field Vertex 185 Z-coordinate + \units m + \type real + N557, \field Vertex 186 X-coordinate + \units m + \type real + N558, \field Vertex 186 Y-coordinate + \units m + \type real + N559, \field Vertex 186 Z-coordinate + \units m + \type real + N560, \field Vertex 187 X-coordinate + \units m + \type real + N561, \field Vertex 187 Y-coordinate + \units m + \type real + N562, \field Vertex 187 Z-coordinate + \units m + \type real + N563, \field Vertex 188 X-coordinate + \units m + \type real + N564, \field Vertex 188 Y-coordinate + \units m + \type real + N565, \field Vertex 188 Z-coordinate + \units m + \type real + N566, \field Vertex 189 X-coordinate + \units m + \type real + N567, \field Vertex 189 Y-coordinate + \units m + \type real + N568, \field Vertex 189 Z-coordinate + \units m + \type real + N569, \field Vertex 190 X-coordinate + \units m + \type real + N570, \field Vertex 190 Y-coordinate + \units m + \type real + N571, \field Vertex 190 Z-coordinate + \units m + \type real + N572, \field Vertex 191 X-coordinate + \units m + \type real + N573, \field Vertex 191 Y-coordinate + \units m + \type real + N574, \field Vertex 191 Z-coordinate + \units m + \type real + N575, \field Vertex 192 X-coordinate + \units m + \type real + N576, \field Vertex 192 Y-coordinate + \units m + \type real + N577, \field Vertex 192 Z-coordinate + \units m + \type real + N578, \field Vertex 193 X-coordinate + \units m + \type real + N579, \field Vertex 193 Y-coordinate + \units m + \type real + N580, \field Vertex 193 Z-coordinate + \units m + \type real + N581, \field Vertex 194 X-coordinate + \units m + \type real + N582, \field Vertex 194 Y-coordinate + \units m + \type real + N583, \field Vertex 194 Z-coordinate + \units m + \type real + N584, \field Vertex 195 X-coordinate + \units m + \type real + N585, \field Vertex 195 Y-coordinate + \units m + \type real + N586, \field Vertex 195 Z-coordinate + \units m + \type real + N587, \field Vertex 196 X-coordinate + \units m + \type real + N588, \field Vertex 196 Y-coordinate + \units m + \type real + N589, \field Vertex 196 Z-coordinate + \units m + \type real + N590, \field Vertex 197 X-coordinate + \units m + \type real + N591, \field Vertex 197 Y-coordinate + \units m + \type real + N592, \field Vertex 197 Z-coordinate + \units m + \type real + N593, \field Vertex 198 X-coordinate + \units m + \type real + N594, \field Vertex 198 Y-coordinate + \units m + \type real + N595, \field Vertex 198 Z-coordinate + \units m + \type real + N596, \field Vertex 199 X-coordinate + \units m + \type real + N597, \field Vertex 199 Y-coordinate + \units m + \type real + N598, \field Vertex 199 Z-coordinate + \units m + \type real + N599, \field Vertex 200 X-coordinate + \units m + \type real + N600, \field Vertex 200 Y-coordinate + \units m + \type real + N601, \field Vertex 200 Z-coordinate + \units m + \type real + N602, \field Vertex 201 X-coordinate + \units m + \type real + N603, \field Vertex 201 Y-coordinate + \units m + \type real + N604, \field Vertex 201 Z-coordinate + \units m + \type real + N605, \field Vertex 202 X-coordinate + \units m + \type real + N606, \field Vertex 202 Y-coordinate + \units m + \type real + N607, \field Vertex 202 Z-coordinate + \units m + \type real + N608, \field Vertex 203 X-coordinate + \units m + \type real + N609, \field Vertex 203 Y-coordinate + \units m + \type real + N610, \field Vertex 203 Z-coordinate + \units m + \type real + N611, \field Vertex 204 X-coordinate + \units m + \type real + N612, \field Vertex 204 Y-coordinate + \units m + \type real + N613, \field Vertex 204 Z-coordinate + \units m + \type real + N614, \field Vertex 205 X-coordinate + \units m + \type real + N615, \field Vertex 205 Y-coordinate + \units m + \type real + N616, \field Vertex 205 Z-coordinate + \units m + \type real + N617, \field Vertex 206 X-coordinate + \units m + \type real + N618, \field Vertex 206 Y-coordinate + \units m + \type real + N619, \field Vertex 206 Z-coordinate + \units m + \type real + N620, \field Vertex 207 X-coordinate + \units m + \type real + N621, \field Vertex 207 Y-coordinate + \units m + \type real + N622, \field Vertex 207 Z-coordinate + \units m + \type real + N623, \field Vertex 208 X-coordinate + \units m + \type real + N624, \field Vertex 208 Y-coordinate + \units m + \type real + N625, \field Vertex 208 Z-coordinate + \units m + \type real + N626, \field Vertex 209 X-coordinate + \units m + \type real + N627, \field Vertex 209 Y-coordinate + \units m + \type real + N628, \field Vertex 209 Z-coordinate + \units m + \type real + N629, \field Vertex 210 X-coordinate + \units m + \type real + N630, \field Vertex 210 Y-coordinate + \units m + \type real + N631, \field Vertex 210 Z-coordinate + \units m + \type real + N632, \field Vertex 211 X-coordinate + \units m + \type real + N633, \field Vertex 211 Y-coordinate + \units m + \type real + N634, \field Vertex 211 Z-coordinate + \units m + \type real + N635, \field Vertex 212 X-coordinate + \units m + \type real + N636, \field Vertex 212 Y-coordinate + \units m + \type real + N637, \field Vertex 212 Z-coordinate + \units m + \type real + N638, \field Vertex 213 X-coordinate + \units m + \type real + N639, \field Vertex 213 Y-coordinate + \units m + \type real + N640, \field Vertex 213 Z-coordinate + \units m + \type real + N641, \field Vertex 214 X-coordinate + \units m + \type real + N642, \field Vertex 214 Y-coordinate + \units m + \type real + N643, \field Vertex 214 Z-coordinate + \units m + \type real + N644, \field Vertex 215 X-coordinate + \units m + \type real + N645, \field Vertex 215 Y-coordinate + \units m + \type real + N646, \field Vertex 215 Z-coordinate + \units m + \type real + N647, \field Vertex 216 X-coordinate + \units m + \type real + N648, \field Vertex 216 Y-coordinate + \units m + \type real + N649, \field Vertex 216 Z-coordinate + \units m + \type real + N650, \field Vertex 217 X-coordinate + \units m + \type real + N651, \field Vertex 217 Y-coordinate + \units m + \type real + N652, \field Vertex 217 Z-coordinate + \units m + \type real + N653, \field Vertex 218 X-coordinate + \units m + \type real + N654, \field Vertex 218 Y-coordinate + \units m + \type real + N655, \field Vertex 218 Z-coordinate + \units m + \type real + N656, \field Vertex 219 X-coordinate + \units m + \type real + N657, \field Vertex 219 Y-coordinate + \units m + \type real + N658, \field Vertex 219 Z-coordinate + \units m + \type real + N659, \field Vertex 220 X-coordinate + \units m + \type real + N660, \field Vertex 220 Y-coordinate + \units m + \type real + N661, \field Vertex 220 Z-coordinate + \units m + \type real + N662, \field Vertex 221 X-coordinate + \units m + \type real + N663, \field Vertex 221 Y-coordinate + \units m + \type real + N664, \field Vertex 221 Z-coordinate + \units m + \type real + N665, \field Vertex 222 X-coordinate + \units m + \type real + N666, \field Vertex 222 Y-coordinate + \units m + \type real + N667, \field Vertex 222 Z-coordinate + \units m + \type real + N668, \field Vertex 223 X-coordinate + \units m + \type real + N669, \field Vertex 223 Y-coordinate + \units m + \type real + N670, \field Vertex 223 Z-coordinate + \units m + \type real + N671, \field Vertex 224 X-coordinate + \units m + \type real + N672, \field Vertex 224 Y-coordinate + \units m + \type real + N673, \field Vertex 224 Z-coordinate + \units m + \type real + N674, \field Vertex 225 X-coordinate + \units m + \type real + N675, \field Vertex 225 Y-coordinate + \units m + \type real + N676, \field Vertex 225 Z-coordinate + \units m + \type real + N677, \field Vertex 226 X-coordinate + \units m + \type real + N678, \field Vertex 226 Y-coordinate + \units m + \type real + N679, \field Vertex 226 Z-coordinate + \units m + \type real + N680, \field Vertex 227 X-coordinate + \units m + \type real + N681, \field Vertex 227 Y-coordinate + \units m + \type real + N682, \field Vertex 227 Z-coordinate + \units m + \type real + N683, \field Vertex 228 X-coordinate + \units m + \type real + N684, \field Vertex 228 Y-coordinate + \units m + \type real + N685, \field Vertex 228 Z-coordinate + \units m + \type real + N686, \field Vertex 229 X-coordinate + \units m + \type real + N687, \field Vertex 229 Y-coordinate + \units m + \type real + N688, \field Vertex 229 Z-coordinate + \units m + \type real + N689, \field Vertex 230 X-coordinate + \units m + \type real + N690, \field Vertex 230 Y-coordinate + \units m + \type real + N691, \field Vertex 230 Z-coordinate + \units m + \type real + N692, \field Vertex 231 X-coordinate + \units m + \type real + N693, \field Vertex 231 Y-coordinate + \units m + \type real + N694, \field Vertex 231 Z-coordinate + \units m + \type real + N695, \field Vertex 232 X-coordinate + \units m + \type real + N696, \field Vertex 232 Y-coordinate + \units m + \type real + N697, \field Vertex 232 Z-coordinate + \units m + \type real + N698, \field Vertex 233 X-coordinate + \units m + \type real + N699, \field Vertex 233 Y-coordinate + \units m + \type real + N700, \field Vertex 233 Z-coordinate + \units m + \type real + N701, \field Vertex 234 X-coordinate + \units m + \type real + N702, \field Vertex 234 Y-coordinate + \units m + \type real + N703, \field Vertex 234 Z-coordinate + \units m + \type real + N704, \field Vertex 235 X-coordinate + \units m + \type real + N705, \field Vertex 235 Y-coordinate + \units m + \type real + N706, \field Vertex 235 Z-coordinate + \units m + \type real + N707, \field Vertex 236 X-coordinate + \units m + \type real + N708, \field Vertex 236 Y-coordinate + \units m + \type real + N709, \field Vertex 236 Z-coordinate + \units m + \type real + N710, \field Vertex 237 X-coordinate + \units m + \type real + N711, \field Vertex 237 Y-coordinate + \units m + \type real + N712, \field Vertex 237 Z-coordinate + \units m + \type real + N713, \field Vertex 238 X-coordinate + \units m + \type real + N714, \field Vertex 238 Y-coordinate + \units m + \type real + N715, \field Vertex 238 Z-coordinate + \units m + \type real + N716, \field Vertex 239 X-coordinate + \units m + \type real + N717, \field Vertex 239 Y-coordinate + \units m + \type real + N718, \field Vertex 239 Z-coordinate + \units m + \type real + N719, \field Vertex 240 X-coordinate + \units m + \type real + N720, \field Vertex 240 Y-coordinate + \units m + \type real + N721, \field Vertex 240 Z-coordinate + \units m + \type real + N722, \field Vertex 241 X-coordinate + \units m + \type real + N723, \field Vertex 241 Y-coordinate + \units m + \type real + N724, \field Vertex 241 Z-coordinate + \units m + \type real + N725, \field Vertex 242 X-coordinate + \units m + \type real + N726, \field Vertex 242 Y-coordinate + \units m + \type real + N727, \field Vertex 242 Z-coordinate + \units m + \type real + N728, \field Vertex 243 X-coordinate + \units m + \type real + N729, \field Vertex 243 Y-coordinate + \units m + \type real + N730, \field Vertex 243 Z-coordinate + \units m + \type real + N731, \field Vertex 244 X-coordinate + \units m + \type real + N732, \field Vertex 244 Y-coordinate + \units m + \type real + N733, \field Vertex 244 Z-coordinate + \units m + \type real + N734, \field Vertex 245 X-coordinate + \units m + \type real + N735, \field Vertex 245 Y-coordinate + \units m + \type real + N736, \field Vertex 245 Z-coordinate + \units m + \type real + N737, \field Vertex 246 X-coordinate + \units m + \type real + N738, \field Vertex 246 Y-coordinate + \units m + \type real + N739, \field Vertex 246 Z-coordinate + \units m + \type real + N740, \field Vertex 247 X-coordinate + \units m + \type real + N741, \field Vertex 247 Y-coordinate + \units m + \type real + N742, \field Vertex 247 Z-coordinate + \units m + \type real + N743, \field Vertex 248 X-coordinate + \units m + \type real + N744, \field Vertex 248 Y-coordinate + \units m + \type real + N745, \field Vertex 248 Z-coordinate + \units m + \type real + N746, \field Vertex 249 X-coordinate + \units m + \type real + N747, \field Vertex 249 Y-coordinate + \units m + \type real + N748, \field Vertex 249 Z-coordinate + \units m + \type real + N749, \field Vertex 250 X-coordinate + \units m + \type real + N750, \field Vertex 250 Y-coordinate + \units m + \type real + N751, \field Vertex 250 Z-coordinate + \units m + \type real + N752, \field Vertex 251 X-coordinate + \units m + \type real + N753, \field Vertex 251 Y-coordinate + \units m + \type real + N754, \field Vertex 251 Z-coordinate + \units m + \type real + N755, \field Vertex 252 X-coordinate + \units m + \type real + N756, \field Vertex 252 Y-coordinate + \units m + \type real + N757, \field Vertex 252 Z-coordinate + \units m + \type real + N758, \field Vertex 253 X-coordinate + \units m + \type real + N759, \field Vertex 253 Y-coordinate + \units m + \type real + N760, \field Vertex 253 Z-coordinate + \units m + \type real + N761, \field Vertex 254 X-coordinate + \units m + \type real + N762, \field Vertex 254 Y-coordinate + \units m + \type real + N763, \field Vertex 254 Z-coordinate + \units m + \type real + N764, \field Vertex 255 X-coordinate + \units m + \type real + N765, \field Vertex 255 Y-coordinate + \units m + \type real + N766, \field Vertex 255 Z-coordinate + \units m + \type real + N767, \field Vertex 256 X-coordinate + \units m + \type real + N768, \field Vertex 256 Y-coordinate + \units m + \type real + N769, \field Vertex 256 Z-coordinate + \units m + \type real + N770, \field Vertex 257 X-coordinate + \units m + \type real + N771, \field Vertex 257 Y-coordinate + \units m + \type real + N772, \field Vertex 257 Z-coordinate + \units m + \type real + N773, \field Vertex 258 X-coordinate + \units m + \type real + N774, \field Vertex 258 Y-coordinate + \units m + \type real + N775, \field Vertex 258 Z-coordinate + \units m + \type real + N776, \field Vertex 259 X-coordinate + \units m + \type real + N777, \field Vertex 259 Y-coordinate + \units m + \type real + N778, \field Vertex 259 Z-coordinate + \units m + \type real + N779, \field Vertex 260 X-coordinate + \units m + \type real + N780, \field Vertex 260 Y-coordinate + \units m + \type real + N781, \field Vertex 260 Z-coordinate + \units m + \type real + N782, \field Vertex 261 X-coordinate + \units m + \type real + N783, \field Vertex 261 Y-coordinate + \units m + \type real + N784, \field Vertex 261 Z-coordinate + \units m + \type real + N785, \field Vertex 262 X-coordinate + \units m + \type real + N786, \field Vertex 262 Y-coordinate + \units m + \type real + N787, \field Vertex 262 Z-coordinate + \units m + \type real + N788, \field Vertex 263 X-coordinate + \units m + \type real + N789, \field Vertex 263 Y-coordinate + \units m + \type real + N790, \field Vertex 263 Z-coordinate + \units m + \type real + N791, \field Vertex 264 X-coordinate + \units m + \type real + N792, \field Vertex 264 Y-coordinate + \units m + \type real + N793, \field Vertex 264 Z-coordinate + \units m + \type real + N794, \field Vertex 265 X-coordinate + \units m + \type real + N795, \field Vertex 265 Y-coordinate + \units m + \type real + N796, \field Vertex 265 Z-coordinate + \units m + \type real + N797, \field Vertex 266 X-coordinate + \units m + \type real + N798, \field Vertex 266 Y-coordinate + \units m + \type real + N799, \field Vertex 266 Z-coordinate + \units m + \type real + N800, \field Vertex 267 X-coordinate + \units m + \type real + N801, \field Vertex 267 Y-coordinate + \units m + \type real + N802, \field Vertex 267 Z-coordinate + \units m + \type real + N803, \field Vertex 268 X-coordinate + \units m + \type real + N804, \field Vertex 268 Y-coordinate + \units m + \type real + N805, \field Vertex 268 Z-coordinate + \units m + \type real + N806, \field Vertex 269 X-coordinate + \units m + \type real + N807, \field Vertex 269 Y-coordinate + \units m + \type real + N808, \field Vertex 269 Z-coordinate + \units m + \type real + N809, \field Vertex 270 X-coordinate + \units m + \type real + N810, \field Vertex 270 Y-coordinate + \units m + \type real + N811, \field Vertex 270 Z-coordinate + \units m + \type real + N812, \field Vertex 271 X-coordinate + \units m + \type real + N813, \field Vertex 271 Y-coordinate + \units m + \type real + N814, \field Vertex 271 Z-coordinate + \units m + \type real + N815, \field Vertex 272 X-coordinate + \units m + \type real + N816, \field Vertex 272 Y-coordinate + \units m + \type real + N817, \field Vertex 272 Z-coordinate + \units m + \type real + N818, \field Vertex 273 X-coordinate + \units m + \type real + N819, \field Vertex 273 Y-coordinate + \units m + \type real + N820, \field Vertex 273 Z-coordinate + \units m + \type real + N821, \field Vertex 274 X-coordinate + \units m + \type real + N822, \field Vertex 274 Y-coordinate + \units m + \type real + N823, \field Vertex 274 Z-coordinate + \units m + \type real + N824, \field Vertex 275 X-coordinate + \units m + \type real + N825, \field Vertex 275 Y-coordinate + \units m + \type real + N826, \field Vertex 275 Z-coordinate + \units m + \type real + N827, \field Vertex 276 X-coordinate + \units m + \type real + N828, \field Vertex 276 Y-coordinate + \units m + \type real + N829, \field Vertex 276 Z-coordinate + \units m + \type real + N830, \field Vertex 277 X-coordinate + \units m + \type real + N831, \field Vertex 277 Y-coordinate + \units m + \type real + N832, \field Vertex 277 Z-coordinate + \units m + \type real + N833, \field Vertex 278 X-coordinate + \units m + \type real + N834, \field Vertex 278 Y-coordinate + \units m + \type real + N835, \field Vertex 278 Z-coordinate + \units m + \type real + N836, \field Vertex 279 X-coordinate + \units m + \type real + N837, \field Vertex 279 Y-coordinate + \units m + \type real + N838, \field Vertex 279 Z-coordinate + \units m + \type real + N839, \field Vertex 280 X-coordinate + \units m + \type real + N840, \field Vertex 280 Y-coordinate + \units m + \type real + N841, \field Vertex 280 Z-coordinate + \units m + \type real + N842, \field Vertex 281 X-coordinate + \units m + \type real + N843, \field Vertex 281 Y-coordinate + \units m + \type real + N844, \field Vertex 281 Z-coordinate + \units m + \type real + N845, \field Vertex 282 X-coordinate + \units m + \type real + N846, \field Vertex 282 Y-coordinate + \units m + \type real + N847, \field Vertex 282 Z-coordinate + \units m + \type real + N848, \field Vertex 283 X-coordinate + \units m + \type real + N849, \field Vertex 283 Y-coordinate + \units m + \type real + N850, \field Vertex 283 Z-coordinate + \units m + \type real + N851, \field Vertex 284 X-coordinate + \units m + \type real + N852, \field Vertex 284 Y-coordinate + \units m + \type real + N853, \field Vertex 284 Z-coordinate + \units m + \type real + N854, \field Vertex 285 X-coordinate + \units m + \type real + N855, \field Vertex 285 Y-coordinate + \units m + \type real + N856, \field Vertex 285 Z-coordinate + \units m + \type real + N857, \field Vertex 286 X-coordinate + \units m + \type real + N858, \field Vertex 286 Y-coordinate + \units m + \type real + N859, \field Vertex 286 Z-coordinate + \units m + \type real + N860, \field Vertex 287 X-coordinate + \units m + \type real + N861, \field Vertex 287 Y-coordinate + \units m + \type real + N862, \field Vertex 287 Z-coordinate + \units m + \type real + N863, \field Vertex 288 X-coordinate + \units m + \type real + N864, \field Vertex 288 Y-coordinate + \units m + \type real + N865, \field Vertex 288 Z-coordinate + \units m + \type real + N866, \field Vertex 289 X-coordinate + \units m + \type real + N867, \field Vertex 289 Y-coordinate + \units m + \type real + N868, \field Vertex 289 Z-coordinate + \units m + \type real + N869, \field Vertex 290 X-coordinate + \units m + \type real + N870, \field Vertex 290 Y-coordinate + \units m + \type real + N871, \field Vertex 290 Z-coordinate + \units m + \type real + N872, \field Vertex 291 X-coordinate + \units m + \type real + N873, \field Vertex 291 Y-coordinate + \units m + \type real + N874, \field Vertex 291 Z-coordinate + \units m + \type real + N875, \field Vertex 292 X-coordinate + \units m + \type real + N876, \field Vertex 292 Y-coordinate + \units m + \type real + N877, \field Vertex 292 Z-coordinate + \units m + \type real + N878, \field Vertex 293 X-coordinate + \units m + \type real + N879, \field Vertex 293 Y-coordinate + \units m + \type real + N880, \field Vertex 293 Z-coordinate + \units m + \type real + N881, \field Vertex 294 X-coordinate + \units m + \type real + N882, \field Vertex 294 Y-coordinate + \units m + \type real + N883, \field Vertex 294 Z-coordinate + \units m + \type real + N884, \field Vertex 295 X-coordinate + \units m + \type real + N885, \field Vertex 295 Y-coordinate + \units m + \type real + N886, \field Vertex 295 Z-coordinate + \units m + \type real + N887, \field Vertex 296 X-coordinate + \units m + \type real + N888, \field Vertex 296 Y-coordinate + \units m + \type real + N889, \field Vertex 296 Z-coordinate + \units m + \type real + N890, \field Vertex 297 X-coordinate + \units m + \type real + N891, \field Vertex 297 Y-coordinate + \units m + \type real + N892, \field Vertex 297 Z-coordinate + \units m + \type real + N893, \field Vertex 298 X-coordinate + \units m + \type real + N894, \field Vertex 298 Y-coordinate + \units m + \type real + N895, \field Vertex 298 Z-coordinate + \units m + \type real + N896, \field Vertex 299 X-coordinate + \units m + \type real + N897, \field Vertex 299 Y-coordinate + \units m + \type real + N898, \field Vertex 299 Z-coordinate + \units m + \type real + N899, \field Vertex 300 X-coordinate + \units m + \type real + N900, \field Vertex 300 Y-coordinate + \units m + \type real + N901, \field Vertex 300 Z-coordinate + \units m + \type real + N902, \field Vertex 301 X-coordinate + \units m + \type real + N903, \field Vertex 301 Y-coordinate + \units m + \type real + N904, \field Vertex 301 Z-coordinate + \units m + \type real + N905, \field Vertex 302 X-coordinate + \units m + \type real + N906, \field Vertex 302 Y-coordinate + \units m + \type real + N907, \field Vertex 302 Z-coordinate + \units m + \type real + N908, \field Vertex 303 X-coordinate + \units m + \type real + N909, \field Vertex 303 Y-coordinate + \units m + \type real + N910, \field Vertex 303 Z-coordinate + \units m + \type real + N911, \field Vertex 304 X-coordinate + \units m + \type real + N912, \field Vertex 304 Y-coordinate + \units m + \type real + N913, \field Vertex 304 Z-coordinate + \units m + \type real + N914, \field Vertex 305 X-coordinate + \units m + \type real + N915, \field Vertex 305 Y-coordinate + \units m + \type real + N916, \field Vertex 305 Z-coordinate + \units m + \type real + N917, \field Vertex 306 X-coordinate + \units m + \type real + N918, \field Vertex 306 Y-coordinate + \units m + \type real + N919, \field Vertex 306 Z-coordinate + \units m + \type real + N920, \field Vertex 307 X-coordinate + \units m + \type real + N921, \field Vertex 307 Y-coordinate + \units m + \type real + N922, \field Vertex 307 Z-coordinate + \units m + \type real + N923, \field Vertex 308 X-coordinate + \units m + \type real + N924, \field Vertex 308 Y-coordinate + \units m + \type real + N925, \field Vertex 308 Z-coordinate + \units m + \type real + N926, \field Vertex 309 X-coordinate + \units m + \type real + N927, \field Vertex 309 Y-coordinate + \units m + \type real + N928, \field Vertex 309 Z-coordinate + \units m + \type real + N929, \field Vertex 310 X-coordinate + \units m + \type real + N930, \field Vertex 310 Y-coordinate + \units m + \type real + N931, \field Vertex 310 Z-coordinate + \units m + \type real + N932, \field Vertex 311 X-coordinate + \units m + \type real + N933, \field Vertex 311 Y-coordinate + \units m + \type real + N934, \field Vertex 311 Z-coordinate + \units m + \type real + N935, \field Vertex 312 X-coordinate + \units m + \type real + N936, \field Vertex 312 Y-coordinate + \units m + \type real + N937, \field Vertex 312 Z-coordinate + \units m + \type real + N938, \field Vertex 313 X-coordinate + \units m + \type real + N939, \field Vertex 313 Y-coordinate + \units m + \type real + N940, \field Vertex 313 Z-coordinate + \units m + \type real + N941, \field Vertex 314 X-coordinate + \units m + \type real + N942, \field Vertex 314 Y-coordinate + \units m + \type real + N943, \field Vertex 314 Z-coordinate + \units m + \type real + N944, \field Vertex 315 X-coordinate + \units m + \type real + N945, \field Vertex 315 Y-coordinate + \units m + \type real + N946, \field Vertex 315 Z-coordinate + \units m + \type real + N947, \field Vertex 316 X-coordinate + \units m + \type real + N948, \field Vertex 316 Y-coordinate + \units m + \type real + N949, \field Vertex 316 Z-coordinate + \units m + \type real + N950, \field Vertex 317 X-coordinate + \units m + \type real + N951, \field Vertex 317 Y-coordinate + \units m + \type real + N952, \field Vertex 317 Z-coordinate + \units m + \type real + N953, \field Vertex 318 X-coordinate + \units m + \type real + N954, \field Vertex 318 Y-coordinate + \units m + \type real + N955, \field Vertex 318 Z-coordinate + \units m + \type real + N956, \field Vertex 319 X-coordinate + \units m + \type real + N957, \field Vertex 319 Y-coordinate + \units m + \type real + N958, \field Vertex 319 Z-coordinate + \units m + \type real + N959, \field Vertex 320 X-coordinate + \units m + \type real + N960, \field Vertex 320 Y-coordinate + \units m + \type real + N961, \field Vertex 320 Z-coordinate + \units m + \type real + N962, \field Vertex 321 X-coordinate + \units m + \type real + N963, \field Vertex 321 Y-coordinate + \units m + \type real + N964, \field Vertex 321 Z-coordinate + \units m + \type real + N965, \field Vertex 322 X-coordinate + \units m + \type real + N966, \field Vertex 322 Y-coordinate + \units m + \type real + N967, \field Vertex 322 Z-coordinate + \units m + \type real + N968, \field Vertex 323 X-coordinate + \units m + \type real + N969, \field Vertex 323 Y-coordinate + \units m + \type real + N970, \field Vertex 323 Z-coordinate + \units m + \type real + N971, \field Vertex 324 X-coordinate + \units m + \type real + N972, \field Vertex 324 Y-coordinate + \units m + \type real + N973, \field Vertex 324 Z-coordinate + \units m + \type real + N974, \field Vertex 325 X-coordinate + \units m + \type real + N975, \field Vertex 325 Y-coordinate + \units m + \type real + N976, \field Vertex 325 Z-coordinate + \units m + \type real + N977, \field Vertex 326 X-coordinate + \units m + \type real + N978, \field Vertex 326 Y-coordinate + \units m + \type real + N979, \field Vertex 326 Z-coordinate + \units m + \type real + N980, \field Vertex 327 X-coordinate + \units m + \type real + N981, \field Vertex 327 Y-coordinate + \units m + \type real + N982, \field Vertex 327 Z-coordinate + \units m + \type real + N983, \field Vertex 328 X-coordinate + \units m + \type real + N984, \field Vertex 328 Y-coordinate + \units m + \type real + N985, \field Vertex 328 Z-coordinate + \units m + \type real + N986, \field Vertex 329 X-coordinate + \units m + \type real + N987, \field Vertex 329 Y-coordinate + \units m + \type real + N988, \field Vertex 329 Z-coordinate + \units m + \type real + N989, \field Vertex 330 X-coordinate + \units m + \type real + N990, \field Vertex 330 Y-coordinate + \units m + \type real + N991, \field Vertex 330 Z-coordinate + \units m + \type real + N992, \field Vertex 331 X-coordinate + \units m + \type real + N993, \field Vertex 331 Y-coordinate + \units m + \type real + N994, \field Vertex 331 Z-coordinate + \units m + \type real + N995, \field Vertex 332 X-coordinate + \units m + \type real + N996, \field Vertex 332 Y-coordinate + \units m + \type real + N997, \field Vertex 332 Z-coordinate + \units m + \type real + N998, \field Vertex 333 X-coordinate + \units m + \type real + N999, \field Vertex 333 Y-coordinate + \units m + \type real + N1000, \field Vertex 333 Z-coordinate + \units m + \type real + N1001, \field Vertex 334 X-coordinate + \units m + \type real + N1002, \field Vertex 334 Y-coordinate + \units m + \type real + N1003, \field Vertex 334 Z-coordinate + \units m + \type real + N1004, \field Vertex 335 X-coordinate + \units m + \type real + N1005, \field Vertex 335 Y-coordinate + \units m + \type real + N1006, \field Vertex 335 Z-coordinate + \units m + \type real + N1007, \field Vertex 336 X-coordinate + \units m + \type real + N1008, \field Vertex 336 Y-coordinate + \units m + \type real + N1009, \field Vertex 336 Z-coordinate + \units m + \type real + N1010, \field Vertex 337 X-coordinate + \units m + \type real + N1011, \field Vertex 337 Y-coordinate + \units m + \type real + N1012, \field Vertex 337 Z-coordinate + \units m + \type real + N1013, \field Vertex 338 X-coordinate + \units m + \type real + N1014, \field Vertex 338 Y-coordinate + \units m + \type real + N1015, \field Vertex 338 Z-coordinate + \units m + \type real + N1016, \field Vertex 339 X-coordinate + \units m + \type real + N1017, \field Vertex 339 Y-coordinate + \units m + \type real + N1018, \field Vertex 339 Z-coordinate + \units m + \type real + N1019, \field Vertex 340 X-coordinate + \units m + \type real + N1020, \field Vertex 340 Y-coordinate + \units m + \type real + N1021, \field Vertex 340 Z-coordinate + \units m + \type real + N1022, \field Vertex 341 X-coordinate + \units m + \type real + N1023, \field Vertex 341 Y-coordinate + \units m + \type real + N1024, \field Vertex 341 Z-coordinate + \units m + \type real + N1025, \field Vertex 342 X-coordinate + \units m + \type real + N1026, \field Vertex 342 Y-coordinate + \units m + \type real + N1027, \field Vertex 342 Z-coordinate + \units m + \type real + N1028, \field Vertex 343 X-coordinate + \units m + \type real + N1029, \field Vertex 343 Y-coordinate + \units m + \type real + N1030, \field Vertex 343 Z-coordinate + \units m + \type real + N1031, \field Vertex 344 X-coordinate + \units m + \type real + N1032, \field Vertex 344 Y-coordinate + \units m + \type real + N1033, \field Vertex 344 Z-coordinate + \units m + \type real + N1034, \field Vertex 345 X-coordinate + \units m + \type real + N1035, \field Vertex 345 Y-coordinate + \units m + \type real + N1036, \field Vertex 345 Z-coordinate + \units m + \type real + N1037, \field Vertex 346 X-coordinate + \units m + \type real + N1038, \field Vertex 346 Y-coordinate + \units m + \type real + N1039, \field Vertex 346 Z-coordinate + \units m + \type real + N1040, \field Vertex 347 X-coordinate + \units m + \type real + N1041, \field Vertex 347 Y-coordinate + \units m + \type real + N1042, \field Vertex 347 Z-coordinate + \units m + \type real + N1043, \field Vertex 348 X-coordinate + \units m + \type real + N1044, \field Vertex 348 Y-coordinate + \units m + \type real + N1045, \field Vertex 348 Z-coordinate + \units m + \type real + N1046, \field Vertex 349 X-coordinate + \units m + \type real + N1047, \field Vertex 349 Y-coordinate + \units m + \type real + N1048, \field Vertex 349 Z-coordinate + \units m + \type real + N1049, \field Vertex 350 X-coordinate + \units m + \type real + N1050, \field Vertex 350 Y-coordinate + \units m + \type real + N1051, \field Vertex 350 Z-coordinate + \units m + \type real + N1052, \field Vertex 351 X-coordinate + \units m + \type real + N1053, \field Vertex 351 Y-coordinate + \units m + \type real + N1054, \field Vertex 351 Z-coordinate + \units m + \type real + N1055, \field Vertex 352 X-coordinate + \units m + \type real + N1056, \field Vertex 352 Y-coordinate + \units m + \type real + N1057, \field Vertex 352 Z-coordinate + \units m + \type real + N1058, \field Vertex 353 X-coordinate + \units m + \type real + N1059, \field Vertex 353 Y-coordinate + \units m + \type real + N1060, \field Vertex 353 Z-coordinate + \units m + \type real + N1061, \field Vertex 354 X-coordinate + \units m + \type real + N1062, \field Vertex 354 Y-coordinate + \units m + \type real + N1063, \field Vertex 354 Z-coordinate + \units m + \type real + N1064, \field Vertex 355 X-coordinate + \units m + \type real + N1065, \field Vertex 355 Y-coordinate + \units m + \type real + N1066, \field Vertex 355 Z-coordinate + \units m + \type real + N1067, \field Vertex 356 X-coordinate + \units m + \type real + N1068, \field Vertex 356 Y-coordinate + \units m + \type real + N1069, \field Vertex 356 Z-coordinate + \units m + \type real + N1070, \field Vertex 357 X-coordinate + \units m + \type real + N1071, \field Vertex 357 Y-coordinate + \units m + \type real + N1072, \field Vertex 357 Z-coordinate + \units m + \type real + N1073, \field Vertex 358 X-coordinate + \units m + \type real + N1074, \field Vertex 358 Y-coordinate + \units m + \type real + N1075, \field Vertex 358 Z-coordinate + \units m + \type real + N1076, \field Vertex 359 X-coordinate + \units m + \type real + N1077, \field Vertex 359 Y-coordinate + \units m + \type real + N1078, \field Vertex 359 Z-coordinate + \units m + \type real + N1079, \field Vertex 360 X-coordinate + \units m + \type real + N1080, \field Vertex 360 Y-coordinate + \units m + \type real + N1081; \field Vertex 360 Z-coordinate \units m \type real @@ -14417,7 +16577,2167 @@ Shading:Site:Detailed, N360, \field Vertex 120 Y-coordinate \units m \type real - N361; \field Vertex 120 Z-coordinate + N361, \field Vertex 120 Z-coordinate + \units m + \type real + N362, \field Vertex 121 X-coordinate + \units m + \type real + N363, \field Vertex 121 Y-coordinate + \units m + \type real + N364, \field Vertex 121 Z-coordinate + \units m + \type real + N365, \field Vertex 122 X-coordinate + \units m + \type real + N366, \field Vertex 122 Y-coordinate + \units m + \type real + N367, \field Vertex 122 Z-coordinate + \units m + \type real + N368, \field Vertex 123 X-coordinate + \units m + \type real + N369, \field Vertex 123 Y-coordinate + \units m + \type real + N370, \field Vertex 123 Z-coordinate + \units m + \type real + N371, \field Vertex 124 X-coordinate + \units m + \type real + N372, \field Vertex 124 Y-coordinate + \units m + \type real + N373, \field Vertex 124 Z-coordinate + \units m + \type real + N374, \field Vertex 125 X-coordinate + \units m + \type real + N375, \field Vertex 125 Y-coordinate + \units m + \type real + N376, \field Vertex 125 Z-coordinate + \units m + \type real + N377, \field Vertex 126 X-coordinate + \units m + \type real + N378, \field Vertex 126 Y-coordinate + \units m + \type real + N379, \field Vertex 126 Z-coordinate + \units m + \type real + N380, \field Vertex 127 X-coordinate + \units m + \type real + N381, \field Vertex 127 Y-coordinate + \units m + \type real + N382, \field Vertex 127 Z-coordinate + \units m + \type real + N383, \field Vertex 128 X-coordinate + \units m + \type real + N384, \field Vertex 128 Y-coordinate + \units m + \type real + N385, \field Vertex 128 Z-coordinate + \units m + \type real + N386, \field Vertex 129 X-coordinate + \units m + \type real + N387, \field Vertex 129 Y-coordinate + \units m + \type real + N388, \field Vertex 129 Z-coordinate + \units m + \type real + N389, \field Vertex 130 X-coordinate + \units m + \type real + N390, \field Vertex 130 Y-coordinate + \units m + \type real + N391, \field Vertex 130 Z-coordinate + \units m + \type real + N392, \field Vertex 131 X-coordinate + \units m + \type real + N393, \field Vertex 131 Y-coordinate + \units m + \type real + N394, \field Vertex 131 Z-coordinate + \units m + \type real + N395, \field Vertex 132 X-coordinate + \units m + \type real + N396, \field Vertex 132 Y-coordinate + \units m + \type real + N397, \field Vertex 132 Z-coordinate + \units m + \type real + N398, \field Vertex 133 X-coordinate + \units m + \type real + N399, \field Vertex 133 Y-coordinate + \units m + \type real + N400, \field Vertex 133 Z-coordinate + \units m + \type real + N401, \field Vertex 134 X-coordinate + \units m + \type real + N402, \field Vertex 134 Y-coordinate + \units m + \type real + N403, \field Vertex 134 Z-coordinate + \units m + \type real + N404, \field Vertex 135 X-coordinate + \units m + \type real + N405, \field Vertex 135 Y-coordinate + \units m + \type real + N406, \field Vertex 135 Z-coordinate + \units m + \type real + N407, \field Vertex 136 X-coordinate + \units m + \type real + N408, \field Vertex 136 Y-coordinate + \units m + \type real + N409, \field Vertex 136 Z-coordinate + \units m + \type real + N410, \field Vertex 137 X-coordinate + \units m + \type real + N411, \field Vertex 137 Y-coordinate + \units m + \type real + N412, \field Vertex 137 Z-coordinate + \units m + \type real + N413, \field Vertex 138 X-coordinate + \units m + \type real + N414, \field Vertex 138 Y-coordinate + \units m + \type real + N415, \field Vertex 138 Z-coordinate + \units m + \type real + N416, \field Vertex 139 X-coordinate + \units m + \type real + N417, \field Vertex 139 Y-coordinate + \units m + \type real + N418, \field Vertex 139 Z-coordinate + \units m + \type real + N419, \field Vertex 140 X-coordinate + \units m + \type real + N420, \field Vertex 140 Y-coordinate + \units m + \type real + N421, \field Vertex 140 Z-coordinate + \units m + \type real + N422, \field Vertex 141 X-coordinate + \units m + \type real + N423, \field Vertex 141 Y-coordinate + \units m + \type real + N424, \field Vertex 141 Z-coordinate + \units m + \type real + N425, \field Vertex 142 X-coordinate + \units m + \type real + N426, \field Vertex 142 Y-coordinate + \units m + \type real + N427, \field Vertex 142 Z-coordinate + \units m + \type real + N428, \field Vertex 143 X-coordinate + \units m + \type real + N429, \field Vertex 143 Y-coordinate + \units m + \type real + N430, \field Vertex 143 Z-coordinate + \units m + \type real + N431, \field Vertex 144 X-coordinate + \units m + \type real + N432, \field Vertex 144 Y-coordinate + \units m + \type real + N433, \field Vertex 144 Z-coordinate + \units m + \type real + N434, \field Vertex 145 X-coordinate + \units m + \type real + N435, \field Vertex 145 Y-coordinate + \units m + \type real + N436, \field Vertex 145 Z-coordinate + \units m + \type real + N437, \field Vertex 146 X-coordinate + \units m + \type real + N438, \field Vertex 146 Y-coordinate + \units m + \type real + N439, \field Vertex 146 Z-coordinate + \units m + \type real + N440, \field Vertex 147 X-coordinate + \units m + \type real + N441, \field Vertex 147 Y-coordinate + \units m + \type real + N442, \field Vertex 147 Z-coordinate + \units m + \type real + N443, \field Vertex 148 X-coordinate + \units m + \type real + N444, \field Vertex 148 Y-coordinate + \units m + \type real + N445, \field Vertex 148 Z-coordinate + \units m + \type real + N446, \field Vertex 149 X-coordinate + \units m + \type real + N447, \field Vertex 149 Y-coordinate + \units m + \type real + N448, \field Vertex 149 Z-coordinate + \units m + \type real + N449, \field Vertex 150 X-coordinate + \units m + \type real + N450, \field Vertex 150 Y-coordinate + \units m + \type real + N451, \field Vertex 150 Z-coordinate + \units m + \type real + N452, \field Vertex 151 X-coordinate + \units m + \type real + N453, \field Vertex 151 Y-coordinate + \units m + \type real + N454, \field Vertex 151 Z-coordinate + \units m + \type real + N455, \field Vertex 152 X-coordinate + \units m + \type real + N456, \field Vertex 152 Y-coordinate + \units m + \type real + N457, \field Vertex 152 Z-coordinate + \units m + \type real + N458, \field Vertex 153 X-coordinate + \units m + \type real + N459, \field Vertex 153 Y-coordinate + \units m + \type real + N460, \field Vertex 153 Z-coordinate + \units m + \type real + N461, \field Vertex 154 X-coordinate + \units m + \type real + N462, \field Vertex 154 Y-coordinate + \units m + \type real + N463, \field Vertex 154 Z-coordinate + \units m + \type real + N464, \field Vertex 155 X-coordinate + \units m + \type real + N465, \field Vertex 155 Y-coordinate + \units m + \type real + N466, \field Vertex 155 Z-coordinate + \units m + \type real + N467, \field Vertex 156 X-coordinate + \units m + \type real + N468, \field Vertex 156 Y-coordinate + \units m + \type real + N469, \field Vertex 156 Z-coordinate + \units m + \type real + N470, \field Vertex 157 X-coordinate + \units m + \type real + N471, \field Vertex 157 Y-coordinate + \units m + \type real + N472, \field Vertex 157 Z-coordinate + \units m + \type real + N473, \field Vertex 158 X-coordinate + \units m + \type real + N474, \field Vertex 158 Y-coordinate + \units m + \type real + N475, \field Vertex 158 Z-coordinate + \units m + \type real + N476, \field Vertex 159 X-coordinate + \units m + \type real + N477, \field Vertex 159 Y-coordinate + \units m + \type real + N478, \field Vertex 159 Z-coordinate + \units m + \type real + N479, \field Vertex 160 X-coordinate + \units m + \type real + N480, \field Vertex 160 Y-coordinate + \units m + \type real + N481, \field Vertex 160 Z-coordinate + \units m + \type real + N482, \field Vertex 161 X-coordinate + \units m + \type real + N483, \field Vertex 161 Y-coordinate + \units m + \type real + N484, \field Vertex 161 Z-coordinate + \units m + \type real + N485, \field Vertex 162 X-coordinate + \units m + \type real + N486, \field Vertex 162 Y-coordinate + \units m + \type real + N487, \field Vertex 162 Z-coordinate + \units m + \type real + N488, \field Vertex 163 X-coordinate + \units m + \type real + N489, \field Vertex 163 Y-coordinate + \units m + \type real + N490, \field Vertex 163 Z-coordinate + \units m + \type real + N491, \field Vertex 164 X-coordinate + \units m + \type real + N492, \field Vertex 164 Y-coordinate + \units m + \type real + N493, \field Vertex 164 Z-coordinate + \units m + \type real + N494, \field Vertex 165 X-coordinate + \units m + \type real + N495, \field Vertex 165 Y-coordinate + \units m + \type real + N496, \field Vertex 165 Z-coordinate + \units m + \type real + N497, \field Vertex 166 X-coordinate + \units m + \type real + N498, \field Vertex 166 Y-coordinate + \units m + \type real + N499, \field Vertex 166 Z-coordinate + \units m + \type real + N500, \field Vertex 167 X-coordinate + \units m + \type real + N501, \field Vertex 167 Y-coordinate + \units m + \type real + N502, \field Vertex 167 Z-coordinate + \units m + \type real + N503, \field Vertex 168 X-coordinate + \units m + \type real + N504, \field Vertex 168 Y-coordinate + \units m + \type real + N505, \field Vertex 168 Z-coordinate + \units m + \type real + N506, \field Vertex 169 X-coordinate + \units m + \type real + N507, \field Vertex 169 Y-coordinate + \units m + \type real + N508, \field Vertex 169 Z-coordinate + \units m + \type real + N509, \field Vertex 170 X-coordinate + \units m + \type real + N510, \field Vertex 170 Y-coordinate + \units m + \type real + N511, \field Vertex 170 Z-coordinate + \units m + \type real + N512, \field Vertex 171 X-coordinate + \units m + \type real + N513, \field Vertex 171 Y-coordinate + \units m + \type real + N514, \field Vertex 171 Z-coordinate + \units m + \type real + N515, \field Vertex 172 X-coordinate + \units m + \type real + N516, \field Vertex 172 Y-coordinate + \units m + \type real + N517, \field Vertex 172 Z-coordinate + \units m + \type real + N518, \field Vertex 173 X-coordinate + \units m + \type real + N519, \field Vertex 173 Y-coordinate + \units m + \type real + N520, \field Vertex 173 Z-coordinate + \units m + \type real + N521, \field Vertex 174 X-coordinate + \units m + \type real + N522, \field Vertex 174 Y-coordinate + \units m + \type real + N523, \field Vertex 174 Z-coordinate + \units m + \type real + N524, \field Vertex 175 X-coordinate + \units m + \type real + N525, \field Vertex 175 Y-coordinate + \units m + \type real + N526, \field Vertex 175 Z-coordinate + \units m + \type real + N527, \field Vertex 176 X-coordinate + \units m + \type real + N528, \field Vertex 176 Y-coordinate + \units m + \type real + N529, \field Vertex 176 Z-coordinate + \units m + \type real + N530, \field Vertex 177 X-coordinate + \units m + \type real + N531, \field Vertex 177 Y-coordinate + \units m + \type real + N532, \field Vertex 177 Z-coordinate + \units m + \type real + N533, \field Vertex 178 X-coordinate + \units m + \type real + N534, \field Vertex 178 Y-coordinate + \units m + \type real + N535, \field Vertex 178 Z-coordinate + \units m + \type real + N536, \field Vertex 179 X-coordinate + \units m + \type real + N537, \field Vertex 179 Y-coordinate + \units m + \type real + N538, \field Vertex 179 Z-coordinate + \units m + \type real + N539, \field Vertex 180 X-coordinate + \units m + \type real + N540, \field Vertex 180 Y-coordinate + \units m + \type real + N541, \field Vertex 180 Z-coordinate + \units m + \type real + N542, \field Vertex 181 X-coordinate + \units m + \type real + N543, \field Vertex 181 Y-coordinate + \units m + \type real + N544, \field Vertex 181 Z-coordinate + \units m + \type real + N545, \field Vertex 182 X-coordinate + \units m + \type real + N546, \field Vertex 182 Y-coordinate + \units m + \type real + N547, \field Vertex 182 Z-coordinate + \units m + \type real + N548, \field Vertex 183 X-coordinate + \units m + \type real + N549, \field Vertex 183 Y-coordinate + \units m + \type real + N550, \field Vertex 183 Z-coordinate + \units m + \type real + N551, \field Vertex 184 X-coordinate + \units m + \type real + N552, \field Vertex 184 Y-coordinate + \units m + \type real + N553, \field Vertex 184 Z-coordinate + \units m + \type real + N554, \field Vertex 185 X-coordinate + \units m + \type real + N555, \field Vertex 185 Y-coordinate + \units m + \type real + N556, \field Vertex 185 Z-coordinate + \units m + \type real + N557, \field Vertex 186 X-coordinate + \units m + \type real + N558, \field Vertex 186 Y-coordinate + \units m + \type real + N559, \field Vertex 186 Z-coordinate + \units m + \type real + N560, \field Vertex 187 X-coordinate + \units m + \type real + N561, \field Vertex 187 Y-coordinate + \units m + \type real + N562, \field Vertex 187 Z-coordinate + \units m + \type real + N563, \field Vertex 188 X-coordinate + \units m + \type real + N564, \field Vertex 188 Y-coordinate + \units m + \type real + N565, \field Vertex 188 Z-coordinate + \units m + \type real + N566, \field Vertex 189 X-coordinate + \units m + \type real + N567, \field Vertex 189 Y-coordinate + \units m + \type real + N568, \field Vertex 189 Z-coordinate + \units m + \type real + N569, \field Vertex 190 X-coordinate + \units m + \type real + N570, \field Vertex 190 Y-coordinate + \units m + \type real + N571, \field Vertex 190 Z-coordinate + \units m + \type real + N572, \field Vertex 191 X-coordinate + \units m + \type real + N573, \field Vertex 191 Y-coordinate + \units m + \type real + N574, \field Vertex 191 Z-coordinate + \units m + \type real + N575, \field Vertex 192 X-coordinate + \units m + \type real + N576, \field Vertex 192 Y-coordinate + \units m + \type real + N577, \field Vertex 192 Z-coordinate + \units m + \type real + N578, \field Vertex 193 X-coordinate + \units m + \type real + N579, \field Vertex 193 Y-coordinate + \units m + \type real + N580, \field Vertex 193 Z-coordinate + \units m + \type real + N581, \field Vertex 194 X-coordinate + \units m + \type real + N582, \field Vertex 194 Y-coordinate + \units m + \type real + N583, \field Vertex 194 Z-coordinate + \units m + \type real + N584, \field Vertex 195 X-coordinate + \units m + \type real + N585, \field Vertex 195 Y-coordinate + \units m + \type real + N586, \field Vertex 195 Z-coordinate + \units m + \type real + N587, \field Vertex 196 X-coordinate + \units m + \type real + N588, \field Vertex 196 Y-coordinate + \units m + \type real + N589, \field Vertex 196 Z-coordinate + \units m + \type real + N590, \field Vertex 197 X-coordinate + \units m + \type real + N591, \field Vertex 197 Y-coordinate + \units m + \type real + N592, \field Vertex 197 Z-coordinate + \units m + \type real + N593, \field Vertex 198 X-coordinate + \units m + \type real + N594, \field Vertex 198 Y-coordinate + \units m + \type real + N595, \field Vertex 198 Z-coordinate + \units m + \type real + N596, \field Vertex 199 X-coordinate + \units m + \type real + N597, \field Vertex 199 Y-coordinate + \units m + \type real + N598, \field Vertex 199 Z-coordinate + \units m + \type real + N599, \field Vertex 200 X-coordinate + \units m + \type real + N600, \field Vertex 200 Y-coordinate + \units m + \type real + N601, \field Vertex 200 Z-coordinate + \units m + \type real + N602, \field Vertex 201 X-coordinate + \units m + \type real + N603, \field Vertex 201 Y-coordinate + \units m + \type real + N604, \field Vertex 201 Z-coordinate + \units m + \type real + N605, \field Vertex 202 X-coordinate + \units m + \type real + N606, \field Vertex 202 Y-coordinate + \units m + \type real + N607, \field Vertex 202 Z-coordinate + \units m + \type real + N608, \field Vertex 203 X-coordinate + \units m + \type real + N609, \field Vertex 203 Y-coordinate + \units m + \type real + N610, \field Vertex 203 Z-coordinate + \units m + \type real + N611, \field Vertex 204 X-coordinate + \units m + \type real + N612, \field Vertex 204 Y-coordinate + \units m + \type real + N613, \field Vertex 204 Z-coordinate + \units m + \type real + N614, \field Vertex 205 X-coordinate + \units m + \type real + N615, \field Vertex 205 Y-coordinate + \units m + \type real + N616, \field Vertex 205 Z-coordinate + \units m + \type real + N617, \field Vertex 206 X-coordinate + \units m + \type real + N618, \field Vertex 206 Y-coordinate + \units m + \type real + N619, \field Vertex 206 Z-coordinate + \units m + \type real + N620, \field Vertex 207 X-coordinate + \units m + \type real + N621, \field Vertex 207 Y-coordinate + \units m + \type real + N622, \field Vertex 207 Z-coordinate + \units m + \type real + N623, \field Vertex 208 X-coordinate + \units m + \type real + N624, \field Vertex 208 Y-coordinate + \units m + \type real + N625, \field Vertex 208 Z-coordinate + \units m + \type real + N626, \field Vertex 209 X-coordinate + \units m + \type real + N627, \field Vertex 209 Y-coordinate + \units m + \type real + N628, \field Vertex 209 Z-coordinate + \units m + \type real + N629, \field Vertex 210 X-coordinate + \units m + \type real + N630, \field Vertex 210 Y-coordinate + \units m + \type real + N631, \field Vertex 210 Z-coordinate + \units m + \type real + N632, \field Vertex 211 X-coordinate + \units m + \type real + N633, \field Vertex 211 Y-coordinate + \units m + \type real + N634, \field Vertex 211 Z-coordinate + \units m + \type real + N635, \field Vertex 212 X-coordinate + \units m + \type real + N636, \field Vertex 212 Y-coordinate + \units m + \type real + N637, \field Vertex 212 Z-coordinate + \units m + \type real + N638, \field Vertex 213 X-coordinate + \units m + \type real + N639, \field Vertex 213 Y-coordinate + \units m + \type real + N640, \field Vertex 213 Z-coordinate + \units m + \type real + N641, \field Vertex 214 X-coordinate + \units m + \type real + N642, \field Vertex 214 Y-coordinate + \units m + \type real + N643, \field Vertex 214 Z-coordinate + \units m + \type real + N644, \field Vertex 215 X-coordinate + \units m + \type real + N645, \field Vertex 215 Y-coordinate + \units m + \type real + N646, \field Vertex 215 Z-coordinate + \units m + \type real + N647, \field Vertex 216 X-coordinate + \units m + \type real + N648, \field Vertex 216 Y-coordinate + \units m + \type real + N649, \field Vertex 216 Z-coordinate + \units m + \type real + N650, \field Vertex 217 X-coordinate + \units m + \type real + N651, \field Vertex 217 Y-coordinate + \units m + \type real + N652, \field Vertex 217 Z-coordinate + \units m + \type real + N653, \field Vertex 218 X-coordinate + \units m + \type real + N654, \field Vertex 218 Y-coordinate + \units m + \type real + N655, \field Vertex 218 Z-coordinate + \units m + \type real + N656, \field Vertex 219 X-coordinate + \units m + \type real + N657, \field Vertex 219 Y-coordinate + \units m + \type real + N658, \field Vertex 219 Z-coordinate + \units m + \type real + N659, \field Vertex 220 X-coordinate + \units m + \type real + N660, \field Vertex 220 Y-coordinate + \units m + \type real + N661, \field Vertex 220 Z-coordinate + \units m + \type real + N662, \field Vertex 221 X-coordinate + \units m + \type real + N663, \field Vertex 221 Y-coordinate + \units m + \type real + N664, \field Vertex 221 Z-coordinate + \units m + \type real + N665, \field Vertex 222 X-coordinate + \units m + \type real + N666, \field Vertex 222 Y-coordinate + \units m + \type real + N667, \field Vertex 222 Z-coordinate + \units m + \type real + N668, \field Vertex 223 X-coordinate + \units m + \type real + N669, \field Vertex 223 Y-coordinate + \units m + \type real + N670, \field Vertex 223 Z-coordinate + \units m + \type real + N671, \field Vertex 224 X-coordinate + \units m + \type real + N672, \field Vertex 224 Y-coordinate + \units m + \type real + N673, \field Vertex 224 Z-coordinate + \units m + \type real + N674, \field Vertex 225 X-coordinate + \units m + \type real + N675, \field Vertex 225 Y-coordinate + \units m + \type real + N676, \field Vertex 225 Z-coordinate + \units m + \type real + N677, \field Vertex 226 X-coordinate + \units m + \type real + N678, \field Vertex 226 Y-coordinate + \units m + \type real + N679, \field Vertex 226 Z-coordinate + \units m + \type real + N680, \field Vertex 227 X-coordinate + \units m + \type real + N681, \field Vertex 227 Y-coordinate + \units m + \type real + N682, \field Vertex 227 Z-coordinate + \units m + \type real + N683, \field Vertex 228 X-coordinate + \units m + \type real + N684, \field Vertex 228 Y-coordinate + \units m + \type real + N685, \field Vertex 228 Z-coordinate + \units m + \type real + N686, \field Vertex 229 X-coordinate + \units m + \type real + N687, \field Vertex 229 Y-coordinate + \units m + \type real + N688, \field Vertex 229 Z-coordinate + \units m + \type real + N689, \field Vertex 230 X-coordinate + \units m + \type real + N690, \field Vertex 230 Y-coordinate + \units m + \type real + N691, \field Vertex 230 Z-coordinate + \units m + \type real + N692, \field Vertex 231 X-coordinate + \units m + \type real + N693, \field Vertex 231 Y-coordinate + \units m + \type real + N694, \field Vertex 231 Z-coordinate + \units m + \type real + N695, \field Vertex 232 X-coordinate + \units m + \type real + N696, \field Vertex 232 Y-coordinate + \units m + \type real + N697, \field Vertex 232 Z-coordinate + \units m + \type real + N698, \field Vertex 233 X-coordinate + \units m + \type real + N699, \field Vertex 233 Y-coordinate + \units m + \type real + N700, \field Vertex 233 Z-coordinate + \units m + \type real + N701, \field Vertex 234 X-coordinate + \units m + \type real + N702, \field Vertex 234 Y-coordinate + \units m + \type real + N703, \field Vertex 234 Z-coordinate + \units m + \type real + N704, \field Vertex 235 X-coordinate + \units m + \type real + N705, \field Vertex 235 Y-coordinate + \units m + \type real + N706, \field Vertex 235 Z-coordinate + \units m + \type real + N707, \field Vertex 236 X-coordinate + \units m + \type real + N708, \field Vertex 236 Y-coordinate + \units m + \type real + N709, \field Vertex 236 Z-coordinate + \units m + \type real + N710, \field Vertex 237 X-coordinate + \units m + \type real + N711, \field Vertex 237 Y-coordinate + \units m + \type real + N712, \field Vertex 237 Z-coordinate + \units m + \type real + N713, \field Vertex 238 X-coordinate + \units m + \type real + N714, \field Vertex 238 Y-coordinate + \units m + \type real + N715, \field Vertex 238 Z-coordinate + \units m + \type real + N716, \field Vertex 239 X-coordinate + \units m + \type real + N717, \field Vertex 239 Y-coordinate + \units m + \type real + N718, \field Vertex 239 Z-coordinate + \units m + \type real + N719, \field Vertex 240 X-coordinate + \units m + \type real + N720, \field Vertex 240 Y-coordinate + \units m + \type real + N721, \field Vertex 240 Z-coordinate + \units m + \type real + N722, \field Vertex 241 X-coordinate + \units m + \type real + N723, \field Vertex 241 Y-coordinate + \units m + \type real + N724, \field Vertex 241 Z-coordinate + \units m + \type real + N725, \field Vertex 242 X-coordinate + \units m + \type real + N726, \field Vertex 242 Y-coordinate + \units m + \type real + N727, \field Vertex 242 Z-coordinate + \units m + \type real + N728, \field Vertex 243 X-coordinate + \units m + \type real + N729, \field Vertex 243 Y-coordinate + \units m + \type real + N730, \field Vertex 243 Z-coordinate + \units m + \type real + N731, \field Vertex 244 X-coordinate + \units m + \type real + N732, \field Vertex 244 Y-coordinate + \units m + \type real + N733, \field Vertex 244 Z-coordinate + \units m + \type real + N734, \field Vertex 245 X-coordinate + \units m + \type real + N735, \field Vertex 245 Y-coordinate + \units m + \type real + N736, \field Vertex 245 Z-coordinate + \units m + \type real + N737, \field Vertex 246 X-coordinate + \units m + \type real + N738, \field Vertex 246 Y-coordinate + \units m + \type real + N739, \field Vertex 246 Z-coordinate + \units m + \type real + N740, \field Vertex 247 X-coordinate + \units m + \type real + N741, \field Vertex 247 Y-coordinate + \units m + \type real + N742, \field Vertex 247 Z-coordinate + \units m + \type real + N743, \field Vertex 248 X-coordinate + \units m + \type real + N744, \field Vertex 248 Y-coordinate + \units m + \type real + N745, \field Vertex 248 Z-coordinate + \units m + \type real + N746, \field Vertex 249 X-coordinate + \units m + \type real + N747, \field Vertex 249 Y-coordinate + \units m + \type real + N748, \field Vertex 249 Z-coordinate + \units m + \type real + N749, \field Vertex 250 X-coordinate + \units m + \type real + N750, \field Vertex 250 Y-coordinate + \units m + \type real + N751, \field Vertex 250 Z-coordinate + \units m + \type real + N752, \field Vertex 251 X-coordinate + \units m + \type real + N753, \field Vertex 251 Y-coordinate + \units m + \type real + N754, \field Vertex 251 Z-coordinate + \units m + \type real + N755, \field Vertex 252 X-coordinate + \units m + \type real + N756, \field Vertex 252 Y-coordinate + \units m + \type real + N757, \field Vertex 252 Z-coordinate + \units m + \type real + N758, \field Vertex 253 X-coordinate + \units m + \type real + N759, \field Vertex 253 Y-coordinate + \units m + \type real + N760, \field Vertex 253 Z-coordinate + \units m + \type real + N761, \field Vertex 254 X-coordinate + \units m + \type real + N762, \field Vertex 254 Y-coordinate + \units m + \type real + N763, \field Vertex 254 Z-coordinate + \units m + \type real + N764, \field Vertex 255 X-coordinate + \units m + \type real + N765, \field Vertex 255 Y-coordinate + \units m + \type real + N766, \field Vertex 255 Z-coordinate + \units m + \type real + N767, \field Vertex 256 X-coordinate + \units m + \type real + N768, \field Vertex 256 Y-coordinate + \units m + \type real + N769, \field Vertex 256 Z-coordinate + \units m + \type real + N770, \field Vertex 257 X-coordinate + \units m + \type real + N771, \field Vertex 257 Y-coordinate + \units m + \type real + N772, \field Vertex 257 Z-coordinate + \units m + \type real + N773, \field Vertex 258 X-coordinate + \units m + \type real + N774, \field Vertex 258 Y-coordinate + \units m + \type real + N775, \field Vertex 258 Z-coordinate + \units m + \type real + N776, \field Vertex 259 X-coordinate + \units m + \type real + N777, \field Vertex 259 Y-coordinate + \units m + \type real + N778, \field Vertex 259 Z-coordinate + \units m + \type real + N779, \field Vertex 260 X-coordinate + \units m + \type real + N780, \field Vertex 260 Y-coordinate + \units m + \type real + N781, \field Vertex 260 Z-coordinate + \units m + \type real + N782, \field Vertex 261 X-coordinate + \units m + \type real + N783, \field Vertex 261 Y-coordinate + \units m + \type real + N784, \field Vertex 261 Z-coordinate + \units m + \type real + N785, \field Vertex 262 X-coordinate + \units m + \type real + N786, \field Vertex 262 Y-coordinate + \units m + \type real + N787, \field Vertex 262 Z-coordinate + \units m + \type real + N788, \field Vertex 263 X-coordinate + \units m + \type real + N789, \field Vertex 263 Y-coordinate + \units m + \type real + N790, \field Vertex 263 Z-coordinate + \units m + \type real + N791, \field Vertex 264 X-coordinate + \units m + \type real + N792, \field Vertex 264 Y-coordinate + \units m + \type real + N793, \field Vertex 264 Z-coordinate + \units m + \type real + N794, \field Vertex 265 X-coordinate + \units m + \type real + N795, \field Vertex 265 Y-coordinate + \units m + \type real + N796, \field Vertex 265 Z-coordinate + \units m + \type real + N797, \field Vertex 266 X-coordinate + \units m + \type real + N798, \field Vertex 266 Y-coordinate + \units m + \type real + N799, \field Vertex 266 Z-coordinate + \units m + \type real + N800, \field Vertex 267 X-coordinate + \units m + \type real + N801, \field Vertex 267 Y-coordinate + \units m + \type real + N802, \field Vertex 267 Z-coordinate + \units m + \type real + N803, \field Vertex 268 X-coordinate + \units m + \type real + N804, \field Vertex 268 Y-coordinate + \units m + \type real + N805, \field Vertex 268 Z-coordinate + \units m + \type real + N806, \field Vertex 269 X-coordinate + \units m + \type real + N807, \field Vertex 269 Y-coordinate + \units m + \type real + N808, \field Vertex 269 Z-coordinate + \units m + \type real + N809, \field Vertex 270 X-coordinate + \units m + \type real + N810, \field Vertex 270 Y-coordinate + \units m + \type real + N811, \field Vertex 270 Z-coordinate + \units m + \type real + N812, \field Vertex 271 X-coordinate + \units m + \type real + N813, \field Vertex 271 Y-coordinate + \units m + \type real + N814, \field Vertex 271 Z-coordinate + \units m + \type real + N815, \field Vertex 272 X-coordinate + \units m + \type real + N816, \field Vertex 272 Y-coordinate + \units m + \type real + N817, \field Vertex 272 Z-coordinate + \units m + \type real + N818, \field Vertex 273 X-coordinate + \units m + \type real + N819, \field Vertex 273 Y-coordinate + \units m + \type real + N820, \field Vertex 273 Z-coordinate + \units m + \type real + N821, \field Vertex 274 X-coordinate + \units m + \type real + N822, \field Vertex 274 Y-coordinate + \units m + \type real + N823, \field Vertex 274 Z-coordinate + \units m + \type real + N824, \field Vertex 275 X-coordinate + \units m + \type real + N825, \field Vertex 275 Y-coordinate + \units m + \type real + N826, \field Vertex 275 Z-coordinate + \units m + \type real + N827, \field Vertex 276 X-coordinate + \units m + \type real + N828, \field Vertex 276 Y-coordinate + \units m + \type real + N829, \field Vertex 276 Z-coordinate + \units m + \type real + N830, \field Vertex 277 X-coordinate + \units m + \type real + N831, \field Vertex 277 Y-coordinate + \units m + \type real + N832, \field Vertex 277 Z-coordinate + \units m + \type real + N833, \field Vertex 278 X-coordinate + \units m + \type real + N834, \field Vertex 278 Y-coordinate + \units m + \type real + N835, \field Vertex 278 Z-coordinate + \units m + \type real + N836, \field Vertex 279 X-coordinate + \units m + \type real + N837, \field Vertex 279 Y-coordinate + \units m + \type real + N838, \field Vertex 279 Z-coordinate + \units m + \type real + N839, \field Vertex 280 X-coordinate + \units m + \type real + N840, \field Vertex 280 Y-coordinate + \units m + \type real + N841, \field Vertex 280 Z-coordinate + \units m + \type real + N842, \field Vertex 281 X-coordinate + \units m + \type real + N843, \field Vertex 281 Y-coordinate + \units m + \type real + N844, \field Vertex 281 Z-coordinate + \units m + \type real + N845, \field Vertex 282 X-coordinate + \units m + \type real + N846, \field Vertex 282 Y-coordinate + \units m + \type real + N847, \field Vertex 282 Z-coordinate + \units m + \type real + N848, \field Vertex 283 X-coordinate + \units m + \type real + N849, \field Vertex 283 Y-coordinate + \units m + \type real + N850, \field Vertex 283 Z-coordinate + \units m + \type real + N851, \field Vertex 284 X-coordinate + \units m + \type real + N852, \field Vertex 284 Y-coordinate + \units m + \type real + N853, \field Vertex 284 Z-coordinate + \units m + \type real + N854, \field Vertex 285 X-coordinate + \units m + \type real + N855, \field Vertex 285 Y-coordinate + \units m + \type real + N856, \field Vertex 285 Z-coordinate + \units m + \type real + N857, \field Vertex 286 X-coordinate + \units m + \type real + N858, \field Vertex 286 Y-coordinate + \units m + \type real + N859, \field Vertex 286 Z-coordinate + \units m + \type real + N860, \field Vertex 287 X-coordinate + \units m + \type real + N861, \field Vertex 287 Y-coordinate + \units m + \type real + N862, \field Vertex 287 Z-coordinate + \units m + \type real + N863, \field Vertex 288 X-coordinate + \units m + \type real + N864, \field Vertex 288 Y-coordinate + \units m + \type real + N865, \field Vertex 288 Z-coordinate + \units m + \type real + N866, \field Vertex 289 X-coordinate + \units m + \type real + N867, \field Vertex 289 Y-coordinate + \units m + \type real + N868, \field Vertex 289 Z-coordinate + \units m + \type real + N869, \field Vertex 290 X-coordinate + \units m + \type real + N870, \field Vertex 290 Y-coordinate + \units m + \type real + N871, \field Vertex 290 Z-coordinate + \units m + \type real + N872, \field Vertex 291 X-coordinate + \units m + \type real + N873, \field Vertex 291 Y-coordinate + \units m + \type real + N874, \field Vertex 291 Z-coordinate + \units m + \type real + N875, \field Vertex 292 X-coordinate + \units m + \type real + N876, \field Vertex 292 Y-coordinate + \units m + \type real + N877, \field Vertex 292 Z-coordinate + \units m + \type real + N878, \field Vertex 293 X-coordinate + \units m + \type real + N879, \field Vertex 293 Y-coordinate + \units m + \type real + N880, \field Vertex 293 Z-coordinate + \units m + \type real + N881, \field Vertex 294 X-coordinate + \units m + \type real + N882, \field Vertex 294 Y-coordinate + \units m + \type real + N883, \field Vertex 294 Z-coordinate + \units m + \type real + N884, \field Vertex 295 X-coordinate + \units m + \type real + N885, \field Vertex 295 Y-coordinate + \units m + \type real + N886, \field Vertex 295 Z-coordinate + \units m + \type real + N887, \field Vertex 296 X-coordinate + \units m + \type real + N888, \field Vertex 296 Y-coordinate + \units m + \type real + N889, \field Vertex 296 Z-coordinate + \units m + \type real + N890, \field Vertex 297 X-coordinate + \units m + \type real + N891, \field Vertex 297 Y-coordinate + \units m + \type real + N892, \field Vertex 297 Z-coordinate + \units m + \type real + N893, \field Vertex 298 X-coordinate + \units m + \type real + N894, \field Vertex 298 Y-coordinate + \units m + \type real + N895, \field Vertex 298 Z-coordinate + \units m + \type real + N896, \field Vertex 299 X-coordinate + \units m + \type real + N897, \field Vertex 299 Y-coordinate + \units m + \type real + N898, \field Vertex 299 Z-coordinate + \units m + \type real + N899, \field Vertex 300 X-coordinate + \units m + \type real + N900, \field Vertex 300 Y-coordinate + \units m + \type real + N901, \field Vertex 300 Z-coordinate + \units m + \type real + N902, \field Vertex 301 X-coordinate + \units m + \type real + N903, \field Vertex 301 Y-coordinate + \units m + \type real + N904, \field Vertex 301 Z-coordinate + \units m + \type real + N905, \field Vertex 302 X-coordinate + \units m + \type real + N906, \field Vertex 302 Y-coordinate + \units m + \type real + N907, \field Vertex 302 Z-coordinate + \units m + \type real + N908, \field Vertex 303 X-coordinate + \units m + \type real + N909, \field Vertex 303 Y-coordinate + \units m + \type real + N910, \field Vertex 303 Z-coordinate + \units m + \type real + N911, \field Vertex 304 X-coordinate + \units m + \type real + N912, \field Vertex 304 Y-coordinate + \units m + \type real + N913, \field Vertex 304 Z-coordinate + \units m + \type real + N914, \field Vertex 305 X-coordinate + \units m + \type real + N915, \field Vertex 305 Y-coordinate + \units m + \type real + N916, \field Vertex 305 Z-coordinate + \units m + \type real + N917, \field Vertex 306 X-coordinate + \units m + \type real + N918, \field Vertex 306 Y-coordinate + \units m + \type real + N919, \field Vertex 306 Z-coordinate + \units m + \type real + N920, \field Vertex 307 X-coordinate + \units m + \type real + N921, \field Vertex 307 Y-coordinate + \units m + \type real + N922, \field Vertex 307 Z-coordinate + \units m + \type real + N923, \field Vertex 308 X-coordinate + \units m + \type real + N924, \field Vertex 308 Y-coordinate + \units m + \type real + N925, \field Vertex 308 Z-coordinate + \units m + \type real + N926, \field Vertex 309 X-coordinate + \units m + \type real + N927, \field Vertex 309 Y-coordinate + \units m + \type real + N928, \field Vertex 309 Z-coordinate + \units m + \type real + N929, \field Vertex 310 X-coordinate + \units m + \type real + N930, \field Vertex 310 Y-coordinate + \units m + \type real + N931, \field Vertex 310 Z-coordinate + \units m + \type real + N932, \field Vertex 311 X-coordinate + \units m + \type real + N933, \field Vertex 311 Y-coordinate + \units m + \type real + N934, \field Vertex 311 Z-coordinate + \units m + \type real + N935, \field Vertex 312 X-coordinate + \units m + \type real + N936, \field Vertex 312 Y-coordinate + \units m + \type real + N937, \field Vertex 312 Z-coordinate + \units m + \type real + N938, \field Vertex 313 X-coordinate + \units m + \type real + N939, \field Vertex 313 Y-coordinate + \units m + \type real + N940, \field Vertex 313 Z-coordinate + \units m + \type real + N941, \field Vertex 314 X-coordinate + \units m + \type real + N942, \field Vertex 314 Y-coordinate + \units m + \type real + N943, \field Vertex 314 Z-coordinate + \units m + \type real + N944, \field Vertex 315 X-coordinate + \units m + \type real + N945, \field Vertex 315 Y-coordinate + \units m + \type real + N946, \field Vertex 315 Z-coordinate + \units m + \type real + N947, \field Vertex 316 X-coordinate + \units m + \type real + N948, \field Vertex 316 Y-coordinate + \units m + \type real + N949, \field Vertex 316 Z-coordinate + \units m + \type real + N950, \field Vertex 317 X-coordinate + \units m + \type real + N951, \field Vertex 317 Y-coordinate + \units m + \type real + N952, \field Vertex 317 Z-coordinate + \units m + \type real + N953, \field Vertex 318 X-coordinate + \units m + \type real + N954, \field Vertex 318 Y-coordinate + \units m + \type real + N955, \field Vertex 318 Z-coordinate + \units m + \type real + N956, \field Vertex 319 X-coordinate + \units m + \type real + N957, \field Vertex 319 Y-coordinate + \units m + \type real + N958, \field Vertex 319 Z-coordinate + \units m + \type real + N959, \field Vertex 320 X-coordinate + \units m + \type real + N960, \field Vertex 320 Y-coordinate + \units m + \type real + N961, \field Vertex 320 Z-coordinate + \units m + \type real + N962, \field Vertex 321 X-coordinate + \units m + \type real + N963, \field Vertex 321 Y-coordinate + \units m + \type real + N964, \field Vertex 321 Z-coordinate + \units m + \type real + N965, \field Vertex 322 X-coordinate + \units m + \type real + N966, \field Vertex 322 Y-coordinate + \units m + \type real + N967, \field Vertex 322 Z-coordinate + \units m + \type real + N968, \field Vertex 323 X-coordinate + \units m + \type real + N969, \field Vertex 323 Y-coordinate + \units m + \type real + N970, \field Vertex 323 Z-coordinate + \units m + \type real + N971, \field Vertex 324 X-coordinate + \units m + \type real + N972, \field Vertex 324 Y-coordinate + \units m + \type real + N973, \field Vertex 324 Z-coordinate + \units m + \type real + N974, \field Vertex 325 X-coordinate + \units m + \type real + N975, \field Vertex 325 Y-coordinate + \units m + \type real + N976, \field Vertex 325 Z-coordinate + \units m + \type real + N977, \field Vertex 326 X-coordinate + \units m + \type real + N978, \field Vertex 326 Y-coordinate + \units m + \type real + N979, \field Vertex 326 Z-coordinate + \units m + \type real + N980, \field Vertex 327 X-coordinate + \units m + \type real + N981, \field Vertex 327 Y-coordinate + \units m + \type real + N982, \field Vertex 327 Z-coordinate + \units m + \type real + N983, \field Vertex 328 X-coordinate + \units m + \type real + N984, \field Vertex 328 Y-coordinate + \units m + \type real + N985, \field Vertex 328 Z-coordinate + \units m + \type real + N986, \field Vertex 329 X-coordinate + \units m + \type real + N987, \field Vertex 329 Y-coordinate + \units m + \type real + N988, \field Vertex 329 Z-coordinate + \units m + \type real + N989, \field Vertex 330 X-coordinate + \units m + \type real + N990, \field Vertex 330 Y-coordinate + \units m + \type real + N991, \field Vertex 330 Z-coordinate + \units m + \type real + N992, \field Vertex 331 X-coordinate + \units m + \type real + N993, \field Vertex 331 Y-coordinate + \units m + \type real + N994, \field Vertex 331 Z-coordinate + \units m + \type real + N995, \field Vertex 332 X-coordinate + \units m + \type real + N996, \field Vertex 332 Y-coordinate + \units m + \type real + N997, \field Vertex 332 Z-coordinate + \units m + \type real + N998, \field Vertex 333 X-coordinate + \units m + \type real + N999, \field Vertex 333 Y-coordinate + \units m + \type real + N1000, \field Vertex 333 Z-coordinate + \units m + \type real + N1001, \field Vertex 334 X-coordinate + \units m + \type real + N1002, \field Vertex 334 Y-coordinate + \units m + \type real + N1003, \field Vertex 334 Z-coordinate + \units m + \type real + N1004, \field Vertex 335 X-coordinate + \units m + \type real + N1005, \field Vertex 335 Y-coordinate + \units m + \type real + N1006, \field Vertex 335 Z-coordinate + \units m + \type real + N1007, \field Vertex 336 X-coordinate + \units m + \type real + N1008, \field Vertex 336 Y-coordinate + \units m + \type real + N1009, \field Vertex 336 Z-coordinate + \units m + \type real + N1010, \field Vertex 337 X-coordinate + \units m + \type real + N1011, \field Vertex 337 Y-coordinate + \units m + \type real + N1012, \field Vertex 337 Z-coordinate + \units m + \type real + N1013, \field Vertex 338 X-coordinate + \units m + \type real + N1014, \field Vertex 338 Y-coordinate + \units m + \type real + N1015, \field Vertex 338 Z-coordinate + \units m + \type real + N1016, \field Vertex 339 X-coordinate + \units m + \type real + N1017, \field Vertex 339 Y-coordinate + \units m + \type real + N1018, \field Vertex 339 Z-coordinate + \units m + \type real + N1019, \field Vertex 340 X-coordinate + \units m + \type real + N1020, \field Vertex 340 Y-coordinate + \units m + \type real + N1021, \field Vertex 340 Z-coordinate + \units m + \type real + N1022, \field Vertex 341 X-coordinate + \units m + \type real + N1023, \field Vertex 341 Y-coordinate + \units m + \type real + N1024, \field Vertex 341 Z-coordinate + \units m + \type real + N1025, \field Vertex 342 X-coordinate + \units m + \type real + N1026, \field Vertex 342 Y-coordinate + \units m + \type real + N1027, \field Vertex 342 Z-coordinate + \units m + \type real + N1028, \field Vertex 343 X-coordinate + \units m + \type real + N1029, \field Vertex 343 Y-coordinate + \units m + \type real + N1030, \field Vertex 343 Z-coordinate + \units m + \type real + N1031, \field Vertex 344 X-coordinate + \units m + \type real + N1032, \field Vertex 344 Y-coordinate + \units m + \type real + N1033, \field Vertex 344 Z-coordinate + \units m + \type real + N1034, \field Vertex 345 X-coordinate + \units m + \type real + N1035, \field Vertex 345 Y-coordinate + \units m + \type real + N1036, \field Vertex 345 Z-coordinate + \units m + \type real + N1037, \field Vertex 346 X-coordinate + \units m + \type real + N1038, \field Vertex 346 Y-coordinate + \units m + \type real + N1039, \field Vertex 346 Z-coordinate + \units m + \type real + N1040, \field Vertex 347 X-coordinate + \units m + \type real + N1041, \field Vertex 347 Y-coordinate + \units m + \type real + N1042, \field Vertex 347 Z-coordinate + \units m + \type real + N1043, \field Vertex 348 X-coordinate + \units m + \type real + N1044, \field Vertex 348 Y-coordinate + \units m + \type real + N1045, \field Vertex 348 Z-coordinate + \units m + \type real + N1046, \field Vertex 349 X-coordinate + \units m + \type real + N1047, \field Vertex 349 Y-coordinate + \units m + \type real + N1048, \field Vertex 349 Z-coordinate + \units m + \type real + N1049, \field Vertex 350 X-coordinate + \units m + \type real + N1050, \field Vertex 350 Y-coordinate + \units m + \type real + N1051, \field Vertex 350 Z-coordinate + \units m + \type real + N1052, \field Vertex 351 X-coordinate + \units m + \type real + N1053, \field Vertex 351 Y-coordinate + \units m + \type real + N1054, \field Vertex 351 Z-coordinate + \units m + \type real + N1055, \field Vertex 352 X-coordinate + \units m + \type real + N1056, \field Vertex 352 Y-coordinate + \units m + \type real + N1057, \field Vertex 352 Z-coordinate + \units m + \type real + N1058, \field Vertex 353 X-coordinate + \units m + \type real + N1059, \field Vertex 353 Y-coordinate + \units m + \type real + N1060, \field Vertex 353 Z-coordinate + \units m + \type real + N1061, \field Vertex 354 X-coordinate + \units m + \type real + N1062, \field Vertex 354 Y-coordinate + \units m + \type real + N1063, \field Vertex 354 Z-coordinate + \units m + \type real + N1064, \field Vertex 355 X-coordinate + \units m + \type real + N1065, \field Vertex 355 Y-coordinate + \units m + \type real + N1066, \field Vertex 355 Z-coordinate + \units m + \type real + N1067, \field Vertex 356 X-coordinate + \units m + \type real + N1068, \field Vertex 356 Y-coordinate + \units m + \type real + N1069, \field Vertex 356 Z-coordinate + \units m + \type real + N1070, \field Vertex 357 X-coordinate + \units m + \type real + N1071, \field Vertex 357 Y-coordinate + \units m + \type real + N1072, \field Vertex 357 Z-coordinate + \units m + \type real + N1073, \field Vertex 358 X-coordinate + \units m + \type real + N1074, \field Vertex 358 Y-coordinate + \units m + \type real + N1075, \field Vertex 358 Z-coordinate + \units m + \type real + N1076, \field Vertex 359 X-coordinate + \units m + \type real + N1077, \field Vertex 359 Y-coordinate + \units m + \type real + N1078, \field Vertex 359 Z-coordinate + \units m + \type real + N1079, \field Vertex 360 X-coordinate + \units m + \type real + N1080, \field Vertex 360 Y-coordinate + \units m + \type real + N1081; \field Vertex 360 Z-coordinate \units m \type real @@ -15531,7 +19851,2167 @@ Shading:Building:Detailed, N360, \field Vertex 120 Y-coordinate \units m \type real - N361; \field Vertex 120 Z-coordinate + N361, \field Vertex 120 Z-coordinate + \units m + \type real + N362, \field Vertex 121 X-coordinate + \units m + \type real + N363, \field Vertex 121 Y-coordinate + \units m + \type real + N364, \field Vertex 121 Z-coordinate + \units m + \type real + N365, \field Vertex 122 X-coordinate + \units m + \type real + N366, \field Vertex 122 Y-coordinate + \units m + \type real + N367, \field Vertex 122 Z-coordinate + \units m + \type real + N368, \field Vertex 123 X-coordinate + \units m + \type real + N369, \field Vertex 123 Y-coordinate + \units m + \type real + N370, \field Vertex 123 Z-coordinate + \units m + \type real + N371, \field Vertex 124 X-coordinate + \units m + \type real + N372, \field Vertex 124 Y-coordinate + \units m + \type real + N373, \field Vertex 124 Z-coordinate + \units m + \type real + N374, \field Vertex 125 X-coordinate + \units m + \type real + N375, \field Vertex 125 Y-coordinate + \units m + \type real + N376, \field Vertex 125 Z-coordinate + \units m + \type real + N377, \field Vertex 126 X-coordinate + \units m + \type real + N378, \field Vertex 126 Y-coordinate + \units m + \type real + N379, \field Vertex 126 Z-coordinate + \units m + \type real + N380, \field Vertex 127 X-coordinate + \units m + \type real + N381, \field Vertex 127 Y-coordinate + \units m + \type real + N382, \field Vertex 127 Z-coordinate + \units m + \type real + N383, \field Vertex 128 X-coordinate + \units m + \type real + N384, \field Vertex 128 Y-coordinate + \units m + \type real + N385, \field Vertex 128 Z-coordinate + \units m + \type real + N386, \field Vertex 129 X-coordinate + \units m + \type real + N387, \field Vertex 129 Y-coordinate + \units m + \type real + N388, \field Vertex 129 Z-coordinate + \units m + \type real + N389, \field Vertex 130 X-coordinate + \units m + \type real + N390, \field Vertex 130 Y-coordinate + \units m + \type real + N391, \field Vertex 130 Z-coordinate + \units m + \type real + N392, \field Vertex 131 X-coordinate + \units m + \type real + N393, \field Vertex 131 Y-coordinate + \units m + \type real + N394, \field Vertex 131 Z-coordinate + \units m + \type real + N395, \field Vertex 132 X-coordinate + \units m + \type real + N396, \field Vertex 132 Y-coordinate + \units m + \type real + N397, \field Vertex 132 Z-coordinate + \units m + \type real + N398, \field Vertex 133 X-coordinate + \units m + \type real + N399, \field Vertex 133 Y-coordinate + \units m + \type real + N400, \field Vertex 133 Z-coordinate + \units m + \type real + N401, \field Vertex 134 X-coordinate + \units m + \type real + N402, \field Vertex 134 Y-coordinate + \units m + \type real + N403, \field Vertex 134 Z-coordinate + \units m + \type real + N404, \field Vertex 135 X-coordinate + \units m + \type real + N405, \field Vertex 135 Y-coordinate + \units m + \type real + N406, \field Vertex 135 Z-coordinate + \units m + \type real + N407, \field Vertex 136 X-coordinate + \units m + \type real + N408, \field Vertex 136 Y-coordinate + \units m + \type real + N409, \field Vertex 136 Z-coordinate + \units m + \type real + N410, \field Vertex 137 X-coordinate + \units m + \type real + N411, \field Vertex 137 Y-coordinate + \units m + \type real + N412, \field Vertex 137 Z-coordinate + \units m + \type real + N413, \field Vertex 138 X-coordinate + \units m + \type real + N414, \field Vertex 138 Y-coordinate + \units m + \type real + N415, \field Vertex 138 Z-coordinate + \units m + \type real + N416, \field Vertex 139 X-coordinate + \units m + \type real + N417, \field Vertex 139 Y-coordinate + \units m + \type real + N418, \field Vertex 139 Z-coordinate + \units m + \type real + N419, \field Vertex 140 X-coordinate + \units m + \type real + N420, \field Vertex 140 Y-coordinate + \units m + \type real + N421, \field Vertex 140 Z-coordinate + \units m + \type real + N422, \field Vertex 141 X-coordinate + \units m + \type real + N423, \field Vertex 141 Y-coordinate + \units m + \type real + N424, \field Vertex 141 Z-coordinate + \units m + \type real + N425, \field Vertex 142 X-coordinate + \units m + \type real + N426, \field Vertex 142 Y-coordinate + \units m + \type real + N427, \field Vertex 142 Z-coordinate + \units m + \type real + N428, \field Vertex 143 X-coordinate + \units m + \type real + N429, \field Vertex 143 Y-coordinate + \units m + \type real + N430, \field Vertex 143 Z-coordinate + \units m + \type real + N431, \field Vertex 144 X-coordinate + \units m + \type real + N432, \field Vertex 144 Y-coordinate + \units m + \type real + N433, \field Vertex 144 Z-coordinate + \units m + \type real + N434, \field Vertex 145 X-coordinate + \units m + \type real + N435, \field Vertex 145 Y-coordinate + \units m + \type real + N436, \field Vertex 145 Z-coordinate + \units m + \type real + N437, \field Vertex 146 X-coordinate + \units m + \type real + N438, \field Vertex 146 Y-coordinate + \units m + \type real + N439, \field Vertex 146 Z-coordinate + \units m + \type real + N440, \field Vertex 147 X-coordinate + \units m + \type real + N441, \field Vertex 147 Y-coordinate + \units m + \type real + N442, \field Vertex 147 Z-coordinate + \units m + \type real + N443, \field Vertex 148 X-coordinate + \units m + \type real + N444, \field Vertex 148 Y-coordinate + \units m + \type real + N445, \field Vertex 148 Z-coordinate + \units m + \type real + N446, \field Vertex 149 X-coordinate + \units m + \type real + N447, \field Vertex 149 Y-coordinate + \units m + \type real + N448, \field Vertex 149 Z-coordinate + \units m + \type real + N449, \field Vertex 150 X-coordinate + \units m + \type real + N450, \field Vertex 150 Y-coordinate + \units m + \type real + N451, \field Vertex 150 Z-coordinate + \units m + \type real + N452, \field Vertex 151 X-coordinate + \units m + \type real + N453, \field Vertex 151 Y-coordinate + \units m + \type real + N454, \field Vertex 151 Z-coordinate + \units m + \type real + N455, \field Vertex 152 X-coordinate + \units m + \type real + N456, \field Vertex 152 Y-coordinate + \units m + \type real + N457, \field Vertex 152 Z-coordinate + \units m + \type real + N458, \field Vertex 153 X-coordinate + \units m + \type real + N459, \field Vertex 153 Y-coordinate + \units m + \type real + N460, \field Vertex 153 Z-coordinate + \units m + \type real + N461, \field Vertex 154 X-coordinate + \units m + \type real + N462, \field Vertex 154 Y-coordinate + \units m + \type real + N463, \field Vertex 154 Z-coordinate + \units m + \type real + N464, \field Vertex 155 X-coordinate + \units m + \type real + N465, \field Vertex 155 Y-coordinate + \units m + \type real + N466, \field Vertex 155 Z-coordinate + \units m + \type real + N467, \field Vertex 156 X-coordinate + \units m + \type real + N468, \field Vertex 156 Y-coordinate + \units m + \type real + N469, \field Vertex 156 Z-coordinate + \units m + \type real + N470, \field Vertex 157 X-coordinate + \units m + \type real + N471, \field Vertex 157 Y-coordinate + \units m + \type real + N472, \field Vertex 157 Z-coordinate + \units m + \type real + N473, \field Vertex 158 X-coordinate + \units m + \type real + N474, \field Vertex 158 Y-coordinate + \units m + \type real + N475, \field Vertex 158 Z-coordinate + \units m + \type real + N476, \field Vertex 159 X-coordinate + \units m + \type real + N477, \field Vertex 159 Y-coordinate + \units m + \type real + N478, \field Vertex 159 Z-coordinate + \units m + \type real + N479, \field Vertex 160 X-coordinate + \units m + \type real + N480, \field Vertex 160 Y-coordinate + \units m + \type real + N481, \field Vertex 160 Z-coordinate + \units m + \type real + N482, \field Vertex 161 X-coordinate + \units m + \type real + N483, \field Vertex 161 Y-coordinate + \units m + \type real + N484, \field Vertex 161 Z-coordinate + \units m + \type real + N485, \field Vertex 162 X-coordinate + \units m + \type real + N486, \field Vertex 162 Y-coordinate + \units m + \type real + N487, \field Vertex 162 Z-coordinate + \units m + \type real + N488, \field Vertex 163 X-coordinate + \units m + \type real + N489, \field Vertex 163 Y-coordinate + \units m + \type real + N490, \field Vertex 163 Z-coordinate + \units m + \type real + N491, \field Vertex 164 X-coordinate + \units m + \type real + N492, \field Vertex 164 Y-coordinate + \units m + \type real + N493, \field Vertex 164 Z-coordinate + \units m + \type real + N494, \field Vertex 165 X-coordinate + \units m + \type real + N495, \field Vertex 165 Y-coordinate + \units m + \type real + N496, \field Vertex 165 Z-coordinate + \units m + \type real + N497, \field Vertex 166 X-coordinate + \units m + \type real + N498, \field Vertex 166 Y-coordinate + \units m + \type real + N499, \field Vertex 166 Z-coordinate + \units m + \type real + N500, \field Vertex 167 X-coordinate + \units m + \type real + N501, \field Vertex 167 Y-coordinate + \units m + \type real + N502, \field Vertex 167 Z-coordinate + \units m + \type real + N503, \field Vertex 168 X-coordinate + \units m + \type real + N504, \field Vertex 168 Y-coordinate + \units m + \type real + N505, \field Vertex 168 Z-coordinate + \units m + \type real + N506, \field Vertex 169 X-coordinate + \units m + \type real + N507, \field Vertex 169 Y-coordinate + \units m + \type real + N508, \field Vertex 169 Z-coordinate + \units m + \type real + N509, \field Vertex 170 X-coordinate + \units m + \type real + N510, \field Vertex 170 Y-coordinate + \units m + \type real + N511, \field Vertex 170 Z-coordinate + \units m + \type real + N512, \field Vertex 171 X-coordinate + \units m + \type real + N513, \field Vertex 171 Y-coordinate + \units m + \type real + N514, \field Vertex 171 Z-coordinate + \units m + \type real + N515, \field Vertex 172 X-coordinate + \units m + \type real + N516, \field Vertex 172 Y-coordinate + \units m + \type real + N517, \field Vertex 172 Z-coordinate + \units m + \type real + N518, \field Vertex 173 X-coordinate + \units m + \type real + N519, \field Vertex 173 Y-coordinate + \units m + \type real + N520, \field Vertex 173 Z-coordinate + \units m + \type real + N521, \field Vertex 174 X-coordinate + \units m + \type real + N522, \field Vertex 174 Y-coordinate + \units m + \type real + N523, \field Vertex 174 Z-coordinate + \units m + \type real + N524, \field Vertex 175 X-coordinate + \units m + \type real + N525, \field Vertex 175 Y-coordinate + \units m + \type real + N526, \field Vertex 175 Z-coordinate + \units m + \type real + N527, \field Vertex 176 X-coordinate + \units m + \type real + N528, \field Vertex 176 Y-coordinate + \units m + \type real + N529, \field Vertex 176 Z-coordinate + \units m + \type real + N530, \field Vertex 177 X-coordinate + \units m + \type real + N531, \field Vertex 177 Y-coordinate + \units m + \type real + N532, \field Vertex 177 Z-coordinate + \units m + \type real + N533, \field Vertex 178 X-coordinate + \units m + \type real + N534, \field Vertex 178 Y-coordinate + \units m + \type real + N535, \field Vertex 178 Z-coordinate + \units m + \type real + N536, \field Vertex 179 X-coordinate + \units m + \type real + N537, \field Vertex 179 Y-coordinate + \units m + \type real + N538, \field Vertex 179 Z-coordinate + \units m + \type real + N539, \field Vertex 180 X-coordinate + \units m + \type real + N540, \field Vertex 180 Y-coordinate + \units m + \type real + N541, \field Vertex 180 Z-coordinate + \units m + \type real + N542, \field Vertex 181 X-coordinate + \units m + \type real + N543, \field Vertex 181 Y-coordinate + \units m + \type real + N544, \field Vertex 181 Z-coordinate + \units m + \type real + N545, \field Vertex 182 X-coordinate + \units m + \type real + N546, \field Vertex 182 Y-coordinate + \units m + \type real + N547, \field Vertex 182 Z-coordinate + \units m + \type real + N548, \field Vertex 183 X-coordinate + \units m + \type real + N549, \field Vertex 183 Y-coordinate + \units m + \type real + N550, \field Vertex 183 Z-coordinate + \units m + \type real + N551, \field Vertex 184 X-coordinate + \units m + \type real + N552, \field Vertex 184 Y-coordinate + \units m + \type real + N553, \field Vertex 184 Z-coordinate + \units m + \type real + N554, \field Vertex 185 X-coordinate + \units m + \type real + N555, \field Vertex 185 Y-coordinate + \units m + \type real + N556, \field Vertex 185 Z-coordinate + \units m + \type real + N557, \field Vertex 186 X-coordinate + \units m + \type real + N558, \field Vertex 186 Y-coordinate + \units m + \type real + N559, \field Vertex 186 Z-coordinate + \units m + \type real + N560, \field Vertex 187 X-coordinate + \units m + \type real + N561, \field Vertex 187 Y-coordinate + \units m + \type real + N562, \field Vertex 187 Z-coordinate + \units m + \type real + N563, \field Vertex 188 X-coordinate + \units m + \type real + N564, \field Vertex 188 Y-coordinate + \units m + \type real + N565, \field Vertex 188 Z-coordinate + \units m + \type real + N566, \field Vertex 189 X-coordinate + \units m + \type real + N567, \field Vertex 189 Y-coordinate + \units m + \type real + N568, \field Vertex 189 Z-coordinate + \units m + \type real + N569, \field Vertex 190 X-coordinate + \units m + \type real + N570, \field Vertex 190 Y-coordinate + \units m + \type real + N571, \field Vertex 190 Z-coordinate + \units m + \type real + N572, \field Vertex 191 X-coordinate + \units m + \type real + N573, \field Vertex 191 Y-coordinate + \units m + \type real + N574, \field Vertex 191 Z-coordinate + \units m + \type real + N575, \field Vertex 192 X-coordinate + \units m + \type real + N576, \field Vertex 192 Y-coordinate + \units m + \type real + N577, \field Vertex 192 Z-coordinate + \units m + \type real + N578, \field Vertex 193 X-coordinate + \units m + \type real + N579, \field Vertex 193 Y-coordinate + \units m + \type real + N580, \field Vertex 193 Z-coordinate + \units m + \type real + N581, \field Vertex 194 X-coordinate + \units m + \type real + N582, \field Vertex 194 Y-coordinate + \units m + \type real + N583, \field Vertex 194 Z-coordinate + \units m + \type real + N584, \field Vertex 195 X-coordinate + \units m + \type real + N585, \field Vertex 195 Y-coordinate + \units m + \type real + N586, \field Vertex 195 Z-coordinate + \units m + \type real + N587, \field Vertex 196 X-coordinate + \units m + \type real + N588, \field Vertex 196 Y-coordinate + \units m + \type real + N589, \field Vertex 196 Z-coordinate + \units m + \type real + N590, \field Vertex 197 X-coordinate + \units m + \type real + N591, \field Vertex 197 Y-coordinate + \units m + \type real + N592, \field Vertex 197 Z-coordinate + \units m + \type real + N593, \field Vertex 198 X-coordinate + \units m + \type real + N594, \field Vertex 198 Y-coordinate + \units m + \type real + N595, \field Vertex 198 Z-coordinate + \units m + \type real + N596, \field Vertex 199 X-coordinate + \units m + \type real + N597, \field Vertex 199 Y-coordinate + \units m + \type real + N598, \field Vertex 199 Z-coordinate + \units m + \type real + N599, \field Vertex 200 X-coordinate + \units m + \type real + N600, \field Vertex 200 Y-coordinate + \units m + \type real + N601, \field Vertex 200 Z-coordinate + \units m + \type real + N602, \field Vertex 201 X-coordinate + \units m + \type real + N603, \field Vertex 201 Y-coordinate + \units m + \type real + N604, \field Vertex 201 Z-coordinate + \units m + \type real + N605, \field Vertex 202 X-coordinate + \units m + \type real + N606, \field Vertex 202 Y-coordinate + \units m + \type real + N607, \field Vertex 202 Z-coordinate + \units m + \type real + N608, \field Vertex 203 X-coordinate + \units m + \type real + N609, \field Vertex 203 Y-coordinate + \units m + \type real + N610, \field Vertex 203 Z-coordinate + \units m + \type real + N611, \field Vertex 204 X-coordinate + \units m + \type real + N612, \field Vertex 204 Y-coordinate + \units m + \type real + N613, \field Vertex 204 Z-coordinate + \units m + \type real + N614, \field Vertex 205 X-coordinate + \units m + \type real + N615, \field Vertex 205 Y-coordinate + \units m + \type real + N616, \field Vertex 205 Z-coordinate + \units m + \type real + N617, \field Vertex 206 X-coordinate + \units m + \type real + N618, \field Vertex 206 Y-coordinate + \units m + \type real + N619, \field Vertex 206 Z-coordinate + \units m + \type real + N620, \field Vertex 207 X-coordinate + \units m + \type real + N621, \field Vertex 207 Y-coordinate + \units m + \type real + N622, \field Vertex 207 Z-coordinate + \units m + \type real + N623, \field Vertex 208 X-coordinate + \units m + \type real + N624, \field Vertex 208 Y-coordinate + \units m + \type real + N625, \field Vertex 208 Z-coordinate + \units m + \type real + N626, \field Vertex 209 X-coordinate + \units m + \type real + N627, \field Vertex 209 Y-coordinate + \units m + \type real + N628, \field Vertex 209 Z-coordinate + \units m + \type real + N629, \field Vertex 210 X-coordinate + \units m + \type real + N630, \field Vertex 210 Y-coordinate + \units m + \type real + N631, \field Vertex 210 Z-coordinate + \units m + \type real + N632, \field Vertex 211 X-coordinate + \units m + \type real + N633, \field Vertex 211 Y-coordinate + \units m + \type real + N634, \field Vertex 211 Z-coordinate + \units m + \type real + N635, \field Vertex 212 X-coordinate + \units m + \type real + N636, \field Vertex 212 Y-coordinate + \units m + \type real + N637, \field Vertex 212 Z-coordinate + \units m + \type real + N638, \field Vertex 213 X-coordinate + \units m + \type real + N639, \field Vertex 213 Y-coordinate + \units m + \type real + N640, \field Vertex 213 Z-coordinate + \units m + \type real + N641, \field Vertex 214 X-coordinate + \units m + \type real + N642, \field Vertex 214 Y-coordinate + \units m + \type real + N643, \field Vertex 214 Z-coordinate + \units m + \type real + N644, \field Vertex 215 X-coordinate + \units m + \type real + N645, \field Vertex 215 Y-coordinate + \units m + \type real + N646, \field Vertex 215 Z-coordinate + \units m + \type real + N647, \field Vertex 216 X-coordinate + \units m + \type real + N648, \field Vertex 216 Y-coordinate + \units m + \type real + N649, \field Vertex 216 Z-coordinate + \units m + \type real + N650, \field Vertex 217 X-coordinate + \units m + \type real + N651, \field Vertex 217 Y-coordinate + \units m + \type real + N652, \field Vertex 217 Z-coordinate + \units m + \type real + N653, \field Vertex 218 X-coordinate + \units m + \type real + N654, \field Vertex 218 Y-coordinate + \units m + \type real + N655, \field Vertex 218 Z-coordinate + \units m + \type real + N656, \field Vertex 219 X-coordinate + \units m + \type real + N657, \field Vertex 219 Y-coordinate + \units m + \type real + N658, \field Vertex 219 Z-coordinate + \units m + \type real + N659, \field Vertex 220 X-coordinate + \units m + \type real + N660, \field Vertex 220 Y-coordinate + \units m + \type real + N661, \field Vertex 220 Z-coordinate + \units m + \type real + N662, \field Vertex 221 X-coordinate + \units m + \type real + N663, \field Vertex 221 Y-coordinate + \units m + \type real + N664, \field Vertex 221 Z-coordinate + \units m + \type real + N665, \field Vertex 222 X-coordinate + \units m + \type real + N666, \field Vertex 222 Y-coordinate + \units m + \type real + N667, \field Vertex 222 Z-coordinate + \units m + \type real + N668, \field Vertex 223 X-coordinate + \units m + \type real + N669, \field Vertex 223 Y-coordinate + \units m + \type real + N670, \field Vertex 223 Z-coordinate + \units m + \type real + N671, \field Vertex 224 X-coordinate + \units m + \type real + N672, \field Vertex 224 Y-coordinate + \units m + \type real + N673, \field Vertex 224 Z-coordinate + \units m + \type real + N674, \field Vertex 225 X-coordinate + \units m + \type real + N675, \field Vertex 225 Y-coordinate + \units m + \type real + N676, \field Vertex 225 Z-coordinate + \units m + \type real + N677, \field Vertex 226 X-coordinate + \units m + \type real + N678, \field Vertex 226 Y-coordinate + \units m + \type real + N679, \field Vertex 226 Z-coordinate + \units m + \type real + N680, \field Vertex 227 X-coordinate + \units m + \type real + N681, \field Vertex 227 Y-coordinate + \units m + \type real + N682, \field Vertex 227 Z-coordinate + \units m + \type real + N683, \field Vertex 228 X-coordinate + \units m + \type real + N684, \field Vertex 228 Y-coordinate + \units m + \type real + N685, \field Vertex 228 Z-coordinate + \units m + \type real + N686, \field Vertex 229 X-coordinate + \units m + \type real + N687, \field Vertex 229 Y-coordinate + \units m + \type real + N688, \field Vertex 229 Z-coordinate + \units m + \type real + N689, \field Vertex 230 X-coordinate + \units m + \type real + N690, \field Vertex 230 Y-coordinate + \units m + \type real + N691, \field Vertex 230 Z-coordinate + \units m + \type real + N692, \field Vertex 231 X-coordinate + \units m + \type real + N693, \field Vertex 231 Y-coordinate + \units m + \type real + N694, \field Vertex 231 Z-coordinate + \units m + \type real + N695, \field Vertex 232 X-coordinate + \units m + \type real + N696, \field Vertex 232 Y-coordinate + \units m + \type real + N697, \field Vertex 232 Z-coordinate + \units m + \type real + N698, \field Vertex 233 X-coordinate + \units m + \type real + N699, \field Vertex 233 Y-coordinate + \units m + \type real + N700, \field Vertex 233 Z-coordinate + \units m + \type real + N701, \field Vertex 234 X-coordinate + \units m + \type real + N702, \field Vertex 234 Y-coordinate + \units m + \type real + N703, \field Vertex 234 Z-coordinate + \units m + \type real + N704, \field Vertex 235 X-coordinate + \units m + \type real + N705, \field Vertex 235 Y-coordinate + \units m + \type real + N706, \field Vertex 235 Z-coordinate + \units m + \type real + N707, \field Vertex 236 X-coordinate + \units m + \type real + N708, \field Vertex 236 Y-coordinate + \units m + \type real + N709, \field Vertex 236 Z-coordinate + \units m + \type real + N710, \field Vertex 237 X-coordinate + \units m + \type real + N711, \field Vertex 237 Y-coordinate + \units m + \type real + N712, \field Vertex 237 Z-coordinate + \units m + \type real + N713, \field Vertex 238 X-coordinate + \units m + \type real + N714, \field Vertex 238 Y-coordinate + \units m + \type real + N715, \field Vertex 238 Z-coordinate + \units m + \type real + N716, \field Vertex 239 X-coordinate + \units m + \type real + N717, \field Vertex 239 Y-coordinate + \units m + \type real + N718, \field Vertex 239 Z-coordinate + \units m + \type real + N719, \field Vertex 240 X-coordinate + \units m + \type real + N720, \field Vertex 240 Y-coordinate + \units m + \type real + N721, \field Vertex 240 Z-coordinate + \units m + \type real + N722, \field Vertex 241 X-coordinate + \units m + \type real + N723, \field Vertex 241 Y-coordinate + \units m + \type real + N724, \field Vertex 241 Z-coordinate + \units m + \type real + N725, \field Vertex 242 X-coordinate + \units m + \type real + N726, \field Vertex 242 Y-coordinate + \units m + \type real + N727, \field Vertex 242 Z-coordinate + \units m + \type real + N728, \field Vertex 243 X-coordinate + \units m + \type real + N729, \field Vertex 243 Y-coordinate + \units m + \type real + N730, \field Vertex 243 Z-coordinate + \units m + \type real + N731, \field Vertex 244 X-coordinate + \units m + \type real + N732, \field Vertex 244 Y-coordinate + \units m + \type real + N733, \field Vertex 244 Z-coordinate + \units m + \type real + N734, \field Vertex 245 X-coordinate + \units m + \type real + N735, \field Vertex 245 Y-coordinate + \units m + \type real + N736, \field Vertex 245 Z-coordinate + \units m + \type real + N737, \field Vertex 246 X-coordinate + \units m + \type real + N738, \field Vertex 246 Y-coordinate + \units m + \type real + N739, \field Vertex 246 Z-coordinate + \units m + \type real + N740, \field Vertex 247 X-coordinate + \units m + \type real + N741, \field Vertex 247 Y-coordinate + \units m + \type real + N742, \field Vertex 247 Z-coordinate + \units m + \type real + N743, \field Vertex 248 X-coordinate + \units m + \type real + N744, \field Vertex 248 Y-coordinate + \units m + \type real + N745, \field Vertex 248 Z-coordinate + \units m + \type real + N746, \field Vertex 249 X-coordinate + \units m + \type real + N747, \field Vertex 249 Y-coordinate + \units m + \type real + N748, \field Vertex 249 Z-coordinate + \units m + \type real + N749, \field Vertex 250 X-coordinate + \units m + \type real + N750, \field Vertex 250 Y-coordinate + \units m + \type real + N751, \field Vertex 250 Z-coordinate + \units m + \type real + N752, \field Vertex 251 X-coordinate + \units m + \type real + N753, \field Vertex 251 Y-coordinate + \units m + \type real + N754, \field Vertex 251 Z-coordinate + \units m + \type real + N755, \field Vertex 252 X-coordinate + \units m + \type real + N756, \field Vertex 252 Y-coordinate + \units m + \type real + N757, \field Vertex 252 Z-coordinate + \units m + \type real + N758, \field Vertex 253 X-coordinate + \units m + \type real + N759, \field Vertex 253 Y-coordinate + \units m + \type real + N760, \field Vertex 253 Z-coordinate + \units m + \type real + N761, \field Vertex 254 X-coordinate + \units m + \type real + N762, \field Vertex 254 Y-coordinate + \units m + \type real + N763, \field Vertex 254 Z-coordinate + \units m + \type real + N764, \field Vertex 255 X-coordinate + \units m + \type real + N765, \field Vertex 255 Y-coordinate + \units m + \type real + N766, \field Vertex 255 Z-coordinate + \units m + \type real + N767, \field Vertex 256 X-coordinate + \units m + \type real + N768, \field Vertex 256 Y-coordinate + \units m + \type real + N769, \field Vertex 256 Z-coordinate + \units m + \type real + N770, \field Vertex 257 X-coordinate + \units m + \type real + N771, \field Vertex 257 Y-coordinate + \units m + \type real + N772, \field Vertex 257 Z-coordinate + \units m + \type real + N773, \field Vertex 258 X-coordinate + \units m + \type real + N774, \field Vertex 258 Y-coordinate + \units m + \type real + N775, \field Vertex 258 Z-coordinate + \units m + \type real + N776, \field Vertex 259 X-coordinate + \units m + \type real + N777, \field Vertex 259 Y-coordinate + \units m + \type real + N778, \field Vertex 259 Z-coordinate + \units m + \type real + N779, \field Vertex 260 X-coordinate + \units m + \type real + N780, \field Vertex 260 Y-coordinate + \units m + \type real + N781, \field Vertex 260 Z-coordinate + \units m + \type real + N782, \field Vertex 261 X-coordinate + \units m + \type real + N783, \field Vertex 261 Y-coordinate + \units m + \type real + N784, \field Vertex 261 Z-coordinate + \units m + \type real + N785, \field Vertex 262 X-coordinate + \units m + \type real + N786, \field Vertex 262 Y-coordinate + \units m + \type real + N787, \field Vertex 262 Z-coordinate + \units m + \type real + N788, \field Vertex 263 X-coordinate + \units m + \type real + N789, \field Vertex 263 Y-coordinate + \units m + \type real + N790, \field Vertex 263 Z-coordinate + \units m + \type real + N791, \field Vertex 264 X-coordinate + \units m + \type real + N792, \field Vertex 264 Y-coordinate + \units m + \type real + N793, \field Vertex 264 Z-coordinate + \units m + \type real + N794, \field Vertex 265 X-coordinate + \units m + \type real + N795, \field Vertex 265 Y-coordinate + \units m + \type real + N796, \field Vertex 265 Z-coordinate + \units m + \type real + N797, \field Vertex 266 X-coordinate + \units m + \type real + N798, \field Vertex 266 Y-coordinate + \units m + \type real + N799, \field Vertex 266 Z-coordinate + \units m + \type real + N800, \field Vertex 267 X-coordinate + \units m + \type real + N801, \field Vertex 267 Y-coordinate + \units m + \type real + N802, \field Vertex 267 Z-coordinate + \units m + \type real + N803, \field Vertex 268 X-coordinate + \units m + \type real + N804, \field Vertex 268 Y-coordinate + \units m + \type real + N805, \field Vertex 268 Z-coordinate + \units m + \type real + N806, \field Vertex 269 X-coordinate + \units m + \type real + N807, \field Vertex 269 Y-coordinate + \units m + \type real + N808, \field Vertex 269 Z-coordinate + \units m + \type real + N809, \field Vertex 270 X-coordinate + \units m + \type real + N810, \field Vertex 270 Y-coordinate + \units m + \type real + N811, \field Vertex 270 Z-coordinate + \units m + \type real + N812, \field Vertex 271 X-coordinate + \units m + \type real + N813, \field Vertex 271 Y-coordinate + \units m + \type real + N814, \field Vertex 271 Z-coordinate + \units m + \type real + N815, \field Vertex 272 X-coordinate + \units m + \type real + N816, \field Vertex 272 Y-coordinate + \units m + \type real + N817, \field Vertex 272 Z-coordinate + \units m + \type real + N818, \field Vertex 273 X-coordinate + \units m + \type real + N819, \field Vertex 273 Y-coordinate + \units m + \type real + N820, \field Vertex 273 Z-coordinate + \units m + \type real + N821, \field Vertex 274 X-coordinate + \units m + \type real + N822, \field Vertex 274 Y-coordinate + \units m + \type real + N823, \field Vertex 274 Z-coordinate + \units m + \type real + N824, \field Vertex 275 X-coordinate + \units m + \type real + N825, \field Vertex 275 Y-coordinate + \units m + \type real + N826, \field Vertex 275 Z-coordinate + \units m + \type real + N827, \field Vertex 276 X-coordinate + \units m + \type real + N828, \field Vertex 276 Y-coordinate + \units m + \type real + N829, \field Vertex 276 Z-coordinate + \units m + \type real + N830, \field Vertex 277 X-coordinate + \units m + \type real + N831, \field Vertex 277 Y-coordinate + \units m + \type real + N832, \field Vertex 277 Z-coordinate + \units m + \type real + N833, \field Vertex 278 X-coordinate + \units m + \type real + N834, \field Vertex 278 Y-coordinate + \units m + \type real + N835, \field Vertex 278 Z-coordinate + \units m + \type real + N836, \field Vertex 279 X-coordinate + \units m + \type real + N837, \field Vertex 279 Y-coordinate + \units m + \type real + N838, \field Vertex 279 Z-coordinate + \units m + \type real + N839, \field Vertex 280 X-coordinate + \units m + \type real + N840, \field Vertex 280 Y-coordinate + \units m + \type real + N841, \field Vertex 280 Z-coordinate + \units m + \type real + N842, \field Vertex 281 X-coordinate + \units m + \type real + N843, \field Vertex 281 Y-coordinate + \units m + \type real + N844, \field Vertex 281 Z-coordinate + \units m + \type real + N845, \field Vertex 282 X-coordinate + \units m + \type real + N846, \field Vertex 282 Y-coordinate + \units m + \type real + N847, \field Vertex 282 Z-coordinate + \units m + \type real + N848, \field Vertex 283 X-coordinate + \units m + \type real + N849, \field Vertex 283 Y-coordinate + \units m + \type real + N850, \field Vertex 283 Z-coordinate + \units m + \type real + N851, \field Vertex 284 X-coordinate + \units m + \type real + N852, \field Vertex 284 Y-coordinate + \units m + \type real + N853, \field Vertex 284 Z-coordinate + \units m + \type real + N854, \field Vertex 285 X-coordinate + \units m + \type real + N855, \field Vertex 285 Y-coordinate + \units m + \type real + N856, \field Vertex 285 Z-coordinate + \units m + \type real + N857, \field Vertex 286 X-coordinate + \units m + \type real + N858, \field Vertex 286 Y-coordinate + \units m + \type real + N859, \field Vertex 286 Z-coordinate + \units m + \type real + N860, \field Vertex 287 X-coordinate + \units m + \type real + N861, \field Vertex 287 Y-coordinate + \units m + \type real + N862, \field Vertex 287 Z-coordinate + \units m + \type real + N863, \field Vertex 288 X-coordinate + \units m + \type real + N864, \field Vertex 288 Y-coordinate + \units m + \type real + N865, \field Vertex 288 Z-coordinate + \units m + \type real + N866, \field Vertex 289 X-coordinate + \units m + \type real + N867, \field Vertex 289 Y-coordinate + \units m + \type real + N868, \field Vertex 289 Z-coordinate + \units m + \type real + N869, \field Vertex 290 X-coordinate + \units m + \type real + N870, \field Vertex 290 Y-coordinate + \units m + \type real + N871, \field Vertex 290 Z-coordinate + \units m + \type real + N872, \field Vertex 291 X-coordinate + \units m + \type real + N873, \field Vertex 291 Y-coordinate + \units m + \type real + N874, \field Vertex 291 Z-coordinate + \units m + \type real + N875, \field Vertex 292 X-coordinate + \units m + \type real + N876, \field Vertex 292 Y-coordinate + \units m + \type real + N877, \field Vertex 292 Z-coordinate + \units m + \type real + N878, \field Vertex 293 X-coordinate + \units m + \type real + N879, \field Vertex 293 Y-coordinate + \units m + \type real + N880, \field Vertex 293 Z-coordinate + \units m + \type real + N881, \field Vertex 294 X-coordinate + \units m + \type real + N882, \field Vertex 294 Y-coordinate + \units m + \type real + N883, \field Vertex 294 Z-coordinate + \units m + \type real + N884, \field Vertex 295 X-coordinate + \units m + \type real + N885, \field Vertex 295 Y-coordinate + \units m + \type real + N886, \field Vertex 295 Z-coordinate + \units m + \type real + N887, \field Vertex 296 X-coordinate + \units m + \type real + N888, \field Vertex 296 Y-coordinate + \units m + \type real + N889, \field Vertex 296 Z-coordinate + \units m + \type real + N890, \field Vertex 297 X-coordinate + \units m + \type real + N891, \field Vertex 297 Y-coordinate + \units m + \type real + N892, \field Vertex 297 Z-coordinate + \units m + \type real + N893, \field Vertex 298 X-coordinate + \units m + \type real + N894, \field Vertex 298 Y-coordinate + \units m + \type real + N895, \field Vertex 298 Z-coordinate + \units m + \type real + N896, \field Vertex 299 X-coordinate + \units m + \type real + N897, \field Vertex 299 Y-coordinate + \units m + \type real + N898, \field Vertex 299 Z-coordinate + \units m + \type real + N899, \field Vertex 300 X-coordinate + \units m + \type real + N900, \field Vertex 300 Y-coordinate + \units m + \type real + N901, \field Vertex 300 Z-coordinate + \units m + \type real + N902, \field Vertex 301 X-coordinate + \units m + \type real + N903, \field Vertex 301 Y-coordinate + \units m + \type real + N904, \field Vertex 301 Z-coordinate + \units m + \type real + N905, \field Vertex 302 X-coordinate + \units m + \type real + N906, \field Vertex 302 Y-coordinate + \units m + \type real + N907, \field Vertex 302 Z-coordinate + \units m + \type real + N908, \field Vertex 303 X-coordinate + \units m + \type real + N909, \field Vertex 303 Y-coordinate + \units m + \type real + N910, \field Vertex 303 Z-coordinate + \units m + \type real + N911, \field Vertex 304 X-coordinate + \units m + \type real + N912, \field Vertex 304 Y-coordinate + \units m + \type real + N913, \field Vertex 304 Z-coordinate + \units m + \type real + N914, \field Vertex 305 X-coordinate + \units m + \type real + N915, \field Vertex 305 Y-coordinate + \units m + \type real + N916, \field Vertex 305 Z-coordinate + \units m + \type real + N917, \field Vertex 306 X-coordinate + \units m + \type real + N918, \field Vertex 306 Y-coordinate + \units m + \type real + N919, \field Vertex 306 Z-coordinate + \units m + \type real + N920, \field Vertex 307 X-coordinate + \units m + \type real + N921, \field Vertex 307 Y-coordinate + \units m + \type real + N922, \field Vertex 307 Z-coordinate + \units m + \type real + N923, \field Vertex 308 X-coordinate + \units m + \type real + N924, \field Vertex 308 Y-coordinate + \units m + \type real + N925, \field Vertex 308 Z-coordinate + \units m + \type real + N926, \field Vertex 309 X-coordinate + \units m + \type real + N927, \field Vertex 309 Y-coordinate + \units m + \type real + N928, \field Vertex 309 Z-coordinate + \units m + \type real + N929, \field Vertex 310 X-coordinate + \units m + \type real + N930, \field Vertex 310 Y-coordinate + \units m + \type real + N931, \field Vertex 310 Z-coordinate + \units m + \type real + N932, \field Vertex 311 X-coordinate + \units m + \type real + N933, \field Vertex 311 Y-coordinate + \units m + \type real + N934, \field Vertex 311 Z-coordinate + \units m + \type real + N935, \field Vertex 312 X-coordinate + \units m + \type real + N936, \field Vertex 312 Y-coordinate + \units m + \type real + N937, \field Vertex 312 Z-coordinate + \units m + \type real + N938, \field Vertex 313 X-coordinate + \units m + \type real + N939, \field Vertex 313 Y-coordinate + \units m + \type real + N940, \field Vertex 313 Z-coordinate + \units m + \type real + N941, \field Vertex 314 X-coordinate + \units m + \type real + N942, \field Vertex 314 Y-coordinate + \units m + \type real + N943, \field Vertex 314 Z-coordinate + \units m + \type real + N944, \field Vertex 315 X-coordinate + \units m + \type real + N945, \field Vertex 315 Y-coordinate + \units m + \type real + N946, \field Vertex 315 Z-coordinate + \units m + \type real + N947, \field Vertex 316 X-coordinate + \units m + \type real + N948, \field Vertex 316 Y-coordinate + \units m + \type real + N949, \field Vertex 316 Z-coordinate + \units m + \type real + N950, \field Vertex 317 X-coordinate + \units m + \type real + N951, \field Vertex 317 Y-coordinate + \units m + \type real + N952, \field Vertex 317 Z-coordinate + \units m + \type real + N953, \field Vertex 318 X-coordinate + \units m + \type real + N954, \field Vertex 318 Y-coordinate + \units m + \type real + N955, \field Vertex 318 Z-coordinate + \units m + \type real + N956, \field Vertex 319 X-coordinate + \units m + \type real + N957, \field Vertex 319 Y-coordinate + \units m + \type real + N958, \field Vertex 319 Z-coordinate + \units m + \type real + N959, \field Vertex 320 X-coordinate + \units m + \type real + N960, \field Vertex 320 Y-coordinate + \units m + \type real + N961, \field Vertex 320 Z-coordinate + \units m + \type real + N962, \field Vertex 321 X-coordinate + \units m + \type real + N963, \field Vertex 321 Y-coordinate + \units m + \type real + N964, \field Vertex 321 Z-coordinate + \units m + \type real + N965, \field Vertex 322 X-coordinate + \units m + \type real + N966, \field Vertex 322 Y-coordinate + \units m + \type real + N967, \field Vertex 322 Z-coordinate + \units m + \type real + N968, \field Vertex 323 X-coordinate + \units m + \type real + N969, \field Vertex 323 Y-coordinate + \units m + \type real + N970, \field Vertex 323 Z-coordinate + \units m + \type real + N971, \field Vertex 324 X-coordinate + \units m + \type real + N972, \field Vertex 324 Y-coordinate + \units m + \type real + N973, \field Vertex 324 Z-coordinate + \units m + \type real + N974, \field Vertex 325 X-coordinate + \units m + \type real + N975, \field Vertex 325 Y-coordinate + \units m + \type real + N976, \field Vertex 325 Z-coordinate + \units m + \type real + N977, \field Vertex 326 X-coordinate + \units m + \type real + N978, \field Vertex 326 Y-coordinate + \units m + \type real + N979, \field Vertex 326 Z-coordinate + \units m + \type real + N980, \field Vertex 327 X-coordinate + \units m + \type real + N981, \field Vertex 327 Y-coordinate + \units m + \type real + N982, \field Vertex 327 Z-coordinate + \units m + \type real + N983, \field Vertex 328 X-coordinate + \units m + \type real + N984, \field Vertex 328 Y-coordinate + \units m + \type real + N985, \field Vertex 328 Z-coordinate + \units m + \type real + N986, \field Vertex 329 X-coordinate + \units m + \type real + N987, \field Vertex 329 Y-coordinate + \units m + \type real + N988, \field Vertex 329 Z-coordinate + \units m + \type real + N989, \field Vertex 330 X-coordinate + \units m + \type real + N990, \field Vertex 330 Y-coordinate + \units m + \type real + N991, \field Vertex 330 Z-coordinate + \units m + \type real + N992, \field Vertex 331 X-coordinate + \units m + \type real + N993, \field Vertex 331 Y-coordinate + \units m + \type real + N994, \field Vertex 331 Z-coordinate + \units m + \type real + N995, \field Vertex 332 X-coordinate + \units m + \type real + N996, \field Vertex 332 Y-coordinate + \units m + \type real + N997, \field Vertex 332 Z-coordinate + \units m + \type real + N998, \field Vertex 333 X-coordinate + \units m + \type real + N999, \field Vertex 333 Y-coordinate + \units m + \type real + N1000, \field Vertex 333 Z-coordinate + \units m + \type real + N1001, \field Vertex 334 X-coordinate + \units m + \type real + N1002, \field Vertex 334 Y-coordinate + \units m + \type real + N1003, \field Vertex 334 Z-coordinate + \units m + \type real + N1004, \field Vertex 335 X-coordinate + \units m + \type real + N1005, \field Vertex 335 Y-coordinate + \units m + \type real + N1006, \field Vertex 335 Z-coordinate + \units m + \type real + N1007, \field Vertex 336 X-coordinate + \units m + \type real + N1008, \field Vertex 336 Y-coordinate + \units m + \type real + N1009, \field Vertex 336 Z-coordinate + \units m + \type real + N1010, \field Vertex 337 X-coordinate + \units m + \type real + N1011, \field Vertex 337 Y-coordinate + \units m + \type real + N1012, \field Vertex 337 Z-coordinate + \units m + \type real + N1013, \field Vertex 338 X-coordinate + \units m + \type real + N1014, \field Vertex 338 Y-coordinate + \units m + \type real + N1015, \field Vertex 338 Z-coordinate + \units m + \type real + N1016, \field Vertex 339 X-coordinate + \units m + \type real + N1017, \field Vertex 339 Y-coordinate + \units m + \type real + N1018, \field Vertex 339 Z-coordinate + \units m + \type real + N1019, \field Vertex 340 X-coordinate + \units m + \type real + N1020, \field Vertex 340 Y-coordinate + \units m + \type real + N1021, \field Vertex 340 Z-coordinate + \units m + \type real + N1022, \field Vertex 341 X-coordinate + \units m + \type real + N1023, \field Vertex 341 Y-coordinate + \units m + \type real + N1024, \field Vertex 341 Z-coordinate + \units m + \type real + N1025, \field Vertex 342 X-coordinate + \units m + \type real + N1026, \field Vertex 342 Y-coordinate + \units m + \type real + N1027, \field Vertex 342 Z-coordinate + \units m + \type real + N1028, \field Vertex 343 X-coordinate + \units m + \type real + N1029, \field Vertex 343 Y-coordinate + \units m + \type real + N1030, \field Vertex 343 Z-coordinate + \units m + \type real + N1031, \field Vertex 344 X-coordinate + \units m + \type real + N1032, \field Vertex 344 Y-coordinate + \units m + \type real + N1033, \field Vertex 344 Z-coordinate + \units m + \type real + N1034, \field Vertex 345 X-coordinate + \units m + \type real + N1035, \field Vertex 345 Y-coordinate + \units m + \type real + N1036, \field Vertex 345 Z-coordinate + \units m + \type real + N1037, \field Vertex 346 X-coordinate + \units m + \type real + N1038, \field Vertex 346 Y-coordinate + \units m + \type real + N1039, \field Vertex 346 Z-coordinate + \units m + \type real + N1040, \field Vertex 347 X-coordinate + \units m + \type real + N1041, \field Vertex 347 Y-coordinate + \units m + \type real + N1042, \field Vertex 347 Z-coordinate + \units m + \type real + N1043, \field Vertex 348 X-coordinate + \units m + \type real + N1044, \field Vertex 348 Y-coordinate + \units m + \type real + N1045, \field Vertex 348 Z-coordinate + \units m + \type real + N1046, \field Vertex 349 X-coordinate + \units m + \type real + N1047, \field Vertex 349 Y-coordinate + \units m + \type real + N1048, \field Vertex 349 Z-coordinate + \units m + \type real + N1049, \field Vertex 350 X-coordinate + \units m + \type real + N1050, \field Vertex 350 Y-coordinate + \units m + \type real + N1051, \field Vertex 350 Z-coordinate + \units m + \type real + N1052, \field Vertex 351 X-coordinate + \units m + \type real + N1053, \field Vertex 351 Y-coordinate + \units m + \type real + N1054, \field Vertex 351 Z-coordinate + \units m + \type real + N1055, \field Vertex 352 X-coordinate + \units m + \type real + N1056, \field Vertex 352 Y-coordinate + \units m + \type real + N1057, \field Vertex 352 Z-coordinate + \units m + \type real + N1058, \field Vertex 353 X-coordinate + \units m + \type real + N1059, \field Vertex 353 Y-coordinate + \units m + \type real + N1060, \field Vertex 353 Z-coordinate + \units m + \type real + N1061, \field Vertex 354 X-coordinate + \units m + \type real + N1062, \field Vertex 354 Y-coordinate + \units m + \type real + N1063, \field Vertex 354 Z-coordinate + \units m + \type real + N1064, \field Vertex 355 X-coordinate + \units m + \type real + N1065, \field Vertex 355 Y-coordinate + \units m + \type real + N1066, \field Vertex 355 Z-coordinate + \units m + \type real + N1067, \field Vertex 356 X-coordinate + \units m + \type real + N1068, \field Vertex 356 Y-coordinate + \units m + \type real + N1069, \field Vertex 356 Z-coordinate + \units m + \type real + N1070, \field Vertex 357 X-coordinate + \units m + \type real + N1071, \field Vertex 357 Y-coordinate + \units m + \type real + N1072, \field Vertex 357 Z-coordinate + \units m + \type real + N1073, \field Vertex 358 X-coordinate + \units m + \type real + N1074, \field Vertex 358 Y-coordinate + \units m + \type real + N1075, \field Vertex 358 Z-coordinate + \units m + \type real + N1076, \field Vertex 359 X-coordinate + \units m + \type real + N1077, \field Vertex 359 Y-coordinate + \units m + \type real + N1078, \field Vertex 359 Z-coordinate + \units m + \type real + N1079, \field Vertex 360 X-coordinate + \units m + \type real + N1080, \field Vertex 360 Y-coordinate + \units m + \type real + N1081; \field Vertex 360 Z-coordinate \units m \type real @@ -16792,7 +23272,2167 @@ Shading:Zone:Detailed, N360, \field Vertex 120 Y-coordinate \units m \type real - N361; \field Vertex 120 Z-coordinate + N361, \field Vertex 120 Z-coordinate + \units m + \type real + N362, \field Vertex 121 X-coordinate + \units m + \type real + N363, \field Vertex 121 Y-coordinate + \units m + \type real + N364, \field Vertex 121 Z-coordinate + \units m + \type real + N365, \field Vertex 122 X-coordinate + \units m + \type real + N366, \field Vertex 122 Y-coordinate + \units m + \type real + N367, \field Vertex 122 Z-coordinate + \units m + \type real + N368, \field Vertex 123 X-coordinate + \units m + \type real + N369, \field Vertex 123 Y-coordinate + \units m + \type real + N370, \field Vertex 123 Z-coordinate + \units m + \type real + N371, \field Vertex 124 X-coordinate + \units m + \type real + N372, \field Vertex 124 Y-coordinate + \units m + \type real + N373, \field Vertex 124 Z-coordinate + \units m + \type real + N374, \field Vertex 125 X-coordinate + \units m + \type real + N375, \field Vertex 125 Y-coordinate + \units m + \type real + N376, \field Vertex 125 Z-coordinate + \units m + \type real + N377, \field Vertex 126 X-coordinate + \units m + \type real + N378, \field Vertex 126 Y-coordinate + \units m + \type real + N379, \field Vertex 126 Z-coordinate + \units m + \type real + N380, \field Vertex 127 X-coordinate + \units m + \type real + N381, \field Vertex 127 Y-coordinate + \units m + \type real + N382, \field Vertex 127 Z-coordinate + \units m + \type real + N383, \field Vertex 128 X-coordinate + \units m + \type real + N384, \field Vertex 128 Y-coordinate + \units m + \type real + N385, \field Vertex 128 Z-coordinate + \units m + \type real + N386, \field Vertex 129 X-coordinate + \units m + \type real + N387, \field Vertex 129 Y-coordinate + \units m + \type real + N388, \field Vertex 129 Z-coordinate + \units m + \type real + N389, \field Vertex 130 X-coordinate + \units m + \type real + N390, \field Vertex 130 Y-coordinate + \units m + \type real + N391, \field Vertex 130 Z-coordinate + \units m + \type real + N392, \field Vertex 131 X-coordinate + \units m + \type real + N393, \field Vertex 131 Y-coordinate + \units m + \type real + N394, \field Vertex 131 Z-coordinate + \units m + \type real + N395, \field Vertex 132 X-coordinate + \units m + \type real + N396, \field Vertex 132 Y-coordinate + \units m + \type real + N397, \field Vertex 132 Z-coordinate + \units m + \type real + N398, \field Vertex 133 X-coordinate + \units m + \type real + N399, \field Vertex 133 Y-coordinate + \units m + \type real + N400, \field Vertex 133 Z-coordinate + \units m + \type real + N401, \field Vertex 134 X-coordinate + \units m + \type real + N402, \field Vertex 134 Y-coordinate + \units m + \type real + N403, \field Vertex 134 Z-coordinate + \units m + \type real + N404, \field Vertex 135 X-coordinate + \units m + \type real + N405, \field Vertex 135 Y-coordinate + \units m + \type real + N406, \field Vertex 135 Z-coordinate + \units m + \type real + N407, \field Vertex 136 X-coordinate + \units m + \type real + N408, \field Vertex 136 Y-coordinate + \units m + \type real + N409, \field Vertex 136 Z-coordinate + \units m + \type real + N410, \field Vertex 137 X-coordinate + \units m + \type real + N411, \field Vertex 137 Y-coordinate + \units m + \type real + N412, \field Vertex 137 Z-coordinate + \units m + \type real + N413, \field Vertex 138 X-coordinate + \units m + \type real + N414, \field Vertex 138 Y-coordinate + \units m + \type real + N415, \field Vertex 138 Z-coordinate + \units m + \type real + N416, \field Vertex 139 X-coordinate + \units m + \type real + N417, \field Vertex 139 Y-coordinate + \units m + \type real + N418, \field Vertex 139 Z-coordinate + \units m + \type real + N419, \field Vertex 140 X-coordinate + \units m + \type real + N420, \field Vertex 140 Y-coordinate + \units m + \type real + N421, \field Vertex 140 Z-coordinate + \units m + \type real + N422, \field Vertex 141 X-coordinate + \units m + \type real + N423, \field Vertex 141 Y-coordinate + \units m + \type real + N424, \field Vertex 141 Z-coordinate + \units m + \type real + N425, \field Vertex 142 X-coordinate + \units m + \type real + N426, \field Vertex 142 Y-coordinate + \units m + \type real + N427, \field Vertex 142 Z-coordinate + \units m + \type real + N428, \field Vertex 143 X-coordinate + \units m + \type real + N429, \field Vertex 143 Y-coordinate + \units m + \type real + N430, \field Vertex 143 Z-coordinate + \units m + \type real + N431, \field Vertex 144 X-coordinate + \units m + \type real + N432, \field Vertex 144 Y-coordinate + \units m + \type real + N433, \field Vertex 144 Z-coordinate + \units m + \type real + N434, \field Vertex 145 X-coordinate + \units m + \type real + N435, \field Vertex 145 Y-coordinate + \units m + \type real + N436, \field Vertex 145 Z-coordinate + \units m + \type real + N437, \field Vertex 146 X-coordinate + \units m + \type real + N438, \field Vertex 146 Y-coordinate + \units m + \type real + N439, \field Vertex 146 Z-coordinate + \units m + \type real + N440, \field Vertex 147 X-coordinate + \units m + \type real + N441, \field Vertex 147 Y-coordinate + \units m + \type real + N442, \field Vertex 147 Z-coordinate + \units m + \type real + N443, \field Vertex 148 X-coordinate + \units m + \type real + N444, \field Vertex 148 Y-coordinate + \units m + \type real + N445, \field Vertex 148 Z-coordinate + \units m + \type real + N446, \field Vertex 149 X-coordinate + \units m + \type real + N447, \field Vertex 149 Y-coordinate + \units m + \type real + N448, \field Vertex 149 Z-coordinate + \units m + \type real + N449, \field Vertex 150 X-coordinate + \units m + \type real + N450, \field Vertex 150 Y-coordinate + \units m + \type real + N451, \field Vertex 150 Z-coordinate + \units m + \type real + N452, \field Vertex 151 X-coordinate + \units m + \type real + N453, \field Vertex 151 Y-coordinate + \units m + \type real + N454, \field Vertex 151 Z-coordinate + \units m + \type real + N455, \field Vertex 152 X-coordinate + \units m + \type real + N456, \field Vertex 152 Y-coordinate + \units m + \type real + N457, \field Vertex 152 Z-coordinate + \units m + \type real + N458, \field Vertex 153 X-coordinate + \units m + \type real + N459, \field Vertex 153 Y-coordinate + \units m + \type real + N460, \field Vertex 153 Z-coordinate + \units m + \type real + N461, \field Vertex 154 X-coordinate + \units m + \type real + N462, \field Vertex 154 Y-coordinate + \units m + \type real + N463, \field Vertex 154 Z-coordinate + \units m + \type real + N464, \field Vertex 155 X-coordinate + \units m + \type real + N465, \field Vertex 155 Y-coordinate + \units m + \type real + N466, \field Vertex 155 Z-coordinate + \units m + \type real + N467, \field Vertex 156 X-coordinate + \units m + \type real + N468, \field Vertex 156 Y-coordinate + \units m + \type real + N469, \field Vertex 156 Z-coordinate + \units m + \type real + N470, \field Vertex 157 X-coordinate + \units m + \type real + N471, \field Vertex 157 Y-coordinate + \units m + \type real + N472, \field Vertex 157 Z-coordinate + \units m + \type real + N473, \field Vertex 158 X-coordinate + \units m + \type real + N474, \field Vertex 158 Y-coordinate + \units m + \type real + N475, \field Vertex 158 Z-coordinate + \units m + \type real + N476, \field Vertex 159 X-coordinate + \units m + \type real + N477, \field Vertex 159 Y-coordinate + \units m + \type real + N478, \field Vertex 159 Z-coordinate + \units m + \type real + N479, \field Vertex 160 X-coordinate + \units m + \type real + N480, \field Vertex 160 Y-coordinate + \units m + \type real + N481, \field Vertex 160 Z-coordinate + \units m + \type real + N482, \field Vertex 161 X-coordinate + \units m + \type real + N483, \field Vertex 161 Y-coordinate + \units m + \type real + N484, \field Vertex 161 Z-coordinate + \units m + \type real + N485, \field Vertex 162 X-coordinate + \units m + \type real + N486, \field Vertex 162 Y-coordinate + \units m + \type real + N487, \field Vertex 162 Z-coordinate + \units m + \type real + N488, \field Vertex 163 X-coordinate + \units m + \type real + N489, \field Vertex 163 Y-coordinate + \units m + \type real + N490, \field Vertex 163 Z-coordinate + \units m + \type real + N491, \field Vertex 164 X-coordinate + \units m + \type real + N492, \field Vertex 164 Y-coordinate + \units m + \type real + N493, \field Vertex 164 Z-coordinate + \units m + \type real + N494, \field Vertex 165 X-coordinate + \units m + \type real + N495, \field Vertex 165 Y-coordinate + \units m + \type real + N496, \field Vertex 165 Z-coordinate + \units m + \type real + N497, \field Vertex 166 X-coordinate + \units m + \type real + N498, \field Vertex 166 Y-coordinate + \units m + \type real + N499, \field Vertex 166 Z-coordinate + \units m + \type real + N500, \field Vertex 167 X-coordinate + \units m + \type real + N501, \field Vertex 167 Y-coordinate + \units m + \type real + N502, \field Vertex 167 Z-coordinate + \units m + \type real + N503, \field Vertex 168 X-coordinate + \units m + \type real + N504, \field Vertex 168 Y-coordinate + \units m + \type real + N505, \field Vertex 168 Z-coordinate + \units m + \type real + N506, \field Vertex 169 X-coordinate + \units m + \type real + N507, \field Vertex 169 Y-coordinate + \units m + \type real + N508, \field Vertex 169 Z-coordinate + \units m + \type real + N509, \field Vertex 170 X-coordinate + \units m + \type real + N510, \field Vertex 170 Y-coordinate + \units m + \type real + N511, \field Vertex 170 Z-coordinate + \units m + \type real + N512, \field Vertex 171 X-coordinate + \units m + \type real + N513, \field Vertex 171 Y-coordinate + \units m + \type real + N514, \field Vertex 171 Z-coordinate + \units m + \type real + N515, \field Vertex 172 X-coordinate + \units m + \type real + N516, \field Vertex 172 Y-coordinate + \units m + \type real + N517, \field Vertex 172 Z-coordinate + \units m + \type real + N518, \field Vertex 173 X-coordinate + \units m + \type real + N519, \field Vertex 173 Y-coordinate + \units m + \type real + N520, \field Vertex 173 Z-coordinate + \units m + \type real + N521, \field Vertex 174 X-coordinate + \units m + \type real + N522, \field Vertex 174 Y-coordinate + \units m + \type real + N523, \field Vertex 174 Z-coordinate + \units m + \type real + N524, \field Vertex 175 X-coordinate + \units m + \type real + N525, \field Vertex 175 Y-coordinate + \units m + \type real + N526, \field Vertex 175 Z-coordinate + \units m + \type real + N527, \field Vertex 176 X-coordinate + \units m + \type real + N528, \field Vertex 176 Y-coordinate + \units m + \type real + N529, \field Vertex 176 Z-coordinate + \units m + \type real + N530, \field Vertex 177 X-coordinate + \units m + \type real + N531, \field Vertex 177 Y-coordinate + \units m + \type real + N532, \field Vertex 177 Z-coordinate + \units m + \type real + N533, \field Vertex 178 X-coordinate + \units m + \type real + N534, \field Vertex 178 Y-coordinate + \units m + \type real + N535, \field Vertex 178 Z-coordinate + \units m + \type real + N536, \field Vertex 179 X-coordinate + \units m + \type real + N537, \field Vertex 179 Y-coordinate + \units m + \type real + N538, \field Vertex 179 Z-coordinate + \units m + \type real + N539, \field Vertex 180 X-coordinate + \units m + \type real + N540, \field Vertex 180 Y-coordinate + \units m + \type real + N541, \field Vertex 180 Z-coordinate + \units m + \type real + N542, \field Vertex 181 X-coordinate + \units m + \type real + N543, \field Vertex 181 Y-coordinate + \units m + \type real + N544, \field Vertex 181 Z-coordinate + \units m + \type real + N545, \field Vertex 182 X-coordinate + \units m + \type real + N546, \field Vertex 182 Y-coordinate + \units m + \type real + N547, \field Vertex 182 Z-coordinate + \units m + \type real + N548, \field Vertex 183 X-coordinate + \units m + \type real + N549, \field Vertex 183 Y-coordinate + \units m + \type real + N550, \field Vertex 183 Z-coordinate + \units m + \type real + N551, \field Vertex 184 X-coordinate + \units m + \type real + N552, \field Vertex 184 Y-coordinate + \units m + \type real + N553, \field Vertex 184 Z-coordinate + \units m + \type real + N554, \field Vertex 185 X-coordinate + \units m + \type real + N555, \field Vertex 185 Y-coordinate + \units m + \type real + N556, \field Vertex 185 Z-coordinate + \units m + \type real + N557, \field Vertex 186 X-coordinate + \units m + \type real + N558, \field Vertex 186 Y-coordinate + \units m + \type real + N559, \field Vertex 186 Z-coordinate + \units m + \type real + N560, \field Vertex 187 X-coordinate + \units m + \type real + N561, \field Vertex 187 Y-coordinate + \units m + \type real + N562, \field Vertex 187 Z-coordinate + \units m + \type real + N563, \field Vertex 188 X-coordinate + \units m + \type real + N564, \field Vertex 188 Y-coordinate + \units m + \type real + N565, \field Vertex 188 Z-coordinate + \units m + \type real + N566, \field Vertex 189 X-coordinate + \units m + \type real + N567, \field Vertex 189 Y-coordinate + \units m + \type real + N568, \field Vertex 189 Z-coordinate + \units m + \type real + N569, \field Vertex 190 X-coordinate + \units m + \type real + N570, \field Vertex 190 Y-coordinate + \units m + \type real + N571, \field Vertex 190 Z-coordinate + \units m + \type real + N572, \field Vertex 191 X-coordinate + \units m + \type real + N573, \field Vertex 191 Y-coordinate + \units m + \type real + N574, \field Vertex 191 Z-coordinate + \units m + \type real + N575, \field Vertex 192 X-coordinate + \units m + \type real + N576, \field Vertex 192 Y-coordinate + \units m + \type real + N577, \field Vertex 192 Z-coordinate + \units m + \type real + N578, \field Vertex 193 X-coordinate + \units m + \type real + N579, \field Vertex 193 Y-coordinate + \units m + \type real + N580, \field Vertex 193 Z-coordinate + \units m + \type real + N581, \field Vertex 194 X-coordinate + \units m + \type real + N582, \field Vertex 194 Y-coordinate + \units m + \type real + N583, \field Vertex 194 Z-coordinate + \units m + \type real + N584, \field Vertex 195 X-coordinate + \units m + \type real + N585, \field Vertex 195 Y-coordinate + \units m + \type real + N586, \field Vertex 195 Z-coordinate + \units m + \type real + N587, \field Vertex 196 X-coordinate + \units m + \type real + N588, \field Vertex 196 Y-coordinate + \units m + \type real + N589, \field Vertex 196 Z-coordinate + \units m + \type real + N590, \field Vertex 197 X-coordinate + \units m + \type real + N591, \field Vertex 197 Y-coordinate + \units m + \type real + N592, \field Vertex 197 Z-coordinate + \units m + \type real + N593, \field Vertex 198 X-coordinate + \units m + \type real + N594, \field Vertex 198 Y-coordinate + \units m + \type real + N595, \field Vertex 198 Z-coordinate + \units m + \type real + N596, \field Vertex 199 X-coordinate + \units m + \type real + N597, \field Vertex 199 Y-coordinate + \units m + \type real + N598, \field Vertex 199 Z-coordinate + \units m + \type real + N599, \field Vertex 200 X-coordinate + \units m + \type real + N600, \field Vertex 200 Y-coordinate + \units m + \type real + N601, \field Vertex 200 Z-coordinate + \units m + \type real + N602, \field Vertex 201 X-coordinate + \units m + \type real + N603, \field Vertex 201 Y-coordinate + \units m + \type real + N604, \field Vertex 201 Z-coordinate + \units m + \type real + N605, \field Vertex 202 X-coordinate + \units m + \type real + N606, \field Vertex 202 Y-coordinate + \units m + \type real + N607, \field Vertex 202 Z-coordinate + \units m + \type real + N608, \field Vertex 203 X-coordinate + \units m + \type real + N609, \field Vertex 203 Y-coordinate + \units m + \type real + N610, \field Vertex 203 Z-coordinate + \units m + \type real + N611, \field Vertex 204 X-coordinate + \units m + \type real + N612, \field Vertex 204 Y-coordinate + \units m + \type real + N613, \field Vertex 204 Z-coordinate + \units m + \type real + N614, \field Vertex 205 X-coordinate + \units m + \type real + N615, \field Vertex 205 Y-coordinate + \units m + \type real + N616, \field Vertex 205 Z-coordinate + \units m + \type real + N617, \field Vertex 206 X-coordinate + \units m + \type real + N618, \field Vertex 206 Y-coordinate + \units m + \type real + N619, \field Vertex 206 Z-coordinate + \units m + \type real + N620, \field Vertex 207 X-coordinate + \units m + \type real + N621, \field Vertex 207 Y-coordinate + \units m + \type real + N622, \field Vertex 207 Z-coordinate + \units m + \type real + N623, \field Vertex 208 X-coordinate + \units m + \type real + N624, \field Vertex 208 Y-coordinate + \units m + \type real + N625, \field Vertex 208 Z-coordinate + \units m + \type real + N626, \field Vertex 209 X-coordinate + \units m + \type real + N627, \field Vertex 209 Y-coordinate + \units m + \type real + N628, \field Vertex 209 Z-coordinate + \units m + \type real + N629, \field Vertex 210 X-coordinate + \units m + \type real + N630, \field Vertex 210 Y-coordinate + \units m + \type real + N631, \field Vertex 210 Z-coordinate + \units m + \type real + N632, \field Vertex 211 X-coordinate + \units m + \type real + N633, \field Vertex 211 Y-coordinate + \units m + \type real + N634, \field Vertex 211 Z-coordinate + \units m + \type real + N635, \field Vertex 212 X-coordinate + \units m + \type real + N636, \field Vertex 212 Y-coordinate + \units m + \type real + N637, \field Vertex 212 Z-coordinate + \units m + \type real + N638, \field Vertex 213 X-coordinate + \units m + \type real + N639, \field Vertex 213 Y-coordinate + \units m + \type real + N640, \field Vertex 213 Z-coordinate + \units m + \type real + N641, \field Vertex 214 X-coordinate + \units m + \type real + N642, \field Vertex 214 Y-coordinate + \units m + \type real + N643, \field Vertex 214 Z-coordinate + \units m + \type real + N644, \field Vertex 215 X-coordinate + \units m + \type real + N645, \field Vertex 215 Y-coordinate + \units m + \type real + N646, \field Vertex 215 Z-coordinate + \units m + \type real + N647, \field Vertex 216 X-coordinate + \units m + \type real + N648, \field Vertex 216 Y-coordinate + \units m + \type real + N649, \field Vertex 216 Z-coordinate + \units m + \type real + N650, \field Vertex 217 X-coordinate + \units m + \type real + N651, \field Vertex 217 Y-coordinate + \units m + \type real + N652, \field Vertex 217 Z-coordinate + \units m + \type real + N653, \field Vertex 218 X-coordinate + \units m + \type real + N654, \field Vertex 218 Y-coordinate + \units m + \type real + N655, \field Vertex 218 Z-coordinate + \units m + \type real + N656, \field Vertex 219 X-coordinate + \units m + \type real + N657, \field Vertex 219 Y-coordinate + \units m + \type real + N658, \field Vertex 219 Z-coordinate + \units m + \type real + N659, \field Vertex 220 X-coordinate + \units m + \type real + N660, \field Vertex 220 Y-coordinate + \units m + \type real + N661, \field Vertex 220 Z-coordinate + \units m + \type real + N662, \field Vertex 221 X-coordinate + \units m + \type real + N663, \field Vertex 221 Y-coordinate + \units m + \type real + N664, \field Vertex 221 Z-coordinate + \units m + \type real + N665, \field Vertex 222 X-coordinate + \units m + \type real + N666, \field Vertex 222 Y-coordinate + \units m + \type real + N667, \field Vertex 222 Z-coordinate + \units m + \type real + N668, \field Vertex 223 X-coordinate + \units m + \type real + N669, \field Vertex 223 Y-coordinate + \units m + \type real + N670, \field Vertex 223 Z-coordinate + \units m + \type real + N671, \field Vertex 224 X-coordinate + \units m + \type real + N672, \field Vertex 224 Y-coordinate + \units m + \type real + N673, \field Vertex 224 Z-coordinate + \units m + \type real + N674, \field Vertex 225 X-coordinate + \units m + \type real + N675, \field Vertex 225 Y-coordinate + \units m + \type real + N676, \field Vertex 225 Z-coordinate + \units m + \type real + N677, \field Vertex 226 X-coordinate + \units m + \type real + N678, \field Vertex 226 Y-coordinate + \units m + \type real + N679, \field Vertex 226 Z-coordinate + \units m + \type real + N680, \field Vertex 227 X-coordinate + \units m + \type real + N681, \field Vertex 227 Y-coordinate + \units m + \type real + N682, \field Vertex 227 Z-coordinate + \units m + \type real + N683, \field Vertex 228 X-coordinate + \units m + \type real + N684, \field Vertex 228 Y-coordinate + \units m + \type real + N685, \field Vertex 228 Z-coordinate + \units m + \type real + N686, \field Vertex 229 X-coordinate + \units m + \type real + N687, \field Vertex 229 Y-coordinate + \units m + \type real + N688, \field Vertex 229 Z-coordinate + \units m + \type real + N689, \field Vertex 230 X-coordinate + \units m + \type real + N690, \field Vertex 230 Y-coordinate + \units m + \type real + N691, \field Vertex 230 Z-coordinate + \units m + \type real + N692, \field Vertex 231 X-coordinate + \units m + \type real + N693, \field Vertex 231 Y-coordinate + \units m + \type real + N694, \field Vertex 231 Z-coordinate + \units m + \type real + N695, \field Vertex 232 X-coordinate + \units m + \type real + N696, \field Vertex 232 Y-coordinate + \units m + \type real + N697, \field Vertex 232 Z-coordinate + \units m + \type real + N698, \field Vertex 233 X-coordinate + \units m + \type real + N699, \field Vertex 233 Y-coordinate + \units m + \type real + N700, \field Vertex 233 Z-coordinate + \units m + \type real + N701, \field Vertex 234 X-coordinate + \units m + \type real + N702, \field Vertex 234 Y-coordinate + \units m + \type real + N703, \field Vertex 234 Z-coordinate + \units m + \type real + N704, \field Vertex 235 X-coordinate + \units m + \type real + N705, \field Vertex 235 Y-coordinate + \units m + \type real + N706, \field Vertex 235 Z-coordinate + \units m + \type real + N707, \field Vertex 236 X-coordinate + \units m + \type real + N708, \field Vertex 236 Y-coordinate + \units m + \type real + N709, \field Vertex 236 Z-coordinate + \units m + \type real + N710, \field Vertex 237 X-coordinate + \units m + \type real + N711, \field Vertex 237 Y-coordinate + \units m + \type real + N712, \field Vertex 237 Z-coordinate + \units m + \type real + N713, \field Vertex 238 X-coordinate + \units m + \type real + N714, \field Vertex 238 Y-coordinate + \units m + \type real + N715, \field Vertex 238 Z-coordinate + \units m + \type real + N716, \field Vertex 239 X-coordinate + \units m + \type real + N717, \field Vertex 239 Y-coordinate + \units m + \type real + N718, \field Vertex 239 Z-coordinate + \units m + \type real + N719, \field Vertex 240 X-coordinate + \units m + \type real + N720, \field Vertex 240 Y-coordinate + \units m + \type real + N721, \field Vertex 240 Z-coordinate + \units m + \type real + N722, \field Vertex 241 X-coordinate + \units m + \type real + N723, \field Vertex 241 Y-coordinate + \units m + \type real + N724, \field Vertex 241 Z-coordinate + \units m + \type real + N725, \field Vertex 242 X-coordinate + \units m + \type real + N726, \field Vertex 242 Y-coordinate + \units m + \type real + N727, \field Vertex 242 Z-coordinate + \units m + \type real + N728, \field Vertex 243 X-coordinate + \units m + \type real + N729, \field Vertex 243 Y-coordinate + \units m + \type real + N730, \field Vertex 243 Z-coordinate + \units m + \type real + N731, \field Vertex 244 X-coordinate + \units m + \type real + N732, \field Vertex 244 Y-coordinate + \units m + \type real + N733, \field Vertex 244 Z-coordinate + \units m + \type real + N734, \field Vertex 245 X-coordinate + \units m + \type real + N735, \field Vertex 245 Y-coordinate + \units m + \type real + N736, \field Vertex 245 Z-coordinate + \units m + \type real + N737, \field Vertex 246 X-coordinate + \units m + \type real + N738, \field Vertex 246 Y-coordinate + \units m + \type real + N739, \field Vertex 246 Z-coordinate + \units m + \type real + N740, \field Vertex 247 X-coordinate + \units m + \type real + N741, \field Vertex 247 Y-coordinate + \units m + \type real + N742, \field Vertex 247 Z-coordinate + \units m + \type real + N743, \field Vertex 248 X-coordinate + \units m + \type real + N744, \field Vertex 248 Y-coordinate + \units m + \type real + N745, \field Vertex 248 Z-coordinate + \units m + \type real + N746, \field Vertex 249 X-coordinate + \units m + \type real + N747, \field Vertex 249 Y-coordinate + \units m + \type real + N748, \field Vertex 249 Z-coordinate + \units m + \type real + N749, \field Vertex 250 X-coordinate + \units m + \type real + N750, \field Vertex 250 Y-coordinate + \units m + \type real + N751, \field Vertex 250 Z-coordinate + \units m + \type real + N752, \field Vertex 251 X-coordinate + \units m + \type real + N753, \field Vertex 251 Y-coordinate + \units m + \type real + N754, \field Vertex 251 Z-coordinate + \units m + \type real + N755, \field Vertex 252 X-coordinate + \units m + \type real + N756, \field Vertex 252 Y-coordinate + \units m + \type real + N757, \field Vertex 252 Z-coordinate + \units m + \type real + N758, \field Vertex 253 X-coordinate + \units m + \type real + N759, \field Vertex 253 Y-coordinate + \units m + \type real + N760, \field Vertex 253 Z-coordinate + \units m + \type real + N761, \field Vertex 254 X-coordinate + \units m + \type real + N762, \field Vertex 254 Y-coordinate + \units m + \type real + N763, \field Vertex 254 Z-coordinate + \units m + \type real + N764, \field Vertex 255 X-coordinate + \units m + \type real + N765, \field Vertex 255 Y-coordinate + \units m + \type real + N766, \field Vertex 255 Z-coordinate + \units m + \type real + N767, \field Vertex 256 X-coordinate + \units m + \type real + N768, \field Vertex 256 Y-coordinate + \units m + \type real + N769, \field Vertex 256 Z-coordinate + \units m + \type real + N770, \field Vertex 257 X-coordinate + \units m + \type real + N771, \field Vertex 257 Y-coordinate + \units m + \type real + N772, \field Vertex 257 Z-coordinate + \units m + \type real + N773, \field Vertex 258 X-coordinate + \units m + \type real + N774, \field Vertex 258 Y-coordinate + \units m + \type real + N775, \field Vertex 258 Z-coordinate + \units m + \type real + N776, \field Vertex 259 X-coordinate + \units m + \type real + N777, \field Vertex 259 Y-coordinate + \units m + \type real + N778, \field Vertex 259 Z-coordinate + \units m + \type real + N779, \field Vertex 260 X-coordinate + \units m + \type real + N780, \field Vertex 260 Y-coordinate + \units m + \type real + N781, \field Vertex 260 Z-coordinate + \units m + \type real + N782, \field Vertex 261 X-coordinate + \units m + \type real + N783, \field Vertex 261 Y-coordinate + \units m + \type real + N784, \field Vertex 261 Z-coordinate + \units m + \type real + N785, \field Vertex 262 X-coordinate + \units m + \type real + N786, \field Vertex 262 Y-coordinate + \units m + \type real + N787, \field Vertex 262 Z-coordinate + \units m + \type real + N788, \field Vertex 263 X-coordinate + \units m + \type real + N789, \field Vertex 263 Y-coordinate + \units m + \type real + N790, \field Vertex 263 Z-coordinate + \units m + \type real + N791, \field Vertex 264 X-coordinate + \units m + \type real + N792, \field Vertex 264 Y-coordinate + \units m + \type real + N793, \field Vertex 264 Z-coordinate + \units m + \type real + N794, \field Vertex 265 X-coordinate + \units m + \type real + N795, \field Vertex 265 Y-coordinate + \units m + \type real + N796, \field Vertex 265 Z-coordinate + \units m + \type real + N797, \field Vertex 266 X-coordinate + \units m + \type real + N798, \field Vertex 266 Y-coordinate + \units m + \type real + N799, \field Vertex 266 Z-coordinate + \units m + \type real + N800, \field Vertex 267 X-coordinate + \units m + \type real + N801, \field Vertex 267 Y-coordinate + \units m + \type real + N802, \field Vertex 267 Z-coordinate + \units m + \type real + N803, \field Vertex 268 X-coordinate + \units m + \type real + N804, \field Vertex 268 Y-coordinate + \units m + \type real + N805, \field Vertex 268 Z-coordinate + \units m + \type real + N806, \field Vertex 269 X-coordinate + \units m + \type real + N807, \field Vertex 269 Y-coordinate + \units m + \type real + N808, \field Vertex 269 Z-coordinate + \units m + \type real + N809, \field Vertex 270 X-coordinate + \units m + \type real + N810, \field Vertex 270 Y-coordinate + \units m + \type real + N811, \field Vertex 270 Z-coordinate + \units m + \type real + N812, \field Vertex 271 X-coordinate + \units m + \type real + N813, \field Vertex 271 Y-coordinate + \units m + \type real + N814, \field Vertex 271 Z-coordinate + \units m + \type real + N815, \field Vertex 272 X-coordinate + \units m + \type real + N816, \field Vertex 272 Y-coordinate + \units m + \type real + N817, \field Vertex 272 Z-coordinate + \units m + \type real + N818, \field Vertex 273 X-coordinate + \units m + \type real + N819, \field Vertex 273 Y-coordinate + \units m + \type real + N820, \field Vertex 273 Z-coordinate + \units m + \type real + N821, \field Vertex 274 X-coordinate + \units m + \type real + N822, \field Vertex 274 Y-coordinate + \units m + \type real + N823, \field Vertex 274 Z-coordinate + \units m + \type real + N824, \field Vertex 275 X-coordinate + \units m + \type real + N825, \field Vertex 275 Y-coordinate + \units m + \type real + N826, \field Vertex 275 Z-coordinate + \units m + \type real + N827, \field Vertex 276 X-coordinate + \units m + \type real + N828, \field Vertex 276 Y-coordinate + \units m + \type real + N829, \field Vertex 276 Z-coordinate + \units m + \type real + N830, \field Vertex 277 X-coordinate + \units m + \type real + N831, \field Vertex 277 Y-coordinate + \units m + \type real + N832, \field Vertex 277 Z-coordinate + \units m + \type real + N833, \field Vertex 278 X-coordinate + \units m + \type real + N834, \field Vertex 278 Y-coordinate + \units m + \type real + N835, \field Vertex 278 Z-coordinate + \units m + \type real + N836, \field Vertex 279 X-coordinate + \units m + \type real + N837, \field Vertex 279 Y-coordinate + \units m + \type real + N838, \field Vertex 279 Z-coordinate + \units m + \type real + N839, \field Vertex 280 X-coordinate + \units m + \type real + N840, \field Vertex 280 Y-coordinate + \units m + \type real + N841, \field Vertex 280 Z-coordinate + \units m + \type real + N842, \field Vertex 281 X-coordinate + \units m + \type real + N843, \field Vertex 281 Y-coordinate + \units m + \type real + N844, \field Vertex 281 Z-coordinate + \units m + \type real + N845, \field Vertex 282 X-coordinate + \units m + \type real + N846, \field Vertex 282 Y-coordinate + \units m + \type real + N847, \field Vertex 282 Z-coordinate + \units m + \type real + N848, \field Vertex 283 X-coordinate + \units m + \type real + N849, \field Vertex 283 Y-coordinate + \units m + \type real + N850, \field Vertex 283 Z-coordinate + \units m + \type real + N851, \field Vertex 284 X-coordinate + \units m + \type real + N852, \field Vertex 284 Y-coordinate + \units m + \type real + N853, \field Vertex 284 Z-coordinate + \units m + \type real + N854, \field Vertex 285 X-coordinate + \units m + \type real + N855, \field Vertex 285 Y-coordinate + \units m + \type real + N856, \field Vertex 285 Z-coordinate + \units m + \type real + N857, \field Vertex 286 X-coordinate + \units m + \type real + N858, \field Vertex 286 Y-coordinate + \units m + \type real + N859, \field Vertex 286 Z-coordinate + \units m + \type real + N860, \field Vertex 287 X-coordinate + \units m + \type real + N861, \field Vertex 287 Y-coordinate + \units m + \type real + N862, \field Vertex 287 Z-coordinate + \units m + \type real + N863, \field Vertex 288 X-coordinate + \units m + \type real + N864, \field Vertex 288 Y-coordinate + \units m + \type real + N865, \field Vertex 288 Z-coordinate + \units m + \type real + N866, \field Vertex 289 X-coordinate + \units m + \type real + N867, \field Vertex 289 Y-coordinate + \units m + \type real + N868, \field Vertex 289 Z-coordinate + \units m + \type real + N869, \field Vertex 290 X-coordinate + \units m + \type real + N870, \field Vertex 290 Y-coordinate + \units m + \type real + N871, \field Vertex 290 Z-coordinate + \units m + \type real + N872, \field Vertex 291 X-coordinate + \units m + \type real + N873, \field Vertex 291 Y-coordinate + \units m + \type real + N874, \field Vertex 291 Z-coordinate + \units m + \type real + N875, \field Vertex 292 X-coordinate + \units m + \type real + N876, \field Vertex 292 Y-coordinate + \units m + \type real + N877, \field Vertex 292 Z-coordinate + \units m + \type real + N878, \field Vertex 293 X-coordinate + \units m + \type real + N879, \field Vertex 293 Y-coordinate + \units m + \type real + N880, \field Vertex 293 Z-coordinate + \units m + \type real + N881, \field Vertex 294 X-coordinate + \units m + \type real + N882, \field Vertex 294 Y-coordinate + \units m + \type real + N883, \field Vertex 294 Z-coordinate + \units m + \type real + N884, \field Vertex 295 X-coordinate + \units m + \type real + N885, \field Vertex 295 Y-coordinate + \units m + \type real + N886, \field Vertex 295 Z-coordinate + \units m + \type real + N887, \field Vertex 296 X-coordinate + \units m + \type real + N888, \field Vertex 296 Y-coordinate + \units m + \type real + N889, \field Vertex 296 Z-coordinate + \units m + \type real + N890, \field Vertex 297 X-coordinate + \units m + \type real + N891, \field Vertex 297 Y-coordinate + \units m + \type real + N892, \field Vertex 297 Z-coordinate + \units m + \type real + N893, \field Vertex 298 X-coordinate + \units m + \type real + N894, \field Vertex 298 Y-coordinate + \units m + \type real + N895, \field Vertex 298 Z-coordinate + \units m + \type real + N896, \field Vertex 299 X-coordinate + \units m + \type real + N897, \field Vertex 299 Y-coordinate + \units m + \type real + N898, \field Vertex 299 Z-coordinate + \units m + \type real + N899, \field Vertex 300 X-coordinate + \units m + \type real + N900, \field Vertex 300 Y-coordinate + \units m + \type real + N901, \field Vertex 300 Z-coordinate + \units m + \type real + N902, \field Vertex 301 X-coordinate + \units m + \type real + N903, \field Vertex 301 Y-coordinate + \units m + \type real + N904, \field Vertex 301 Z-coordinate + \units m + \type real + N905, \field Vertex 302 X-coordinate + \units m + \type real + N906, \field Vertex 302 Y-coordinate + \units m + \type real + N907, \field Vertex 302 Z-coordinate + \units m + \type real + N908, \field Vertex 303 X-coordinate + \units m + \type real + N909, \field Vertex 303 Y-coordinate + \units m + \type real + N910, \field Vertex 303 Z-coordinate + \units m + \type real + N911, \field Vertex 304 X-coordinate + \units m + \type real + N912, \field Vertex 304 Y-coordinate + \units m + \type real + N913, \field Vertex 304 Z-coordinate + \units m + \type real + N914, \field Vertex 305 X-coordinate + \units m + \type real + N915, \field Vertex 305 Y-coordinate + \units m + \type real + N916, \field Vertex 305 Z-coordinate + \units m + \type real + N917, \field Vertex 306 X-coordinate + \units m + \type real + N918, \field Vertex 306 Y-coordinate + \units m + \type real + N919, \field Vertex 306 Z-coordinate + \units m + \type real + N920, \field Vertex 307 X-coordinate + \units m + \type real + N921, \field Vertex 307 Y-coordinate + \units m + \type real + N922, \field Vertex 307 Z-coordinate + \units m + \type real + N923, \field Vertex 308 X-coordinate + \units m + \type real + N924, \field Vertex 308 Y-coordinate + \units m + \type real + N925, \field Vertex 308 Z-coordinate + \units m + \type real + N926, \field Vertex 309 X-coordinate + \units m + \type real + N927, \field Vertex 309 Y-coordinate + \units m + \type real + N928, \field Vertex 309 Z-coordinate + \units m + \type real + N929, \field Vertex 310 X-coordinate + \units m + \type real + N930, \field Vertex 310 Y-coordinate + \units m + \type real + N931, \field Vertex 310 Z-coordinate + \units m + \type real + N932, \field Vertex 311 X-coordinate + \units m + \type real + N933, \field Vertex 311 Y-coordinate + \units m + \type real + N934, \field Vertex 311 Z-coordinate + \units m + \type real + N935, \field Vertex 312 X-coordinate + \units m + \type real + N936, \field Vertex 312 Y-coordinate + \units m + \type real + N937, \field Vertex 312 Z-coordinate + \units m + \type real + N938, \field Vertex 313 X-coordinate + \units m + \type real + N939, \field Vertex 313 Y-coordinate + \units m + \type real + N940, \field Vertex 313 Z-coordinate + \units m + \type real + N941, \field Vertex 314 X-coordinate + \units m + \type real + N942, \field Vertex 314 Y-coordinate + \units m + \type real + N943, \field Vertex 314 Z-coordinate + \units m + \type real + N944, \field Vertex 315 X-coordinate + \units m + \type real + N945, \field Vertex 315 Y-coordinate + \units m + \type real + N946, \field Vertex 315 Z-coordinate + \units m + \type real + N947, \field Vertex 316 X-coordinate + \units m + \type real + N948, \field Vertex 316 Y-coordinate + \units m + \type real + N949, \field Vertex 316 Z-coordinate + \units m + \type real + N950, \field Vertex 317 X-coordinate + \units m + \type real + N951, \field Vertex 317 Y-coordinate + \units m + \type real + N952, \field Vertex 317 Z-coordinate + \units m + \type real + N953, \field Vertex 318 X-coordinate + \units m + \type real + N954, \field Vertex 318 Y-coordinate + \units m + \type real + N955, \field Vertex 318 Z-coordinate + \units m + \type real + N956, \field Vertex 319 X-coordinate + \units m + \type real + N957, \field Vertex 319 Y-coordinate + \units m + \type real + N958, \field Vertex 319 Z-coordinate + \units m + \type real + N959, \field Vertex 320 X-coordinate + \units m + \type real + N960, \field Vertex 320 Y-coordinate + \units m + \type real + N961, \field Vertex 320 Z-coordinate + \units m + \type real + N962, \field Vertex 321 X-coordinate + \units m + \type real + N963, \field Vertex 321 Y-coordinate + \units m + \type real + N964, \field Vertex 321 Z-coordinate + \units m + \type real + N965, \field Vertex 322 X-coordinate + \units m + \type real + N966, \field Vertex 322 Y-coordinate + \units m + \type real + N967, \field Vertex 322 Z-coordinate + \units m + \type real + N968, \field Vertex 323 X-coordinate + \units m + \type real + N969, \field Vertex 323 Y-coordinate + \units m + \type real + N970, \field Vertex 323 Z-coordinate + \units m + \type real + N971, \field Vertex 324 X-coordinate + \units m + \type real + N972, \field Vertex 324 Y-coordinate + \units m + \type real + N973, \field Vertex 324 Z-coordinate + \units m + \type real + N974, \field Vertex 325 X-coordinate + \units m + \type real + N975, \field Vertex 325 Y-coordinate + \units m + \type real + N976, \field Vertex 325 Z-coordinate + \units m + \type real + N977, \field Vertex 326 X-coordinate + \units m + \type real + N978, \field Vertex 326 Y-coordinate + \units m + \type real + N979, \field Vertex 326 Z-coordinate + \units m + \type real + N980, \field Vertex 327 X-coordinate + \units m + \type real + N981, \field Vertex 327 Y-coordinate + \units m + \type real + N982, \field Vertex 327 Z-coordinate + \units m + \type real + N983, \field Vertex 328 X-coordinate + \units m + \type real + N984, \field Vertex 328 Y-coordinate + \units m + \type real + N985, \field Vertex 328 Z-coordinate + \units m + \type real + N986, \field Vertex 329 X-coordinate + \units m + \type real + N987, \field Vertex 329 Y-coordinate + \units m + \type real + N988, \field Vertex 329 Z-coordinate + \units m + \type real + N989, \field Vertex 330 X-coordinate + \units m + \type real + N990, \field Vertex 330 Y-coordinate + \units m + \type real + N991, \field Vertex 330 Z-coordinate + \units m + \type real + N992, \field Vertex 331 X-coordinate + \units m + \type real + N993, \field Vertex 331 Y-coordinate + \units m + \type real + N994, \field Vertex 331 Z-coordinate + \units m + \type real + N995, \field Vertex 332 X-coordinate + \units m + \type real + N996, \field Vertex 332 Y-coordinate + \units m + \type real + N997, \field Vertex 332 Z-coordinate + \units m + \type real + N998, \field Vertex 333 X-coordinate + \units m + \type real + N999, \field Vertex 333 Y-coordinate + \units m + \type real + N1000, \field Vertex 333 Z-coordinate + \units m + \type real + N1001, \field Vertex 334 X-coordinate + \units m + \type real + N1002, \field Vertex 334 Y-coordinate + \units m + \type real + N1003, \field Vertex 334 Z-coordinate + \units m + \type real + N1004, \field Vertex 335 X-coordinate + \units m + \type real + N1005, \field Vertex 335 Y-coordinate + \units m + \type real + N1006, \field Vertex 335 Z-coordinate + \units m + \type real + N1007, \field Vertex 336 X-coordinate + \units m + \type real + N1008, \field Vertex 336 Y-coordinate + \units m + \type real + N1009, \field Vertex 336 Z-coordinate + \units m + \type real + N1010, \field Vertex 337 X-coordinate + \units m + \type real + N1011, \field Vertex 337 Y-coordinate + \units m + \type real + N1012, \field Vertex 337 Z-coordinate + \units m + \type real + N1013, \field Vertex 338 X-coordinate + \units m + \type real + N1014, \field Vertex 338 Y-coordinate + \units m + \type real + N1015, \field Vertex 338 Z-coordinate + \units m + \type real + N1016, \field Vertex 339 X-coordinate + \units m + \type real + N1017, \field Vertex 339 Y-coordinate + \units m + \type real + N1018, \field Vertex 339 Z-coordinate + \units m + \type real + N1019, \field Vertex 340 X-coordinate + \units m + \type real + N1020, \field Vertex 340 Y-coordinate + \units m + \type real + N1021, \field Vertex 340 Z-coordinate + \units m + \type real + N1022, \field Vertex 341 X-coordinate + \units m + \type real + N1023, \field Vertex 341 Y-coordinate + \units m + \type real + N1024, \field Vertex 341 Z-coordinate + \units m + \type real + N1025, \field Vertex 342 X-coordinate + \units m + \type real + N1026, \field Vertex 342 Y-coordinate + \units m + \type real + N1027, \field Vertex 342 Z-coordinate + \units m + \type real + N1028, \field Vertex 343 X-coordinate + \units m + \type real + N1029, \field Vertex 343 Y-coordinate + \units m + \type real + N1030, \field Vertex 343 Z-coordinate + \units m + \type real + N1031, \field Vertex 344 X-coordinate + \units m + \type real + N1032, \field Vertex 344 Y-coordinate + \units m + \type real + N1033, \field Vertex 344 Z-coordinate + \units m + \type real + N1034, \field Vertex 345 X-coordinate + \units m + \type real + N1035, \field Vertex 345 Y-coordinate + \units m + \type real + N1036, \field Vertex 345 Z-coordinate + \units m + \type real + N1037, \field Vertex 346 X-coordinate + \units m + \type real + N1038, \field Vertex 346 Y-coordinate + \units m + \type real + N1039, \field Vertex 346 Z-coordinate + \units m + \type real + N1040, \field Vertex 347 X-coordinate + \units m + \type real + N1041, \field Vertex 347 Y-coordinate + \units m + \type real + N1042, \field Vertex 347 Z-coordinate + \units m + \type real + N1043, \field Vertex 348 X-coordinate + \units m + \type real + N1044, \field Vertex 348 Y-coordinate + \units m + \type real + N1045, \field Vertex 348 Z-coordinate + \units m + \type real + N1046, \field Vertex 349 X-coordinate + \units m + \type real + N1047, \field Vertex 349 Y-coordinate + \units m + \type real + N1048, \field Vertex 349 Z-coordinate + \units m + \type real + N1049, \field Vertex 350 X-coordinate + \units m + \type real + N1050, \field Vertex 350 Y-coordinate + \units m + \type real + N1051, \field Vertex 350 Z-coordinate + \units m + \type real + N1052, \field Vertex 351 X-coordinate + \units m + \type real + N1053, \field Vertex 351 Y-coordinate + \units m + \type real + N1054, \field Vertex 351 Z-coordinate + \units m + \type real + N1055, \field Vertex 352 X-coordinate + \units m + \type real + N1056, \field Vertex 352 Y-coordinate + \units m + \type real + N1057, \field Vertex 352 Z-coordinate + \units m + \type real + N1058, \field Vertex 353 X-coordinate + \units m + \type real + N1059, \field Vertex 353 Y-coordinate + \units m + \type real + N1060, \field Vertex 353 Z-coordinate + \units m + \type real + N1061, \field Vertex 354 X-coordinate + \units m + \type real + N1062, \field Vertex 354 Y-coordinate + \units m + \type real + N1063, \field Vertex 354 Z-coordinate + \units m + \type real + N1064, \field Vertex 355 X-coordinate + \units m + \type real + N1065, \field Vertex 355 Y-coordinate + \units m + \type real + N1066, \field Vertex 355 Z-coordinate + \units m + \type real + N1067, \field Vertex 356 X-coordinate + \units m + \type real + N1068, \field Vertex 356 Y-coordinate + \units m + \type real + N1069, \field Vertex 356 Z-coordinate + \units m + \type real + N1070, \field Vertex 357 X-coordinate + \units m + \type real + N1071, \field Vertex 357 Y-coordinate + \units m + \type real + N1072, \field Vertex 357 Z-coordinate + \units m + \type real + N1073, \field Vertex 358 X-coordinate + \units m + \type real + N1074, \field Vertex 358 Y-coordinate + \units m + \type real + N1075, \field Vertex 358 Z-coordinate + \units m + \type real + N1076, \field Vertex 359 X-coordinate + \units m + \type real + N1077, \field Vertex 359 Y-coordinate + \units m + \type real + N1078, \field Vertex 359 Z-coordinate + \units m + \type real + N1079, \field Vertex 360 X-coordinate + \units m + \type real + N1080, \field Vertex 360 Y-coordinate + \units m + \type real + N1081; \field Vertex 360 Z-coordinate \units m \type real diff --git a/hub/imports/geometry/geojson.py b/hub/imports/geometry/geojson.py index 20b74534..b07a6a7b 100644 --- a/hub/imports/geometry/geojson.py +++ b/hub/imports/geometry/geojson.py @@ -213,8 +213,6 @@ class Geojson: polygon = Polygon(coordinates) polygon.area = igh.ground_area(coordinates) surfaces[-1] = Surface(polygon, polygon) - if len(surfaces) > 1: - raise ValueError('too many surfaces!!!!') building = Building(f'{building_name}', surfaces, year_of_construction, function) for alias in building_aliases: building.add_alias(alias) diff --git a/hub/imports/results/insel_monthly_energry_balance.py b/hub/imports/results/insel_monthly_energry_balance.py index 37783185..8d33c302 100644 --- a/hub/imports/results/insel_monthly_energry_balance.py +++ b/hub/imports/results/insel_monthly_energry_balance.py @@ -70,7 +70,7 @@ class InselMonthlyEnergyBalance: total_day += value for day_type in schedule.day_types: total_lighting += total_day * cte.WEEK_DAYS_A_MONTH[month][day_type] \ - * lighting_density / cte.WATTS_HOUR_TO_JULES + * lighting_density * cte.WATTS_HOUR_TO_JULES lighting_demand.append(total_lighting * area) for schedule in thermal_zone.appliances.schedules: @@ -79,7 +79,7 @@ class InselMonthlyEnergyBalance: total_day += value for day_type in schedule.day_types: total_appliances += total_day * cte.WEEK_DAYS_A_MONTH[month][day_type] \ - * appliances_density / cte.WATTS_HOUR_TO_JULES + * appliances_density * cte.WATTS_HOUR_TO_JULES appliances_demand.append(total_appliances * area) for schedule in thermal_zone.domestic_hot_water.schedules: @@ -89,7 +89,7 @@ class InselMonthlyEnergyBalance: for day_type in schedule.day_types: demand = ( peak_flow * cte.WATER_DENSITY * cte.WATER_HEAT_CAPACITY - * (service_temperature - cold_water[i_month]) / cte.WATTS_HOUR_TO_JULES + * (service_temperature - cold_water[i_month]) * cte.WATTS_HOUR_TO_JULES ) total_dhw_demand += total_day * cte.WEEK_DAYS_A_MONTH[month][day_type] * demand domestic_hot_water_demand.append(total_dhw_demand * area) diff --git a/hub/persistence/db_control.py b/hub/persistence/db_control.py index c6740336..7ce19c3a 100644 --- a/hub/persistence/db_control.py +++ b/hub/persistence/db_control.py @@ -4,10 +4,8 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group Project CoderPeter Yefi peteryefi@gmail.com """ -import json from typing import Dict - from hub.persistence.repositories.application import Application from hub.persistence.repositories.city import City from hub.persistence.repositories.city_object import CityObject @@ -75,10 +73,10 @@ class DBControl: : """ cities = self._city.get_by_user_id_application_id_and_scenario(user_id, application_id, scenario) - for city in cities: - result = self.building_info(name, city[0].id) - if result is not None: - return result + c = [c[0].id for c in cities] + result = self._city_object.building_in_cities_info(name, c) + if result is not None: + return result return None def building_info(self, name, city_id) -> CityObject: @@ -90,17 +88,27 @@ class DBControl: """ return self._city_object.get_by_name_or_alias_and_city(name, city_id) - def buildings_info(self, request_values, city_id) -> [CityObject]: + def building_info_in_cities(self, name, cities) -> CityObject: + """ + Retrieve the building info from the database + :param name: Building name + :param cities: [City ID] + :return: CityObject + """ + return self._city_object.get_by_name_or_alias_in_cities(name, cities) + + def buildings_info(self, user_id, application_id, names_or_aliases) -> [CityObject]: """ Retrieve the buildings info from the database - :param request_values: Building names - :param city_id: City ID + :param user_id: User ID + :param application_id: Application ID + :param names_or_aliases: A list of names or alias for the buildings :return: [CityObject] """ - buildings = [] - for name in request_values['names']: - buildings.append(self.building_info(name, city_id)) - return buildings + results = self._city_object.get_by_name_or_alias_for_user_app(user_id, application_id, names_or_aliases) + if results is None: + return [] + return results def results(self, user_id, application_id, request_values, result_names=None) -> Dict: """ @@ -134,7 +142,7 @@ class DBControl: result_names) for value in _: - values = json.loads(value.values) + values = value.values values["building"] = building_name results[scenario_name].append(values) return results diff --git a/hub/persistence/repositories/city_object.py b/hub/persistence/repositories/city_object.py index 5c805d15..bd90af11 100644 --- a/hub/persistence/repositories/city_object.py +++ b/hub/persistence/repositories/city_object.py @@ -6,14 +6,16 @@ Project Coder Guille Gutierrez Guillermo.GutierrezMorote@concordia.ca """ import datetime import logging +from typing import Union -from sqlalchemy import select, or_ +from sqlalchemy import select from sqlalchemy.exc import SQLAlchemyError from sqlalchemy.orm import Session from hub.city_model_structure.building import Building -from hub.persistence.repository import Repository from hub.persistence.models import CityObject as Model +from hub.persistence.models import City as CityModel +from hub.persistence.repository import Repository class CityObject(Repository): @@ -72,7 +74,7 @@ class CityObject(Repository): with Session(self.engine) as session: session.query(Model).filter(Model.name == building.name, Model.city_id == city_id).update( {'name': building.name, - 'alias': building.alias, + 'aliases': building.aliases, 'object_type': building.type, 'year_of_construction': building.year_of_construction, 'function': building.function, @@ -100,7 +102,61 @@ class CityObject(Repository): logging.error('Error while deleting application %s', err) raise SQLAlchemyError from err - def get_by_name_or_alias_and_city(self, name, city_id) -> Model: + def building_in_cities_info(self, name, cities): + """ + Fetch a city object based on name and city id + :param name: city object name + :param cities: city identifiers + :return: [CityObject] with the provided name or alias belonging to the city with id city_id + """ + try: + # search by name first + with Session(self.engine) as session: + city_object = session.execute(select(Model).where( + Model.name == name, Model.city_id.in_(cities)) + ).first() + if city_object is not None: + return city_object[0] + # name not found, so search by alias instead + city_objects = session.execute( + select(Model).where(Model.aliases.contains(name), Model.city_id.in_(cities)) + ).all() + for city_object in city_objects: + aliases = city_object[0].aliases.replace('{', '').replace('}', '').split(',') + for alias in aliases: + if alias == name: + # force the name as the alias + city_object[0].name = name + return city_object[0] + return None + except SQLAlchemyError as err: + logging.error('Error while fetching city object by name and city: %s', err) + raise SQLAlchemyError from err + except IndexError as err: + logging.error('Error while fetching city object by name and city, empty result %s', err) + raise IndexError from err + + def get_by_name_or_alias_for_user_app(self, user_id, application_id, names) -> Union[Model, None]: + """ + Fetch city objects belonging to the user and application where the name or alias is in the names list + :param user_id: User ID + :param application_id: Application ID + :param names: a list of building aliases or names + :return [CityObject] or None + """ + with Session(self.engine) as session: + cities = session.execute(select(CityModel).where( + CityModel.user_id == user_id, CityModel.application_id == application_id + )).all() + ids = [c[0].id for c in cities] + buildings = session.execute(select(Model).where( + Model.city_id.in_(ids), Model.name.in_(names) + )) + results = [r[0] for r in buildings] + print(ids, buildings) + return None + + def get_by_name_or_alias_and_city(self, name, city_id) -> Union[Model, None]: """ Fetch a city object based on name and city id :param name: city object name @@ -142,12 +198,12 @@ class CityObject(Repository): try: # search by name first with Session(self.engine) as session: - city_object = session.execute(select(Model).where(Model.name == name, Model.city_id in city_ids)).first() + city_object = session.execute(select(Model).where(Model.name == name, Model.city_id.in_(tuple(city_ids)))).first() if city_object is not None: return city_object[0] # name not found, so search by alias instead city_objects = session.execute( - select(Model).where(Model.aliases.contains(name), Model.city_id in city_ids) + select(Model).where(Model.aliases.contains(name), Model.city_id.in_(tuple(city_ids))) ).all() for city_object in city_objects: aliases = city_object[0].aliases.replace('{', '').replace('}', '').split(',') diff --git a/hub/version.py b/hub/version.py index add851be..bd3d2333 100644 --- a/hub/version.py +++ b/hub/version.py @@ -1,4 +1,4 @@ """ Hub version number """ -__version__ = '0.1.8.28' +__version__ = '0.1.8.36' diff --git a/setup.py b/setup.py index c44df2fd..7c2df9ca 100644 --- a/setup.py +++ b/setup.py @@ -100,6 +100,7 @@ setup( ('hub/data/geolocation', glob.glob('hub/data/geolocation/*.txt')), ('hub/data/greenery', glob.glob('hub/data/greenery/*.xml')), ('hub/data/usage', glob.glob('hub/data/usage/*.xml')), + ('hub/data/usage', glob.glob('hub/data/usage/*.json')), ('hub/data/usage', glob.glob('hub/data/usage/*.xlsx')), ('hub/data/weather', glob.glob('hub/data/weather/*.dat')), ('hub/data/weather/epw', glob.glob('hub/data/weather/epw/*.epw')), diff --git a/tests/test_db_factory.py b/tests/test_db_factory.py index 4c216ad2..c845b028 100644 --- a/tests/test_db_factory.py +++ b/tests/test_db_factory.py @@ -6,7 +6,6 @@ Project Coder Peter Yefi peteryefi@gmail.com """ import distutils.spawn import glob -import json import logging import os import subprocess @@ -248,36 +247,36 @@ TestDBFactory for x in building.onsite_electrical_production[cte.MONTH]] yearly_on_site_electrical_production = [x * cte.WATTS_HOUR_TO_JULES for x in building.onsite_electrical_production[cte.YEAR]] - results = json.dumps({cte.INSEL_MEB: [ - {'monthly_cooling_peak_load': monthly_cooling_peak_load}, - {'yearly_cooling_peak_load': yearly_cooling_peak_load}, - {'monthly_heating_peak_load': monthly_heating_peak_load}, - {'yearly_heating_peak_load': yearly_heating_peak_load}, - {'monthly_lighting_peak_load': monthly_lighting_peak_load}, - {'yearly_lighting_peak_load': yearly_lighting_peak_load}, - {'monthly_appliances_peak_load': monthly_appliances_peak_load}, - {'yearly_appliances_peak_load': yearly_appliances_peak_load}, - {'monthly_cooling_demand': monthly_cooling_demand}, - {'yearly_cooling_demand': yearly_cooling_demand}, - {'monthly_heating_demand': monthly_heating_demand}, - {'yearly_heating_demand': yearly_heating_demand}, - {'monthly_lighting_electrical_demand': monthly_lighting_electrical_demand}, - {'yearly_lighting_electrical_demand': yearly_lighting_electrical_demand}, - {'monthly_appliances_electrical_demand': monthly_appliances_electrical_demand}, - {'yearly_appliances_electrical_demand': yearly_appliances_electrical_demand}, - {'monthly_domestic_hot_water_heat_demand': monthly_domestic_hot_water_heat_demand}, - {'yearly_domestic_hot_water_heat_demand': yearly_domestic_hot_water_heat_demand}, - {'monthly_heating_consumption': monthly_heating_consumption}, - {'yearly_heating_consumption': yearly_heating_consumption}, - {'monthly_cooling_consumption': monthly_cooling_consumption}, - {'yearly_cooling_consumption': yearly_cooling_consumption}, - {'monthly_domestic_hot_water_consumption': monthly_domestic_hot_water_consumption}, - {'yearly_domestic_hot_water_consumption': yearly_domestic_hot_water_consumption}, - {'monthly_distribution_systems_electrical_consumption': monthly_distribution_systems_electrical_consumption}, - {'yearly_distribution_systems_electrical_consumption': yearly_distribution_systems_electrical_consumption}, - {'monthly_on_site_electrical_production': monthly_on_site_electrical_production}, - {'yearly_on_site_electrical_production': yearly_on_site_electrical_production} - ]}) + results = {cte.INSEL_MEB: { + 'monthly_cooling_peak_load': monthly_cooling_peak_load, + 'yearly_cooling_peak_load': yearly_cooling_peak_load, + 'monthly_heating_peak_load': monthly_heating_peak_load, + 'yearly_heating_peak_load': yearly_heating_peak_load, + 'monthly_lighting_peak_load': monthly_lighting_peak_load, + 'yearly_lighting_peak_load': yearly_lighting_peak_load, + 'monthly_appliances_peak_load': monthly_appliances_peak_load, + 'yearly_appliances_peak_load': yearly_appliances_peak_load, + 'monthly_cooling_demand': monthly_cooling_demand, + 'yearly_cooling_demand': yearly_cooling_demand, + 'monthly_heating_demand': monthly_heating_demand, + 'yearly_heating_demand': yearly_heating_demand, + 'monthly_lighting_electrical_demand': monthly_lighting_electrical_demand, + 'yearly_lighting_electrical_demand': yearly_lighting_electrical_demand, + 'monthly_appliances_electrical_demand': monthly_appliances_electrical_demand, + 'yearly_appliances_electrical_demand': yearly_appliances_electrical_demand, + 'monthly_domestic_hot_water_heat_demand': monthly_domestic_hot_water_heat_demand, + 'yearly_domestic_hot_water_heat_demand': yearly_domestic_hot_water_heat_demand, + 'monthly_heating_consumption': monthly_heating_consumption, + 'yearly_heating_consumption': yearly_heating_consumption, + 'monthly_cooling_consumption': monthly_cooling_consumption, + 'yearly_cooling_consumption': yearly_cooling_consumption, + 'monthly_domestic_hot_water_consumption': monthly_domestic_hot_water_consumption, + 'yearly_domestic_hot_water_consumption': yearly_domestic_hot_water_consumption, + 'monthly_distribution_systems_electrical_consumption': monthly_distribution_systems_electrical_consumption, + 'yearly_distribution_systems_electrical_consumption': yearly_distribution_systems_electrical_consumption, + 'monthly_on_site_electrical_production': monthly_on_site_electrical_production, + 'yearly_on_site_electrical_production': yearly_on_site_electrical_production + }} db_building_id = _building.id city_objects_id.append(db_building_id) @@ -286,6 +285,8 @@ TestDBFactory results, city_object_id=db_building_id) self.assertEqual(17, len(city_objects_id), 'wrong number of results') self.assertIsNotNone(city_objects_id[0], 'city_object_id is None') + results = control.database.results(control.user_id, control.application_id, request_values) + for _id in city_objects_id: control.database.delete_results_by_name('insel meb', city_object_id=_id) control.database.delete_city(city_id) diff --git a/tests/test_db_retrieve.py b/tests/test_db_retrieve.py index bb7532c3..701de932 100644 --- a/tests/test_db_retrieve.py +++ b/tests/test_db_retrieve.py @@ -5,11 +5,8 @@ Copyright © 2022 Concordia CERC group Project Coder Peter Yefi peteryefi@gmail.com """ import distutils.spawn -import glob -import json import logging import os -import subprocess import unittest from pathlib import Path from unittest import TestCase @@ -18,19 +15,7 @@ import sqlalchemy.exc from sqlalchemy import create_engine from sqlalchemy.exc import ProgrammingError -import hub.helpers.constants as cte -from hub.exports.energy_building_exports_factory import EnergyBuildingsExportsFactory -from hub.exports.exports_factory import ExportsFactory -from hub.helpers.data.montreal_function_to_hub_function import MontrealFunctionToHubFunction -from hub.imports.construction_factory import ConstructionFactory -from hub.imports.energy_systems_factory import EnergySystemsFactory -from hub.imports.geometry_factory import GeometryFactory -from hub.imports.results_factory import ResultFactory -from hub.imports.usage_factory import UsageFactory -from hub.imports.weather_factory import WeatherFactory from hub.persistence.db_control import DBControl -from hub.persistence.models import City, Application, CityObject, SimulationResults -from hub.persistence.models import User, UserRoles from hub.persistence.repository import Repository @@ -129,24 +114,12 @@ TestDBFactory """ @unittest.skipIf(control.skip_test, control.skip_reason) - def test_retrieve_results(self): + def test_buildings_info(self): request_values = { - "scenarios": [ - { - "current status": ["01002777", "01002773", "01036804"] - }, - { - "skin retrofit": ["01002777", "01002773", "01036804"] - }, - { - "system retrofit and pv": ["01002777", "01002773", "01036804"] - }, - { - "skin and system retrofit with pv": ["01002777", "01002773", "01036804"] - } - - + "buildings": [ + "01002777", "01002773", "01036804" ] } - results = control.database.results(control.user_id, control.application_id, request_values) + results = control.database.buildings_info(control.user_id, control.application_id, request_values) + self.assertEqual(12, len(results), 'wrong number of results') print(results) diff --git a/tests/test_exports.py b/tests/test_exports.py index 47cd89e9..08a97b53 100644 --- a/tests/test_exports.py +++ b/tests/test_exports.py @@ -143,7 +143,6 @@ class TestExports(TestCase): EnergyBuildingsExportsFactory('idf', city, self._output_path).export() UsageFactory('nrcan', city).enrich() WeatherFactory('epw', city).enrich() - print(self._output_path) try: EnergyBuildingsExportsFactory('idf', city, self._output_path).export() except Exception: