Skip to content

Instantly share code, notes, and snippets.

@wallabyway
Last active May 26, 2021 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wallabyway/7b2c1d83dbffebb55acdf0d4a0f8653a to your computer and use it in GitHub Desktop.
Save wallabyway/7b2c1d83dbffebb55acdf0d4a0f8653a to your computer and use it in GitHub Desktop.
Nodejs app: Pull list of Rooms from 3DModel, add room properties, and save to report.json file
// to install, run this command in a terminal:
// > npm install node-fetch
// now, add your URN, GUID, KEY, SECRET
// To run, type this:
// > node getRoomsReport.js
// see `report.json` as an example output
const fetch = require('node-fetch');
const fs = require('fs-extra');
const URN = "dXJuOmFkc2sub2JqZWN0czpvcy5vYmplY3Q6Y29uc29saWRhdGVkL3JtZV9hZHZhbmNlZF9zYW1wbGVfcHJvamVjdC5ydnQ";
const GUID = "e011c8b0-acf1-baa4-edb4-2952e2ea16ec";
const KEY = `Ni9I5iH....Xgeus8WduUC`;
const SECRET = `A1sSL....Ows3O`;
const FORGEURL = 'https://developer.api.autodesk.com';
const opts = token => ({ headers: {'Authorization': 'Bearer ' + token }});
class RoomReport {
async run(outdir = "", filename = "report.json") {
this.token = await this.getToken();
this.rooms = await this.getAllRooms();
for (const room in this.rooms) {
await this.addRoomProperties(this.rooms[room]);
}
this.saveXLS(this.rooms, outdir, filename);
};
async getToken() {
const url = `${FORGEURL}/authentication/v1/authenticate`;
const header = {
'Content-Type': 'application/x-www-form-urlencoded'
}
const body = `grant_type=client_credentials&client_id=${KEY}&client_secret=${SECRET}&scope=data:read`;
let token = await fetch(url, {
method: 'POST',
headers: header,
body: body
});
token = await token.json();
return token.access_token;
};
async getAllRooms() {
const jsn = await (await fetch(`${FORGEURL}/modelderivative/v2/designdata/${URN}/metadata/${GUID}`, opts(this.token))).json();
const rooms = jsn.data.objects[0].objects.filter(i => {
return (i.name == "Rooms")
});
return rooms[0].objects;
};
async addRoomProperties(room) {
console.log(`fetching properties for Room: ${room.name}`)
const url = `${FORGEURL}/modelderivative/v2/designdata/${URN}/metadata/${GUID}/properties?objectid=${room.objectid}`;
const rsp = await fetch(url, opts(this.token));
const jsn = await rsp.json();
room.properties = jsn.data.collection[0];
};
async saveXLS(object, outdir, filename) {
console.log(`saving report to file: ${outdir}${filename}`)
await fs.outputJson(`${outdir}${filename}`, object);
};
}
cmd = new RoomReport();
cmd.run();
[
{
"objectid": 1731,
"name": "Technology 28 [379575]",
"properties": {
"objectid": 1731,
"name": "Technology 28 [379575]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cab7",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "455.093 lux",
"Room Cavity Ratio": "5.146",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2818.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "214.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "90.579 liter/s",
"Calculated Supply Airflow": "90.579 liter/s",
"Actual Supply Airflow": "150.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "18.306 m^2",
"Perimeter": "18323.491 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "59.636 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "28",
"Name": "Technology",
"Room Number": "28",
"Room Name": "Technology",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "1",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "792.037 watt",
"Design Heating Load": "792.037 watt",
"Calculated Cooling Load": "1294.480 watt",
"Design Cooling Load": "1294.480 watt"
}
}
}
},
{
"objectid": 1738,
"name": "Cleaning 27 [379578]",
"properties": {
"objectid": 1738,
"name": "Cleaning 27 [379578]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005caba",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "300.644 lux",
"Room Cavity Ratio": "6.134",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "150.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "84.659 liter/s",
"Calculated Supply Airflow": "84.659 liter/s",
"Actual Supply Airflow": "200.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "350.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "17.284 m^2",
"Perimeter": "17994.690 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "56.273 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "27",
"Name": "Cleaning",
"Room Number": "27",
"Room Name": "Cleaning",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "1",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "718.511 watt",
"Design Heating Load": "718.511 watt",
"Calculated Cooling Load": "1209.600 watt",
"Design Cooling Load": "1209.600 watt"
}
}
}
},
{
"objectid": 1740,
"name": "Washing Room 30 [379580]",
"properties": {
"objectid": 1740,
"name": "Washing Room 30 [379580]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cabc",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "333.775 lux",
"Room Cavity Ratio": "6.680",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "150.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "720.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "3.309 liter/s",
"Calculated Supply Airflow": "3.309 liter/s",
"Actual Supply Airflow": "200.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "14.729 m^2",
"Perimeter": "16701.931 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "48.111 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "30",
"Name": "Washing Room",
"Room Number": "30",
"Room Name": "Washing Room",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "1",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Active Storage",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1637.280 watt",
"Design Heating Load": "1637.280 watt",
"Calculated Cooling Load": "61.424 watt",
"Design Cooling Load": "61.424 watt"
}
}
}
},
{
"objectid": 1742,
"name": "Washing Room 25 [379582]",
"properties": {
"objectid": 1742,
"name": "Washing Room 25 [379582]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cabe",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "331.967 lux",
"Room Cavity Ratio": "6.656",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "150.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "540.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "3.394 liter/s",
"Calculated Supply Airflow": "3.394 liter/s",
"Actual Supply Airflow": "200.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "14.845 m^2",
"Perimeter": "16772.500 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "48.489 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "25",
"Name": "Washing Room",
"Room Number": "25",
"Room Name": "Washing Room",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "1",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Active Storage",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1889.070 watt",
"Design Heating Load": "1889.070 watt",
"Calculated Cooling Load": "62.765 watt",
"Design Cooling Load": "62.765 watt"
}
}
}
},
{
"objectid": 1744,
"name": "Cleaning 26 [379584]",
"properties": {
"objectid": 1744,
"name": "Cleaning 26 [379584]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cac0",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "270.520 lux",
"Room Cavity Ratio": "5.439",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "150.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "98.641 liter/s",
"Calculated Supply Airflow": "98.641 liter/s",
"Actual Supply Airflow": "200.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "225.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "20.674 m^2",
"Perimeter": "19085.310 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "67.311 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "26",
"Name": "Cleaning",
"Room Number": "26",
"Room Name": "Cleaning",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "1",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1056.240 watt",
"Design Heating Load": "1056.240 watt",
"Calculated Cooling Load": "1411.110 watt",
"Design Cooling Load": "1411.110 watt"
}
}
}
},
{
"objectid": 1746,
"name": "WC 23 [379586]",
"properties": {
"objectid": 1746,
"name": "WC 23 [379586]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cac2",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "244.829 lux",
"Room Cavity Ratio": "8.435",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2818.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "128.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "180.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "55.737 liter/s",
"Calculated Supply Airflow": "55.737 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "15.018 m^2",
"Perimeter": "24639.690 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "48.938 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "23",
"Name": "WC",
"Room Number": "23",
"Room Name": "WC",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "1",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "694.746 watt",
"Design Heating Load": "694.746 watt",
"Calculated Cooling Load": "746.906 watt",
"Design Cooling Load": "746.906 watt"
}
}
}
},
{
"objectid": 1748,
"name": "Archive 21 [379588]",
"properties": {
"objectid": 1748,
"name": "Archive 21 [379588]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cac4",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "559.264 lux",
"Room Cavity Ratio": "4.434",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "450.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "144.919 liter/s",
"Calculated Supply Airflow": "144.919 liter/s",
"Actual Supply Airflow": "150.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "225.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "33.583 m^2",
"Perimeter": "25273.750 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "109.483 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "21",
"Name": "Archive",
"Room Number": "21",
"Room Name": "Archive",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "1",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Stacks - Library",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "2447.560 watt",
"Design Heating Load": "2447.560 watt",
"Calculated Cooling Load": "2045.790 watt",
"Design Cooling Load": "2045.790 watt"
}
}
}
},
{
"objectid": 1751,
"name": "MZR 20 [379597]",
"properties": {
"objectid": 1751,
"name": "MZR 20 [379597]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cacd",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "652.250 lux",
"Room Cavity Ratio": "2.007",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "1800.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1800.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "703.338 liter/s",
"Calculated Supply Airflow": "703.338 liter/s",
"Actual Supply Airflow": "875.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "450.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "156.320 m^2",
"Perimeter": "53243.801 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "510.140 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "20",
"Name": "MZR",
"Room Number": "20",
"Room Name": "MZR",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "2",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "10068.100 watt",
"Design Heating Load": "10068.100 watt",
"Calculated Cooling Load": "10062.800 watt",
"Design Cooling Load": "10062.800 watt"
}
}
}
},
{
"objectid": 1756,
"name": "WF 51 [379770]",
"properties": {
"objectid": 1756,
"name": "WF 51 [379770]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cb7a",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "115.397 lux",
"Room Cavity Ratio": "5.229",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2796.228 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "500.000 volt A",
"Actual Receptacles Load": "360.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "210.707 liter/s",
"Calculated Supply Airflow": "210.707 liter/s",
"Actual Supply Airflow": "225.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "225.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "33.525 m^2",
"Perimeter": "34470.000 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "109.173 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "51",
"Name": "WF",
"Room Number": "51",
"Room Name": "WF",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "3",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "3026.940 watt",
"Design Heating Load": "3026.940 watt",
"Calculated Cooling Load": "2823.480 watt",
"Design Cooling Load": "2823.480 watt"
}
}
}
},
{
"objectid": 1761,
"name": "Corridor 49a [379918]",
"properties": {
"objectid": 1761,
"name": "Corridor 49a [379918]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc0e",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "39.413 lux",
"Room Cavity Ratio": "3.083",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "12063.000 volt A",
"Actual Lighting Load": "180.000 volt A",
"Actual Receptacles Load": "540.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "368.625 liter/s",
"Calculated Supply Airflow": "368.625 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "36.036 m^2",
"Perimeter": "42575.456 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "119.733 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "49a",
"Name": "Corridor",
"Room Number": "49",
"Room Name": "Corridor",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "4",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4991.740 watt",
"Design Heating Load": "4991.740 watt",
"Calculated Cooling Load": "4939.590 watt",
"Design Cooling Load": "4939.590 watt"
}
}
}
},
{
"objectid": 1764,
"name": "Corridor 49b [379923]",
"properties": {
"objectid": 1764,
"name": "Corridor 49b [379923]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc13",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "52.776 lux",
"Room Cavity Ratio": "0.919",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "16015.000 volt A",
"Actual Lighting Load": "860.000 volt A",
"Actual Receptacles Load": "540.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "637.449 liter/s",
"Calculated Supply Airflow": "637.449 liter/s",
"Actual Supply Airflow": "825.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "174.545 m^2",
"Perimeter": "61472.541 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "580.483 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "49b",
"Name": "Corridor",
"Room Number": "49",
"Room Name": "Corridor",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "5",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "8582.880 watt",
"Design Heating Load": "8582.880 watt",
"Calculated Cooling Load": "8541.890 watt",
"Design Cooling Load": "8541.890 watt"
}
}
}
},
{
"objectid": 1767,
"name": "Workshop 4 [379928]",
"properties": {
"objectid": 1767,
"name": "Workshop 4 [379928]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc18",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "396.794 lux",
"Room Cavity Ratio": "2.670",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "600.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "573.900 liter/s",
"Calculated Supply Airflow": "573.900 liter/s",
"Actual Supply Airflow": "600.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "600.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "78.442 m^2",
"Perimeter": "35548.750 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "256.280 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "4",
"Name": "Workshop",
"Room Number": "4",
"Room Name": "Workshop",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "6",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Workshop - Workshop",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4881.050 watt",
"Design Heating Load": "4881.050 watt",
"Calculated Cooling Load": "9766.420 watt",
"Design Cooling Load": "9766.420 watt"
}
}
}
},
{
"objectid": 1769,
"name": "Power Riser 113 [379930]",
"properties": {
"objectid": 1769,
"name": "Power Riser 113 [379930]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc1a",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "394.107 lux",
"Room Cavity Ratio": "4.479",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "300.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Power Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "191.803 liter/s",
"Calculated Supply Airflow": "191.803 liter/s",
"Actual Supply Airflow": "300.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "300.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "31.604 m^2",
"Perimeter": "24027.500 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "103.208 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "113",
"Name": "Power Riser",
"Room Number": "3",
"Room Name": "Stock",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "6",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1935.460 watt",
"Design Heating Load": "1935.460 watt",
"Calculated Cooling Load": "2699.300 watt",
"Design Cooling Load": "2699.300 watt"
}
}
}
},
{
"objectid": 1772,
"name": "CH/PH I 2 [379935]",
"properties": {
"objectid": 1772,
"name": "CH/PH I 2 [379935]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc1f",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "386.852 lux",
"Room Cavity Ratio": "2.647",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "600.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1260.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "463.925 liter/s",
"Calculated Supply Airflow": "463.925 liter/s",
"Actual Supply Airflow": "500.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "600.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "80.698 m^2",
"Perimeter": "36257.500 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "263.504 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "2",
"Name": "CH/PH I",
"Room Number": "2",
"Room Name": "CH/PH I",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "7",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4641.840 watt",
"Design Heating Load": "4641.840 watt",
"Calculated Cooling Load": "6541.110 watt",
"Design Cooling Load": "6541.110 watt"
}
}
}
},
{
"objectid": 1775,
"name": "CH/PH Stock 1 [379940]",
"properties": {
"objectid": 1775,
"name": "CH/PH Stock 1 [379940]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc24",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "305.329 lux",
"Room Cavity Ratio": "3.563",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "300.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "335.589 liter/s",
"Calculated Supply Airflow": "335.589 liter/s",
"Actual Supply Airflow": "350.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "350.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "45.512 m^2",
"Perimeter": "27526.845 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "149.585 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "1",
"Name": "CH/PH Stock",
"Room Number": "1",
"Room Name": "CH/PH Stock",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "8",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4100.890 watt",
"Design Heating Load": "4100.890 watt",
"Calculated Cooling Load": "4687.110 watt",
"Design Cooling Load": "4687.110 watt"
}
}
}
},
{
"objectid": 1778,
"name": "Corridor 49c [379945]",
"properties": {
"objectid": 1778,
"name": "Corridor 49c [379945]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc29",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "69.555 lux",
"Room Cavity Ratio": "1.086",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "30533.000 volt A",
"Actual Lighting Load": "1040.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "506.124 liter/s",
"Calculated Supply Airflow": "506.124 liter/s",
"Actual Supply Airflow": "495.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "156.840 m^2",
"Perimeter": "65291.285 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "520.751 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "49c",
"Name": "Corridor",
"Room Number": "49",
"Room Name": "Corridor",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "9",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "8061.900 watt",
"Design Heating Load": "8061.900 watt",
"Calculated Cooling Load": "6782.130 watt",
"Design Cooling Load": "6782.130 watt"
}
}
}
},
{
"objectid": 1781,
"name": "Leader 6 [379950]",
"properties": {
"objectid": 1781,
"name": "Leader 6 [379950]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc2e",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "360.306 lux",
"Room Cavity Ratio": "2.652",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "188.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "104.625 liter/s",
"Calculated Supply Airflow": "104.625 liter/s",
"Actual Supply Airflow": "150.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "150.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "20.826 m^2",
"Perimeter": "21168.092 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "67.850 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "6",
"Name": "Leader",
"Room Number": "6",
"Room Name": "Leader",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "10",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "978.761 watt",
"Design Heating Load": "978.761 watt",
"Calculated Cooling Load": "1494.700 watt",
"Design Cooling Load": "1494.700 watt"
}
}
}
},
{
"objectid": 1783,
"name": "Leader 8 [379952]",
"properties": {
"objectid": 1783,
"name": "Leader 8 [379952]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc30",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "333.630 lux",
"Room Cavity Ratio": "2.454",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "188.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "114.097 liter/s",
"Calculated Supply Airflow": "114.097 liter/s",
"Actual Supply Airflow": "180.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "180.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "23.129 m^2",
"Perimeter": "21746.033 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "75.358 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "8",
"Name": "Leader",
"Room Number": "8",
"Room Name": "Leader",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "10",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1059.050 watt",
"Design Heating Load": "1059.050 watt",
"Calculated Cooling Load": "1631.200 watt",
"Design Cooling Load": "1631.200 watt"
}
}
}
},
{
"objectid": 1786,
"name": "WC H 9 [379957]",
"properties": {
"objectid": 1786,
"name": "WC H 9 [379957]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc35",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "405.110 lux",
"Room Cavity Ratio": "3.134",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "188.000 volt A",
"Actual Receptacles Load": "180.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "73.903 liter/s",
"Calculated Supply Airflow": "73.903 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "377.558 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "17.345 m^2",
"Perimeter": "20828.092 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "56.489 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "9",
"Name": "WC H",
"Room Number": "9",
"Room Name": "WC H",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "11",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1042.460 watt",
"Design Heating Load": "1042.460 watt",
"Calculated Cooling Load": "990.335 watt",
"Design Cooling Load": "990.335 watt"
}
}
}
},
{
"objectid": 1788,
"name": "WC D 10 [379959]",
"properties": {
"objectid": 1788,
"name": "WC D 10 [379959]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc37",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3800.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "421.449 lux",
"Room Cavity Ratio": "3.245",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "188.000 volt A",
"Actual Receptacles Load": "180.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "74.488 liter/s",
"Calculated Supply Airflow": "74.488 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "377.558 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "16.427 m^2",
"Perimeter": "20428.092 mm",
"Unbounded Height": "3800.000 mm",
"Volume": "53.503 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "10",
"Name": "WC D",
"Room Number": "10",
"Room Name": "WC D",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "11",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1031.750 watt",
"Design Heating Load": "1031.750 watt",
"Calculated Cooling Load": "998.175 watt",
"Design Cooling Load": "998.175 watt"
}
}
}
},
{
"objectid": 1791,
"name": "Workshop I 14 [379968]",
"properties": {
"objectid": 1791,
"name": "Workshop I 14 [379968]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc40",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "582.036 lux",
"Room Cavity Ratio": "2.638",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "900.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1620.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "521.653 liter/s",
"Calculated Supply Airflow": "521.653 liter/s",
"Actual Supply Airflow": "600.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "600.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "80.550 m^2",
"Perimeter": "36066.845 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "263.505 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "14",
"Name": "Workshop I",
"Room Number": "14",
"Room Name": "Workshop I",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "12",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Workshop - Workshop",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4598.320 watt",
"Design Heating Load": "4598.320 watt",
"Calculated Cooling Load": "9114.530 watt",
"Design Cooling Load": "9114.530 watt"
}
}
}
},
{
"objectid": 1794,
"name": "Workshop II 31 [379973]",
"properties": {
"objectid": 1794,
"name": "Workshop II 31 [379973]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc45",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "705.352 lux",
"Room Cavity Ratio": "2.945",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "900.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "428.886 liter/s",
"Calculated Supply Airflow": "428.886 liter/s",
"Actual Supply Airflow": "500.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "500.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "63.881 m^2",
"Perimeter": "31930.595 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "208.979 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "31",
"Name": "Workshop II",
"Room Number": "31",
"Room Name": "Workshop II",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "13",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Workshop - Workshop",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4304.130 watt",
"Design Heating Load": "4304.130 watt",
"Calculated Cooling Load": "7410.310 watt",
"Design Cooling Load": "7410.310 watt"
}
}
}
},
{
"objectid": 1797,
"name": "Workshop III 16 [379978]",
"properties": {
"objectid": 1797,
"name": "Workshop III 16 [379978]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc4a",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "585.016 lux",
"Room Cavity Ratio": "2.643",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "900.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "551.338 liter/s",
"Calculated Supply Airflow": "551.338 liter/s",
"Actual Supply Airflow": "800.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "600.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "80.084 m^2",
"Perimeter": "35930.595 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "262.002 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "16",
"Name": "Workshop III",
"Room Number": "16",
"Room Name": "Workshop III",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "14",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Workshop - Workshop",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "6033.520 watt",
"Design Heating Load": "6033.520 watt",
"Calculated Cooling Load": "9499.400 watt",
"Design Cooling Load": "9499.400 watt"
}
}
}
},
{
"objectid": 1800,
"name": "Workshop IV 17 [379983]",
"properties": {
"objectid": 1800,
"name": "Workshop IV 17 [379983]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc4f",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "707.352 lux",
"Room Cavity Ratio": "2.952",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "900.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "424.776 liter/s",
"Calculated Supply Airflow": "424.776 liter/s",
"Actual Supply Airflow": "500.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "500.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "63.638 m^2",
"Perimeter": "31891.845 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "208.184 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "17",
"Name": "Workshop IV",
"Room Number": "17",
"Room Name": "Workshop IV",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "15",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Workshop - Workshop",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4320.310 watt",
"Design Heating Load": "4320.310 watt",
"Calculated Cooling Load": "7352.590 watt",
"Design Cooling Load": "7352.590 watt"
}
}
}
},
{
"objectid": 1802,
"name": "Stock 18 [379985]",
"properties": {
"objectid": 1802,
"name": "Stock 18 [379985]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc51",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "531.898 lux",
"Room Cavity Ratio": "4.025",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "3118.528 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "450.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "195.039 liter/s",
"Calculated Supply Airflow": "195.039 liter/s",
"Actual Supply Airflow": "300.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "300.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "37.053 m^2",
"Perimeter": "25314.183 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "121.203 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "18",
"Name": "Stock",
"Room Number": "18",
"Room Name": "Stock",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "15",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "2345.380 watt",
"Design Heating Load": "2345.380 watt",
"Calculated Cooling Load": "2772.790 watt",
"Design Cooling Load": "2772.790 watt"
}
}
}
},
{
"objectid": 1805,
"name": "Corridor 49d [379990]",
"properties": {
"objectid": 1805,
"name": "Corridor 49d [379990]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc56",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "34.349 lux",
"Room Cavity Ratio": "2.240",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "21132.000 volt A",
"Actual Lighting Load": "420.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "434.597 liter/s",
"Calculated Supply Airflow": "434.597 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "106.833 m^2",
"Perimeter": "91711.623 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "348.969 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "49d",
"Name": "Corridor",
"Room Number": "49",
"Room Name": "Corridor",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "16",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "11789.200 watt",
"Design Heating Load": "11789.200 watt",
"Calculated Cooling Load": "5823.640 watt",
"Design Cooling Load": "5823.640 watt"
}
}
}
},
{
"objectid": 1808,
"name": "Cafeteria 50 [379995]",
"properties": {
"objectid": 1808,
"name": "Cafeteria 50 [379995]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc5b",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "125.090 lux",
"Room Cavity Ratio": "3.076",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2796.228 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "600.000 volt A",
"Actual Receptacles Load": "720.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "380.911 liter/s",
"Calculated Supply Airflow": "380.911 liter/s",
"Actual Supply Airflow": "600.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "43.618 m^2",
"Perimeter": "26380.064 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "142.840 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "50",
"Name": "Cafeteria",
"Room Number": "50",
"Room Name": "Cafeteria",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "17",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Dining Area",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4110.280 watt",
"Design Heating Load": "4110.280 watt",
"Calculated Cooling Load": "6198.780 watt",
"Design Cooling Load": "6198.780 watt"
}
}
}
},
{
"objectid": 1818,
"name": "WC 63 [380022]",
"properties": {
"objectid": 1818,
"name": "WC 63 [380022]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc76",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "418.190 lux",
"Room Cavity Ratio": "5.613",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "124.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "180.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "63.450 liter/s",
"Calculated Supply Airflow": "63.450 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "235.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "10.052 m^2",
"Perimeter": "13370.000 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "23.379 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "63",
"Name": "WC",
"Room Number": "63",
"Room Name": "WC D",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "19",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1079.710 watt",
"Design Heating Load": "1079.710 watt",
"Calculated Cooling Load": "850.243 watt",
"Design Cooling Load": "850.243 watt"
}
}
}
},
{
"objectid": 1820,
"name": "WC 62 [380024]",
"properties": {
"objectid": 1820,
"name": "WC 62 [380024]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc78",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "423.377 lux",
"Room Cavity Ratio": "5.853",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "124.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "180.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "61.197 liter/s",
"Calculated Supply Airflow": "61.197 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "235.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "9.701 m^2",
"Perimeter": "13455.000 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "22.545 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "62",
"Name": "WC",
"Room Number": "62",
"Room Name": "WC H",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "19",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1020.420 watt",
"Design Heating Load": "1020.420 watt",
"Calculated Cooling Load": "820.057 watt",
"Design Cooling Load": "820.057 watt"
}
}
}
},
{
"objectid": 1823,
"name": "Meeting Room 59a [380041]",
"properties": {
"objectid": 1823,
"name": "Meeting Room 59a [380041]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc89",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "271.330 lux",
"Room Cavity Ratio": "3.960",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "124.000 volt A",
"Actual Receptacles Load": "720.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "131.675 liter/s",
"Calculated Supply Airflow": "131.675 liter/s",
"Actual Supply Airflow": "135.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "18.338 m^2",
"Perimeter": "17208.750 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "45.835 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "59a",
"Name": "Meeting Room",
"Room Number": "59",
"Room Name": "Meeting Room",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "20",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Conference Meeting/Multipurpose",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1880.560 watt",
"Design Heating Load": "1880.560 watt",
"Calculated Cooling Load": "2126.410 watt",
"Design Cooling Load": "2126.410 watt"
}
}
}
},
{
"objectid": 1825,
"name": "Archive 58a [380043]",
"properties": {
"objectid": 1825,
"name": "Archive 58a [380043]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc8b",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "335.123 lux",
"Room Cavity Ratio": "4.681",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "124.000 volt A",
"Actual Receptacles Load": "720.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "78.559 liter/s",
"Calculated Supply Airflow": "78.559 liter/s",
"Actual Supply Airflow": "100.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "13.769 m^2",
"Perimeter": "15272.500 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "34.420 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "58a",
"Name": "Archive",
"Room Number": "58",
"Room Name": "Archive",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "20",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Stacks - Library",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1238.280 watt",
"Design Heating Load": "1238.280 watt",
"Calculated Cooling Load": "1097.900 watt",
"Design Cooling Load": "1097.900 watt"
}
}
}
},
{
"objectid": 1827,
"name": "Copy 56a [380045]",
"properties": {
"objectid": 1827,
"name": "Copy 56a [380045]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc8d",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "315.961 lux",
"Room Cavity Ratio": "3.958",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "130.225 liter/s",
"Calculated Supply Airflow": "130.225 liter/s",
"Actual Supply Airflow": "110.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "23.628 m^2",
"Perimeter": "22158.750 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "57.146 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "56a",
"Name": "Copy",
"Room Number": "56",
"Room Name": "Copy",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "20",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1732.230 watt",
"Design Heating Load": "1732.230 watt",
"Calculated Cooling Load": "1853.810 watt",
"Design Cooling Load": "1853.810 watt"
}
}
}
},
{
"objectid": 1829,
"name": "Staff Room 57a [380047]",
"properties": {
"objectid": 1829,
"name": "Staff Room 57a [380047]",
"externalId": "b22d5285-8aa3-423c-b58a-2f123a2ec2cc-0005cc8f",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "372.556 lux",
"Room Cavity Ratio": "1.190",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1862.700 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "512.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1620.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "420.795 liter/s",
"Calculated Supply Airflow": "420.795 liter/s",
"Actual Supply Airflow": "440.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "705.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "93.650 m^2",
"Perimeter": "40514.008 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "230.131 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "57a",
"Name": "Staff Room",
"Room Number": "57",
"Room Name": "Staff Rom",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "21",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4697.420 watt",
"Design Heating Load": "4697.420 watt",
"Calculated Cooling Load": "6058.550 watt",
"Design Cooling Load": "6058.550 watt"
}
}
}
},
{
"objectid": 1834,
"name": "Staff Room 57b [380264]",
"properties": {
"objectid": 1834,
"name": "Staff Room 57b [380264]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cd68",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "278.018 lux",
"Room Cavity Ratio": "3.065",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "248.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "190.080 liter/s",
"Calculated Supply Airflow": "190.080 liter/s",
"Actual Supply Airflow": "220.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "39.474 m^2",
"Perimeter": "28672.020 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "94.545 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "57b",
"Name": "Staff Room",
"Room Number": "57",
"Room Name": "Staff Rom",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "20",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "2325.140 watt",
"Design Heating Load": "2325.140 watt",
"Calculated Cooling Load": "2718.830 watt",
"Design Cooling Load": "2718.830 watt"
}
}
}
},
{
"objectid": 1840,
"name": "Meeting Room 69 [380446]",
"properties": {
"objectid": 1840,
"name": "Meeting Room 69 [380446]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce1e",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "426.004 lux",
"Room Cavity Ratio": "4.097",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2912.700 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "300.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "238.719 liter/s",
"Calculated Supply Airflow": "238.719 liter/s",
"Actual Supply Airflow": "240.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "30.579 m^2",
"Perimeter": "23299.579 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "93.302 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "69",
"Name": "Meeting Room",
"Room Number": "54",
"Room Name": "EDP I",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "22",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Conference Meeting/Multipurpose",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "2108.820 watt",
"Design Heating Load": "2108.820 watt",
"Calculated Cooling Load": "3791.700 watt",
"Design Cooling Load": "3791.700 watt"
}
}
}
},
{
"objectid": 1844,
"name": "EDP III 52 [380505]",
"properties": {
"objectid": 1844,
"name": "EDP III 52 [380505]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce59",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "171.564 lux",
"Room Cavity Ratio": "3.218",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "124.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "720.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "539.689 liter/s",
"Calculated Supply Airflow": "539.689 liter/s",
"Actual Supply Airflow": "270.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "31.442 m^2",
"Perimeter": "23978.868 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "76.242 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "52",
"Name": "EDP III",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "24",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4875.530 watt",
"Design Heating Load": "4875.530 watt",
"Calculated Cooling Load": "7587.540 watt",
"Design Cooling Load": "7587.540 watt"
}
}
}
},
{
"objectid": 1847,
"name": "EDP II 53 [380510]",
"properties": {
"objectid": 1847,
"name": "EDP II 53 [380510]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce5e",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "269.603 lux",
"Room Cavity Ratio": "1.764",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "496.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1620.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "684.956 liter/s",
"Calculated Supply Airflow": "684.956 liter/s",
"Actual Supply Airflow": "720.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "940.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "94.616 m^2",
"Perimeter": "39550.595 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "236.009 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "53",
"Name": "EDP II",
"Room Number": "53",
"Room Name": "EDP III",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "25",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "7029.160 watt",
"Design Heating Load": "7029.160 watt",
"Calculated Cooling Load": "9585.910 watt",
"Design Cooling Load": "9585.910 watt"
}
}
}
},
{
"objectid": 1850,
"name": "Admin 47 [380515]",
"properties": {
"objectid": 1850,
"name": "Admin 47 [380515]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce63",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "346.116 lux",
"Room Cavity Ratio": "4.289",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "145.645 liter/s",
"Calculated Supply Airflow": "145.645 liter/s",
"Actual Supply Airflow": "150.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "20.826 m^2",
"Perimeter": "21168.092 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "50.269 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "47",
"Name": "Admin",
"Room Number": "47",
"Room Name": "Admin",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "26",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1499.540 watt",
"Design Heating Load": "1499.540 watt",
"Calculated Cooling Load": "2050.320 watt",
"Design Cooling Load": "2050.320 watt"
}
}
}
},
{
"objectid": 1852,
"name": "Stock 46 [380517]",
"properties": {
"objectid": 1852,
"name": "Stock 46 [380517]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce65",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "322.432 lux",
"Room Cavity Ratio": "3.968",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "900.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "8.310 liter/s",
"Calculated Supply Airflow": "8.310 liter/s",
"Actual Supply Airflow": "200.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "23.129 m^2",
"Perimeter": "21746.033 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "55.909 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "46",
"Name": "Stock",
"Room Number": "46",
"Room Name": "Stock",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "26",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1390.400 watt",
"Design Heating Load": "1390.400 watt",
"Calculated Cooling Load": "143.184 watt",
"Design Cooling Load": "143.184 watt"
}
}
}
},
{
"objectid": 1855,
"name": "WC 41 [380522]",
"properties": {
"objectid": 1855,
"name": "WC 41 [380522]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce6a",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "387.151 lux",
"Room Cavity Ratio": "5.118",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "360.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "104.971 liter/s",
"Calculated Supply Airflow": "104.971 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "235.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "17.102 m^2",
"Perimeter": "20743.092 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "41.460 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "41",
"Name": "WC",
"Room Number": "41",
"Room Name": "WC H",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "27",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1319.620 watt",
"Design Heating Load": "1319.620 watt",
"Calculated Cooling Load": "1406.630 watt",
"Design Cooling Load": "1406.630 watt"
}
}
}
},
{
"objectid": 1857,
"name": "WC 40 [380524]",
"properties": {
"objectid": 1857,
"name": "WC 40 [380524]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce6c",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "401.599 lux",
"Room Cavity Ratio": "5.304",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "360.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "104.126 liter/s",
"Calculated Supply Airflow": "104.126 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "235.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "16.184 m^2",
"Perimeter": "20343.092 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "39.085 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "40",
"Name": "WC",
"Room Number": "40",
"Room Name": "WC D",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "27",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1308.810 watt",
"Design Heating Load": "1308.810 watt",
"Calculated Cooling Load": "1395.320 watt",
"Design Cooling Load": "1395.320 watt"
}
}
}
},
{
"objectid": 1860,
"name": "Laboratory ! 32 [380529]",
"properties": {
"objectid": 1860,
"name": "Laboratory ! 32 [380529]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce71",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "285.661 lux",
"Room Cavity Ratio": "2.103",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "372.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "387.277 liter/s",
"Calculated Supply Airflow": "387.277 liter/s",
"Actual Supply Airflow": "400.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "64.347 m^2",
"Perimeter": "32066.845 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "155.623 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "32",
"Name": "Laboratory !",
"Room Number": "32",
"Room Name": "Laboratory I",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "28",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Laboratory - Office",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4268.250 watt",
"Design Heating Load": "4268.250 watt",
"Calculated Cooling Load": "6006.490 watt",
"Design Cooling Load": "6006.490 watt"
}
}
}
},
{
"objectid": 1862,
"name": "Laboratory II 33 [380531]",
"properties": {
"objectid": 1862,
"name": "Laboratory II 33 [380531]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce73",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "184.669 lux",
"Room Cavity Ratio": "2.472",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "720.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "310.647 liter/s",
"Calculated Supply Airflow": "310.647 liter/s",
"Actual Supply Airflow": "340.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "47.678 m^2",
"Perimeter": "27930.595 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "115.285 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "33",
"Name": "Laboratory II",
"Room Number": "33",
"Room Name": "Laboratory II",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "28",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Laboratory - Office",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "3371.720 watt",
"Design Heating Load": "3371.720 watt",
"Calculated Cooling Load": "4762.050 watt",
"Design Cooling Load": "4762.050 watt"
}
}
}
},
{
"objectid": 1865,
"name": "Cleaning 34 [380536]",
"properties": {
"objectid": 1865,
"name": "Cleaning 34 [380536]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce78",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "257.360 lux",
"Room Cavity Ratio": "3.209",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "9.882 liter/s",
"Calculated Supply Airflow": "9.882 liter/s",
"Actual Supply Airflow": "220.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "31.475 m^2",
"Perimeter": "23930.595 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "76.092 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "34",
"Name": "Cleaning",
"Room Number": "34",
"Room Name": "Cleaning",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "29",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "2941.160 watt",
"Design Heating Load": "2941.160 watt",
"Calculated Cooling Load": "173.853 watt",
"Design Cooling Load": "173.853 watt"
}
}
}
},
{
"objectid": 1867,
"name": "Student Council 35 [380538]",
"properties": {
"objectid": 1867,
"name": "Student Council 35 [380538]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce7a",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "257.360 lux",
"Room Cavity Ratio": "3.209",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "205.207 liter/s",
"Calculated Supply Airflow": "205.207 liter/s",
"Actual Supply Airflow": "220.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "31.475 m^2",
"Perimeter": "23930.595 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "76.113 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "35",
"Name": "Student Council",
"Room Number": "35",
"Room Name": "Student Council",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "29",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "2940.210 watt",
"Design Heating Load": "2940.210 watt",
"Calculated Cooling Load": "2886.050 watt",
"Design Cooling Load": "2886.050 watt"
}
}
}
},
{
"objectid": 1869,
"name": "Meeting Room 36 [380540]",
"properties": {
"objectid": 1869,
"name": "Meeting Room 36 [380540]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce7c",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "257.360 lux",
"Room Cavity Ratio": "3.209",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "238.680 liter/s",
"Calculated Supply Airflow": "238.680 liter/s",
"Actual Supply Airflow": "240.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "31.475 m^2",
"Perimeter": "23930.595 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "76.079 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "36",
"Name": "Meeting Room",
"Room Number": "36",
"Room Name": "Meeting Room",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "29",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Conference Meeting/Multipurpose",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "2955.660 watt",
"Design Heating Load": "2955.660 watt",
"Calculated Cooling Load": "3810.720 watt",
"Design Cooling Load": "3810.720 watt"
}
}
}
},
{
"objectid": 1872,
"name": "EDP 37 [380545]",
"properties": {
"objectid": 1872,
"name": "EDP 37 [380545]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce81",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "369.338 lux",
"Room Cavity Ratio": "2.472",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "372.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "271.600 liter/s",
"Calculated Supply Airflow": "271.600 liter/s",
"Actual Supply Airflow": "300.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "470.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "47.678 m^2",
"Perimeter": "27930.595 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "115.874 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "37",
"Name": "EDP",
"Room Number": "37",
"Room Name": "EDP",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "30",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "3628.310 watt",
"Design Heating Load": "3628.310 watt",
"Calculated Cooling Load": "3849.300 watt",
"Design Cooling Load": "3849.300 watt"
}
}
}
},
{
"objectid": 1874,
"name": "EDP Management 38 [380547]",
"properties": {
"objectid": 1874,
"name": "EDP Management 38 [380547]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce83",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "258.796 lux",
"Room Cavity Ratio": "3.228",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "186.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "188.267 liter/s",
"Calculated Supply Airflow": "188.267 liter/s",
"Actual Supply Airflow": "220.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "31.231 m^2",
"Perimeter": "23891.845 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "76.266 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "38",
"Name": "EDP Management",
"Room Number": "38",
"Room Name": "EDP Management",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "30",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "2895.820 watt",
"Design Heating Load": "2895.820 watt",
"Calculated Cooling Load": "2658.850 watt",
"Design Cooling Load": "2658.850 watt"
}
}
}
},
{
"objectid": 1876,
"name": "Server Space 39 [380549]",
"properties": {
"objectid": 1876,
"name": "Server Space 39 [380549]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce85",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "453.467 lux",
"Room Cavity Ratio": "2.883",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "372.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "242.870 liter/s",
"Calculated Supply Airflow": "242.870 liter/s",
"Actual Supply Airflow": "250.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "235.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "37.053 m^2",
"Perimeter": "25314.183 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "90.141 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "39",
"Name": "Server Space",
"Room Number": "39",
"Room Name": "Server Space",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "30",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "3132.200 watt",
"Design Heating Load": "3132.200 watt",
"Calculated Cooling Load": "3424.720 watt",
"Design Cooling Load": "3424.720 watt"
}
}
}
},
{
"objectid": 1879,
"name": "Assembly 55 [380554]",
"properties": {
"objectid": 1879,
"name": "Assembly 55 [380554]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce8a",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "128.105 lux",
"Room Cavity Ratio": "2.765",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2590.400 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "600.000 volt A",
"Actual Receptacles Load": "720.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "320.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "43.618 m^2",
"Perimeter": "26380.064 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "133.304 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "55",
"Name": "Assembly",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "31",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Conference Meeting/Multipurpose",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 1882,
"name": "Corridor 56 [380559]",
"properties": {
"objectid": 1882,
"name": "Corridor 56 [380559]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce8f",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "33.083 lux",
"Room Cavity Ratio": "2.569",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "15849.000 volt A",
"Actual Lighting Load": "240.000 volt A",
"Actual Receptacles Load": "540.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "60.873 m^2",
"Perimeter": "54976.392 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "186.445 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "56",
"Name": "Corridor",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "32",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 1885,
"name": "Corridor 57 [380564]",
"properties": {
"objectid": 1885,
"name": "Corridor 57 [380564]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce94",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "52.117 lux",
"Room Cavity Ratio": "1.090",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "18843.000 volt A",
"Actual Lighting Load": "660.000 volt A",
"Actual Receptacles Load": "360.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "450.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "133.661 m^2",
"Perimeter": "51188.615 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "421.803 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "57",
"Name": "Corridor",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "33",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 1888,
"name": "Corridor 58 [380569]",
"properties": {
"objectid": 1888,
"name": "Corridor 58 [380569]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce99",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "79.847 lux",
"Room Cavity Ratio": "1.012",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "30533.000 volt A",
"Actual Lighting Load": "1240.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "750.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "164.238 m^2",
"Perimeter": "58411.006 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "519.246 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "58",
"Name": "Corridor",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "34",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 1891,
"name": "Corridor 59 [380574]",
"properties": {
"objectid": 1891,
"name": "Corridor 59 [380574]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ce9e",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "33.657 lux",
"Room Cavity Ratio": "2.425",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "20340.000 volt A",
"Actual Lighting Load": "480.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "121.800 m^2",
"Perimeter": "103820.532 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "372.991 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "59",
"Name": "Corridor",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "35",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 1900,
"name": "Hall 84 [380587]",
"properties": {
"objectid": 1900,
"name": "Hall 84 [380587]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ceab",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "356.009 lux",
"Room Cavity Ratio": "2.318",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "434.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1260.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "294.791 liter/s",
"Calculated Supply Airflow": "294.791 liter/s",
"Actual Supply Airflow": "400.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "400.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "58.747 m^2",
"Perimeter": "32265.681 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "149.834 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "84",
"Name": "Hall",
"Room Number": "84",
"Room Name": "Hall",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "36",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4815.940 watt",
"Design Heating Load": "4815.940 watt",
"Calculated Cooling Load": "4221.730 watt",
"Design Cooling Load": "4221.730 watt"
}
}
}
},
{
"objectid": 1904,
"name": "Hall 83a [380593]",
"properties": {
"objectid": 1904,
"name": "Hall 83a [380593]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ceb1",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "360.965 lux",
"Room Cavity Ratio": "2.446",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "372.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "215.011 liter/s",
"Calculated Supply Airflow": "215.011 liter/s",
"Actual Supply Airflow": "230.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "230.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "48.934 m^2",
"Perimeter": "28357.500 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "125.390 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "83a",
"Name": "Hall",
"Room Number": "83",
"Room Name": "Hall",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "37",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "3363.950 watt",
"Design Heating Load": "3363.950 watt",
"Calculated Cooling Load": "3085.010 watt",
"Design Cooling Load": "3085.010 watt"
}
}
}
},
{
"objectid": 1907,
"name": "Hall 82a [380598]",
"properties": {
"objectid": 1907,
"name": "Hall 82a [380598]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ceb6",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "281.920 lux",
"Room Cavity Ratio": "2.088",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "372.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "282.380 liter/s",
"Calculated Supply Airflow": "282.380 liter/s",
"Actual Supply Airflow": "320.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "320.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "65.314 m^2",
"Perimeter": "32318.750 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "167.365 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "82a",
"Name": "Hall",
"Room Number": "82",
"Room Name": "Hall",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "38",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4372.700 watt",
"Design Heating Load": "4372.700 watt",
"Calculated Cooling Load": "4056.000 watt",
"Design Cooling Load": "4056.000 watt"
}
}
}
},
{
"objectid": 1910,
"name": "Hall 85a [380603]",
"properties": {
"objectid": 1910,
"name": "Hall 85a [380603]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cebb",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "301.161 lux",
"Room Cavity Ratio": "1.776",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "558.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "609.363 liter/s",
"Calculated Supply Airflow": "609.363 liter/s",
"Actual Supply Airflow": "690.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "820.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "95.158 m^2",
"Perimeter": "40038.868 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "247.820 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "85a",
"Name": "Hall",
"Room Number": "85",
"Room Name": "Hall",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "39",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "7714.730 watt",
"Design Heating Load": "7714.730 watt",
"Calculated Cooling Load": "8570.580 watt",
"Design Cooling Load": "8570.580 watt"
}
}
}
},
{
"objectid": 1912,
"name": "Preparation 86 [380605]",
"properties": {
"objectid": 1912,
"name": "Preparation 86 [380605]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cebd",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "143.859 lux",
"Room Cavity Ratio": "4.155",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "62.000 volt A",
"Actual Receptacles Load": "360.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "85.773 liter/s",
"Calculated Supply Airflow": "85.773 liter/s",
"Actual Supply Airflow": "100.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "16.940 m^2",
"Perimeter": "16678.683 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "44.766 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "86",
"Name": "Preparation",
"Room Number": "86",
"Room Name": "Preparation",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "39",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1441.910 watt",
"Design Heating Load": "1441.910 watt",
"Calculated Cooling Load": "1220.250 watt",
"Design Cooling Load": "1220.250 watt"
}
}
}
},
{
"objectid": 1914,
"name": "Anteroom 81a [380610]",
"properties": {
"objectid": 1914,
"name": "Anteroom 81a [380610]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cec2",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "0.000 lux",
"Room Cavity Ratio": "0.000",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "0.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "19.341 liter/s",
"Calculated Supply Airflow": "19.341 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "3.911 m^2",
"Perimeter": "8980.000 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "12.907 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "81a",
"Name": "Anteroom",
"Room Number": "81",
"Room Name": "Anteroom",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "39",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "285.333 watt",
"Design Heating Load": "285.333 watt",
"Calculated Cooling Load": "259.177 watt",
"Design Cooling Load": "259.177 watt"
}
}
}
},
{
"objectid": 1916,
"name": "WC 79 [380612]",
"properties": {
"objectid": 1916,
"name": "WC 79 [380612]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cec4",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "0.000 lux",
"Room Cavity Ratio": "0.000",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "0.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "20.530 liter/s",
"Calculated Supply Airflow": "20.530 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "3.468 m^2",
"Perimeter": "8711.842 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "10.926 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "79",
"Name": "WC",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "39",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "266.417 watt",
"Design Heating Load": "266.417 watt",
"Calculated Cooling Load": "275.114 watt",
"Design Cooling Load": "275.114 watt"
}
}
}
},
{
"objectid": 1918,
"name": "WC 80 [380614]",
"properties": {
"objectid": 1918,
"name": "WC 80 [380614]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cec6",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "0.000 lux",
"Room Cavity Ratio": "0.000",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "0.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "20.748 liter/s",
"Calculated Supply Airflow": "20.748 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "3.368 m^2",
"Perimeter": "8651.842 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "10.613 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "80",
"Name": "WC",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "39",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "288.741 watt",
"Design Heating Load": "288.741 watt",
"Calculated Cooling Load": "278.036 watt",
"Design Cooling Load": "278.036 watt"
}
}
}
},
{
"objectid": 1921,
"name": "Hall 87 [380619]",
"properties": {
"objectid": 1921,
"name": "Hall 87 [380619]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cecb",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "286.490 lux",
"Room Cavity Ratio": "2.105",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "372.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "387.523 liter/s",
"Calculated Supply Airflow": "387.523 liter/s",
"Actual Supply Airflow": "400.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "200.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "64.145 m^2",
"Perimeter": "31997.618 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "164.025 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "87",
"Name": "Hall",
"Room Number": "87",
"Room Name": "Hall",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "40",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "3573.540 watt",
"Design Heating Load": "3573.540 watt",
"Calculated Cooling Load": "5461.550 watt",
"Design Cooling Load": "5461.550 watt"
}
}
}
},
{
"objectid": 1923,
"name": "Chemistry 88a [380623]",
"properties": {
"objectid": 1923,
"name": "Chemistry 88a [380623]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cecf",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "286.490 lux",
"Room Cavity Ratio": "2.105",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "372.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "393.905 liter/s",
"Calculated Supply Airflow": "393.905 liter/s",
"Actual Supply Airflow": "400.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "400.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "64.145 m^2",
"Perimeter": "31997.618 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "164.203 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "88a",
"Name": "Chemistry",
"Room Number": "88",
"Room Name": "Chemistry",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "40",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4221.060 watt",
"Design Heating Load": "4221.060 watt",
"Calculated Cooling Load": "5547.060 watt",
"Design Cooling Load": "5547.060 watt"
}
}
}
},
{
"objectid": 1926,
"name": "Physics 89 [380628]",
"properties": {
"objectid": 1926,
"name": "Physics 89 [380628]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ced4",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "244.724 lux",
"Room Cavity Ratio": "2.464",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "248.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1260.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "393.930 liter/s",
"Calculated Supply Airflow": "393.930 liter/s",
"Actual Supply Airflow": "200.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "200.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "48.017 m^2",
"Perimeter": "28032.618 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "122.912 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "89",
"Name": "Physics",
"Room Number": "89",
"Room Name": "Physics",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "41",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4487.070 watt",
"Design Heating Load": "4487.070 watt",
"Calculated Cooling Load": "5547.390 watt",
"Design Cooling Load": "5547.390 watt"
}
}
}
},
{
"objectid": 1928,
"name": "Auditorium 90 [380630]",
"properties": {
"objectid": 1928,
"name": "Auditorium 90 [380630]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005ced6",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "245.192 lux",
"Room Cavity Ratio": "2.469",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "248.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "388.161 liter/s",
"Calculated Supply Airflow": "388.161 liter/s",
"Actual Supply Airflow": "200.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "200.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "47.895 m^2",
"Perimeter": "28023.868 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "122.424 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "90",
"Name": "Auditorium",
"Room Number": "90",
"Room Name": "Auditorium",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "41",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Audience/Seating Area - Auditorium",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4535.180 watt",
"Design Heating Load": "4535.180 watt",
"Calculated Cooling Load": "5951.260 watt",
"Design Cooling Load": "5951.260 watt"
}
}
}
},
{
"objectid": 1931,
"name": "Auditorium 91a [380635]",
"properties": {
"objectid": 1931,
"name": "Auditorium 91a [380635]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cedb",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "319.905 lux",
"Room Cavity Ratio": "1.913",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "496.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "517.445 liter/s",
"Calculated Supply Airflow": "517.445 liter/s",
"Actual Supply Airflow": "520.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "520.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "78.346 m^2",
"Perimeter": "35511.845 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "206.168 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "91a",
"Name": "Auditorium",
"Room Number": "91",
"Room Name": "Auditorium",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "42",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Audience/Seating Area - Auditorium",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "6766.610 watt",
"Design Heating Load": "6766.610 watt",
"Calculated Cooling Load": "7848.180 watt",
"Design Cooling Load": "7848.180 watt"
}
}
}
},
{
"objectid": 1934,
"name": "Reserve 78 [380640]",
"properties": {
"objectid": 1934,
"name": "Reserve 78 [380640]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cee0",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "385.172 lux",
"Room Cavity Ratio": "2.542",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "372.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1080.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "13.811 liter/s",
"Calculated Supply Airflow": "13.811 liter/s",
"Actual Supply Airflow": "200.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "200.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "45.350 m^2",
"Perimeter": "27321.033 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "115.500 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "78",
"Name": "Reserve",
"Room Number": "78",
"Room Name": "Reserve",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "43",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "2665.910 watt",
"Design Heating Load": "2665.910 watt",
"Calculated Cooling Load": "239.822 watt",
"Design Cooling Load": "239.822 watt"
}
}
}
},
{
"objectid": 1937,
"name": "WC 76 [380645]",
"properties": {
"objectid": 1937,
"name": "WC 76 [380645]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cee5",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "330.526 lux",
"Room Cavity Ratio": "3.416",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "184.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "180.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "88.833 liter/s",
"Calculated Supply Airflow": "88.833 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "250.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "17.345 m^2",
"Perimeter": "20828.092 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "41.796 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "76",
"Name": "WC",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "44",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1341.140 watt",
"Design Heating Load": "1341.140 watt",
"Calculated Cooling Load": "1190.400 watt",
"Design Cooling Load": "1190.400 watt"
}
}
}
},
{
"objectid": 1939,
"name": "WC 77 [380647]",
"properties": {
"objectid": 1939,
"name": "WC 77 [380647]",
"externalId": "4ac1827e-89cc-4dd6-9110-78912bf81d6b-0005cee7",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "344.356 lux",
"Room Cavity Ratio": "3.538",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "184.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "180.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "77.315 liter/s",
"Calculated Supply Airflow": "77.315 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "250.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "16.427 m^2",
"Perimeter": "20428.092 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "39.533 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "77",
"Name": "WC",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "44",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Restrooms",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1296.450 watt",
"Design Heating Load": "1296.450 watt",
"Calculated Cooling Load": "1036.050 watt",
"Design Cooling Load": "1036.050 watt"
}
}
}
},
{
"objectid": 1944,
"name": "Hall III 72 [380843]",
"properties": {
"objectid": 1944,
"name": "Hall III 72 [380843]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfab",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "383.375 lux",
"Room Cavity Ratio": "2.109",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "496.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "328.393 liter/s",
"Calculated Supply Airflow": "328.393 liter/s",
"Actual Supply Airflow": "360.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "360.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "63.881 m^2",
"Perimeter": "31930.595 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "163.066 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "72",
"Name": "Hall III",
"Room Number": "72",
"Room Name": "Hall III",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "46",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4358.570 watt",
"Design Heating Load": "4358.570 watt",
"Calculated Cooling Load": "4666.550 watt",
"Design Cooling Load": "4666.550 watt"
}
}
}
},
{
"objectid": 1946,
"name": "Hall IV 73 [380845]",
"properties": {
"objectid": 1946,
"name": "Hall IV 73 [380845]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfad",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "383.375 lux",
"Room Cavity Ratio": "2.109",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "496.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "328.856 liter/s",
"Calculated Supply Airflow": "328.856 liter/s",
"Actual Supply Airflow": "360.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "360.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "63.881 m^2",
"Perimeter": "31930.595 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "163.066 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "73",
"Name": "Hall IV",
"Room Number": "73",
"Room Name": "Hall IV",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "46",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4363.800 watt",
"Design Heating Load": "4363.800 watt",
"Calculated Cooling Load": "4672.750 watt",
"Design Cooling Load": "4672.750 watt"
}
}
}
},
{
"objectid": 1948,
"name": "Hall 74 [380847]",
"properties": {
"objectid": 1948,
"name": "Hall 74 [380847]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfaf",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "355.089 lux",
"Room Cavity Ratio": "2.019",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "496.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "369.395 liter/s",
"Calculated Supply Airflow": "369.395 liter/s",
"Actual Supply Airflow": "400.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "400.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "69.702 m^2",
"Perimeter": "33352.933 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "177.926 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "74",
"Name": "Hall",
"Room Number": "74",
"Room Name": "Hall V",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "46",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "5104.500 watt",
"Design Heating Load": "5104.500 watt",
"Calculated Cooling Load": "5240.250 watt",
"Design Cooling Load": "5240.250 watt"
}
}
}
},
{
"objectid": 1951,
"name": "Corridor 81 [380852]",
"properties": {
"objectid": 1951,
"name": "Corridor 81 [380852]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfb4",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "28.360 lux",
"Room Cavity Ratio": "2.472",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "18636.000 volt A",
"Actual Lighting Load": "300.000 volt A",
"Actual Receptacles Load": "540.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "405.041 liter/s",
"Calculated Supply Airflow": "405.041 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "89.825 m^2",
"Perimeter": "78044.050 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "285.227 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "81",
"Name": "Corridor",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "47",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "6532.010 watt",
"Design Heating Load": "6532.010 watt",
"Calculated Cooling Load": "5427.570 watt",
"Design Cooling Load": "5427.570 watt"
}
}
}
},
{
"objectid": 1954,
"name": "Corridor 82 [380857]",
"properties": {
"objectid": 1954,
"name": "Corridor 82 [380857]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfb9",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "66.969 lux",
"Room Cavity Ratio": "1.031",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "12063.000 volt A",
"Actual Lighting Load": "980.000 volt A",
"Actual Receptacles Load": "540.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "583.624 liter/s",
"Calculated Supply Airflow": "583.624 liter/s",
"Actual Supply Airflow": "660.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "154.576 m^2",
"Perimeter": "55991.533 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "503.584 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "82",
"Name": "Corridor",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "48",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "7764.310 watt",
"Design Heating Load": "7764.310 watt",
"Calculated Cooling Load": "7820.620 watt",
"Design Cooling Load": "7820.620 watt"
}
}
}
},
{
"objectid": 1957,
"name": "Corridor 83 [380862]",
"properties": {
"objectid": 1957,
"name": "Corridor 83 [380862]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfbe",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "52.358 lux",
"Room Cavity Ratio": "1.697",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual HVAC Load": "46298.000 volt A",
"Actual Lighting Load": "1640.000 volt A",
"Actual Receptacles Load": "1620.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "947.813 liter/s",
"Calculated Supply Airflow": "947.813 liter/s",
"Actual Supply Airflow": "660.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "304.585 m^2",
"Perimeter": "181634.264 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "978.418 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "83",
"Name": "Corridor",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "49",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "19547.500 watt",
"Design Heating Load": "19547.500 watt",
"Calculated Cooling Load": "12700.800 watt",
"Design Cooling Load": "12700.800 watt"
}
}
}
},
{
"objectid": 1960,
"name": "Stair 92 [380867]",
"properties": {
"objectid": 1960,
"name": "Stair 92 [380867]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfc3",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "27.736 lux",
"Room Cavity Ratio": "2.926",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "60.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "78.024 liter/s",
"Calculated Supply Airflow": "78.024 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "17.390 m^2",
"Perimeter": "19499.882 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "59.620 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "92",
"Name": "Stair",
"Room Number": "92",
"Room Name": "Stair",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "50",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1636.010 watt",
"Design Heating Load": "1636.010 watt",
"Calculated Cooling Load": "1045.530 watt",
"Design Cooling Load": "1045.530 watt"
}
}
}
},
{
"objectid": 1962,
"name": "Stair 85 [380871]",
"properties": {
"objectid": 1962,
"name": "Stair 85 [380871]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfc7",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "26.398 lux",
"Room Cavity Ratio": "3.175",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "60.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "17.742 m^2",
"Perimeter": "19799.882 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "58.611 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "85",
"Name": "Stair",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "50",
"Plenum": "No",
"Occupiable": "No",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 1965,
"name": "Stair 88 [380886]",
"properties": {
"objectid": 1965,
"name": "Stair 88 [380886]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfd6",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "23.977 lux",
"Room Cavity Ratio": "2.866",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "60.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "20.261 m^2",
"Perimeter": "20408.092 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "66.906 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "88",
"Name": "Stair",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "51",
"Plenum": "No",
"Occupiable": "No",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 1967,
"name": "Stair 93 [380891]",
"properties": {
"objectid": 1967,
"name": "Stair 93 [380891]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfdb",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "24.671 lux",
"Room Cavity Ratio": "2.629",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "60.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "68.304 liter/s",
"Calculated Supply Airflow": "68.304 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "20.261 m^2",
"Perimeter": "20408.092 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "69.496 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "93",
"Name": "Stair",
"Room Number": "93",
"Room Name": "Stair",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "51",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1093.900 watt",
"Design Heating Load": "1093.900 watt",
"Calculated Cooling Load": "915.289 watt",
"Design Cooling Load": "915.289 watt"
}
}
}
},
{
"objectid": 1970,
"name": "Stair 94 [380903]",
"properties": {
"objectid": 1970,
"name": "Stair 94 [380903]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfe7",
"properties": {
"Constraints": {
"Level": "Level 1",
"Upper Limit": "Level 1",
"Limit Offset": "3705.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "22.740 lux",
"Room Cavity Ratio": "2.569",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1805.828 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "60.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "88.168 liter/s",
"Calculated Supply Airflow": "88.168 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "22.140 m^2",
"Perimeter": "21800.000 mm",
"Unbounded Height": "3705.000 mm",
"Volume": "75.509 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "94",
"Name": "Stair",
"Room Number": "94",
"Room Name": "Stair",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "52",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "1871.990 watt",
"Design Heating Load": "1871.990 watt",
"Calculated Cooling Load": "1181.460 watt",
"Design Cooling Load": "1181.460 watt"
}
}
}
},
{
"objectid": 1972,
"name": "Stair 91 [380907]",
"properties": {
"objectid": 1972,
"name": "Stair 91 [380907]",
"externalId": "fdad9ed8-b84e-4f19-a6f9-b6c394d5425a-0005cfeb",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 2",
"Limit Offset": "3500.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "22.879 lux",
"Room Cavity Ratio": "2.828",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "1900.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "60.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "0.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "21.330 m^2",
"Perimeter": "21200.000 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "70.342 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "91",
"Name": "Stair",
"Room Number": "Unoccupied",
"Room Name": "Unoccupied",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "52",
"Plenum": "No",
"Occupiable": "No",
"Condition Type": "Heated and cooled",
"Space Type": "Corridor/Transition",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 1983,
"name": "Hall I 70 [380983]",
"properties": {
"objectid": 1983,
"name": "Hall I 70 [380983]",
"externalId": "9a03418f-c436-478c-a588-b86472fc6f38-0005d037",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "380.882 lux",
"Room Cavity Ratio": "2.103",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "496.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "327.540 liter/s",
"Calculated Supply Airflow": "327.540 liter/s",
"Actual Supply Airflow": "360.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "360.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "64.347 m^2",
"Perimeter": "32066.845 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "164.255 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "70",
"Name": "Hall I",
"Room Number": "70",
"Room Name": "Hall I",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "53",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4349.190 watt",
"Design Heating Load": "4349.190 watt",
"Calculated Cooling Load": "4657.100 watt",
"Design Cooling Load": "4657.100 watt"
}
}
}
},
{
"objectid": 1985,
"name": "Hall II 71 [380991]",
"properties": {
"objectid": 1985,
"name": "Hall II 71 [380991]",
"externalId": "d2c76d0a-5774-42dd-8a54-b4c401dc3bd1-0005d03f",
"properties": {
"Constraints": {
"Level": "Level 3",
"Upper Limit": "Level 3",
"Limit Offset": "3600.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "383.375 lux",
"Room Cavity Ratio": "2.109",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "2450.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Lighting Load": "496.000 volt A",
"Actual Other Load": "0.000 volt A",
"Actual Receptacles Load": "1440.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "329.049 liter/s",
"Calculated Supply Airflow": "329.049 liter/s",
"Actual Supply Airflow": "360.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "360.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "63.881 m^2",
"Perimeter": "31930.595 mm",
"Unbounded Height": "3600.000 mm",
"Volume": "163.066 m^3",
"Computation Height": "0.000 mm"
},
"Identity Data": {
"Number": "71",
"Name": "Hall II",
"Room Number": "71",
"Room Name": "Hall II",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "53",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Open Plan",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "4361.770 watt",
"Design Heating Load": "4361.770 watt",
"Calculated Cooling Load": "4675.340 watt",
"Design Cooling Load": "4675.340 watt"
}
}
}
},
{
"objectid": 8516,
"name": "Leader 66 [535890]",
"properties": {
"objectid": 8516,
"name": "Leader 66 [535890]",
"externalId": "1102f9bd-eae5-4fdc-96af-7b0bd8097a18-00082d52",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 3",
"Limit Offset": "0.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "0.000 lux",
"Room Cavity Ratio": "0.000",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "0.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Other Load": "0.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "255.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "39.854 m^2",
"Perimeter": "26123.750 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "96.294 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "66",
"Name": "Leader",
"Room Number": "66",
"Room Name": "Leader",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "54",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 8518,
"name": "Secretary 67 [535892]",
"properties": {
"objectid": 8518,
"name": "Secretary 67 [535892]",
"externalId": "1102f9bd-eae5-4fdc-96af-7b0bd8097a18-00082d54",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 3",
"Limit Offset": "0.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "0.000 lux",
"Room Cavity Ratio": "0.000",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "0.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Other Load": "0.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "100.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "23.491 m^2",
"Perimeter": "26587.500 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "56.857 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "67",
"Name": "Secretary",
"Room Number": "67",
"Room Name": "Secretary",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "54",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
},
{
"objectid": 8520,
"name": "Doctor 68 [535894]",
"properties": {
"objectid": 8520,
"name": "Doctor 68 [535894]",
"externalId": "1102f9bd-eae5-4fdc-96af-7b0bd8097a18-00082d56",
"properties": {
"Constraints": {
"Level": "Level 2",
"Upper Limit": "Level 3",
"Limit Offset": "0.000 mm",
"Base Offset": "0.000 mm"
},
"Electrical - Lighting": {
"Average Estimated Illumination": "0.000 lux",
"Room Cavity Ratio": "0.000",
"Lighting Calculation Workplane": "762.000 mm",
"Lighting Calculation Luminaire Plane": "0.000 mm",
"Ceiling Reflectance": "75.000 %",
"Wall Reflectance": "50.000 %",
"Floor Reflectance": "20.000 %"
},
"Electrical - Loads": {
"Design HVAC Load per area": "0.000 watt/m^2",
"Design Other Load per area": "0.000 watt/m^2",
"Actual Other Load": "0.000 volt A"
},
"Mechanical - Flow": {
"Specified Supply Airflow": "0.000 liter/s",
"Calculated Supply Airflow": "0.000 liter/s",
"Actual Supply Airflow": "125.000 liter/s",
"Return Airflow": "Specified",
"Specified Return Airflow": "0.000 liter/s",
"Actual Return Airflow": "0.000 liter/s",
"Specified Exhaust Airflow": "0.000 liter/s",
"Actual Exhaust Airflow": "0.000 liter/s",
"Outdoor Airflow": "0.000 liter/s"
},
"Dimensions": {
"Area": "28.178 m^2",
"Perimeter": "28495.681 mm",
"Unbounded Height": "3500.000 mm",
"Volume": "67.142 m^3",
"Computation Height": "1219.200 mm"
},
"Identity Data": {
"Number": "68",
"Name": "Doctor",
"Room Number": "68",
"Room Name": "Doctor",
"Image": "",
"Comments": ""
},
"Phasing": {
"Phase": "New Construction"
},
"Energy Analysis": {
"Zone": "54",
"Plenum": "No",
"Occupiable": "Yes",
"Condition Type": "Heated and cooled",
"Space Type": "Office - Enclosed",
"Construction Type": "<Building>",
"People": "",
"Electrical Loads": "",
"Outdoor Air Information": "From Zone",
"Outdoor Air per Person": "0.000 liter/s",
"Outdoor Air per Area": "0.000 liter / (s m^2)",
"Air Changes per Hour": "0.000",
"Outdoor Air Method": "by People and by Area",
"Calculated Heating Load": "0.000 watt",
"Design Heating Load": "0.000 watt",
"Calculated Cooling Load": "0.000 watt",
"Design Cooling Load": "0.000 watt"
}
}
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment