├── .gitignore ├── README.md ├── ahuAnomaly.py ├── app.py ├── arial.ttf ├── batchprocess.py ├── complaintAnalytics.py ├── endUseDisaggregation.py ├── energyBaseline.py ├── generate_report.py ├── metadata.py ├── occupancy.py ├── sample_data ├── ahu_hvac_sample.zip ├── cmms_sample.zip ├── energy_sample.zip ├── metadata_sample.zip ├── motion_sample.zip ├── ottawa_tOa_2019.zip ├── wifi_sample.zip └── zone_hvac_sample.zip ├── static ├── img │ ├── AHU_snapshot_example.png │ ├── SRC_example.png │ ├── User_flowchart.png │ ├── brodie-avatar.png │ ├── burak-avatar.png │ ├── cover_background.png │ ├── dre-avatar.png │ ├── endUseDisaggregation_example.png │ ├── energyBase_heating_example.png │ ├── example_AHUlevelHVAC_data_input.png │ ├── example_ZonelevelHVAC_data_input.png │ ├── example_cmms_data_input.png │ ├── example_energy_data_input.png │ ├── example_metadata_data_input.png │ ├── example_motionDetection_data_input.png │ ├── example_weather_data_input.png │ ├── example_wifi_data_input.png │ ├── floor_level_occ.png │ ├── logo_NRC.png │ ├── logo_NRCan.jpg │ ├── logo_NRCan.png │ ├── logo_bentall.png │ ├── logo_bprc.png │ ├── logo_carleton.jpg │ ├── logo_carleton.png │ ├── logo_coppertree.png │ ├── logo_delta.png │ ├── logo_sensible.png │ ├── occupancy_motion_pseudocode.png │ ├── percentile_occ.png │ ├── scott-avatar.png │ ├── tSa_tOa_example.png │ ├── tab_logo.ico │ └── zone_anomaly_example.png └── styles │ ├── contributors.css │ ├── cover.css │ ├── cover_example.css │ └── functions.css ├── templates ├── contributors.html ├── error.html ├── functions.html ├── functions_ahuAnomaly_inputs.html ├── functions_ahuAnomaly_outputs.html ├── functions_ahuAnomaly_overview.html ├── functions_ahuAnomaly_upload.html ├── functions_complaintAnalytics_inputs.html ├── functions_complaintAnalytics_outputs.html ├── functions_complaintAnalytics_overview.html ├── functions_complaintAnalytics_upload.html ├── functions_endUseDisaggregation_inputs.html ├── functions_endUseDisaggregation_outputs.html ├── functions_endUseDisaggregation_overview.html ├── functions_endUseDisaggregation_upload.html ├── functions_energyBaseline_inputs.html ├── functions_energyBaseline_outputs.html ├── functions_energyBaseline_overview.html ├── functions_energyBaseline_upload.html ├── functions_help.html ├── functions_metadata_inputs.html ├── functions_metadata_outputs.html ├── functions_metadata_overview.html ├── functions_metadata_upload.html ├── functions_occupancy_inputs.html ├── functions_occupancy_outputs.html ├── functions_occupancy_overview.html ├── functions_occupancy_upload.html ├── functions_sampleData.html ├── functions_zoneAnomaly_inputs.html ├── functions_zoneAnomaly_outputs.html ├── functions_zoneAnomaly_overview.html ├── functions_zoneAnomaly_upload.html ├── index.html ├── publications.html ├── request_accepted.html ├── results_not_ready.html └── results_ready.html └── zoneAnomaly.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/README.md -------------------------------------------------------------------------------- /ahuAnomaly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/ahuAnomaly.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/app.py -------------------------------------------------------------------------------- /arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/arial.ttf -------------------------------------------------------------------------------- /batchprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/batchprocess.py -------------------------------------------------------------------------------- /complaintAnalytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/complaintAnalytics.py -------------------------------------------------------------------------------- /endUseDisaggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/endUseDisaggregation.py -------------------------------------------------------------------------------- /energyBaseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/energyBaseline.py -------------------------------------------------------------------------------- /generate_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/generate_report.py -------------------------------------------------------------------------------- /metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/metadata.py -------------------------------------------------------------------------------- /occupancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/occupancy.py -------------------------------------------------------------------------------- /sample_data/ahu_hvac_sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/sample_data/ahu_hvac_sample.zip -------------------------------------------------------------------------------- /sample_data/cmms_sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/sample_data/cmms_sample.zip -------------------------------------------------------------------------------- /sample_data/energy_sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/sample_data/energy_sample.zip -------------------------------------------------------------------------------- /sample_data/metadata_sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/sample_data/metadata_sample.zip -------------------------------------------------------------------------------- /sample_data/motion_sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/sample_data/motion_sample.zip -------------------------------------------------------------------------------- /sample_data/ottawa_tOa_2019.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/sample_data/ottawa_tOa_2019.zip -------------------------------------------------------------------------------- /sample_data/wifi_sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/sample_data/wifi_sample.zip -------------------------------------------------------------------------------- /sample_data/zone_hvac_sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/sample_data/zone_hvac_sample.zip -------------------------------------------------------------------------------- /static/img/AHU_snapshot_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/AHU_snapshot_example.png -------------------------------------------------------------------------------- /static/img/SRC_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/SRC_example.png -------------------------------------------------------------------------------- /static/img/User_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/User_flowchart.png -------------------------------------------------------------------------------- /static/img/brodie-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/brodie-avatar.png -------------------------------------------------------------------------------- /static/img/burak-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/burak-avatar.png -------------------------------------------------------------------------------- /static/img/cover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/cover_background.png -------------------------------------------------------------------------------- /static/img/dre-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/dre-avatar.png -------------------------------------------------------------------------------- /static/img/endUseDisaggregation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/endUseDisaggregation_example.png -------------------------------------------------------------------------------- /static/img/energyBase_heating_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/energyBase_heating_example.png -------------------------------------------------------------------------------- /static/img/example_AHUlevelHVAC_data_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/example_AHUlevelHVAC_data_input.png -------------------------------------------------------------------------------- /static/img/example_ZonelevelHVAC_data_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/example_ZonelevelHVAC_data_input.png -------------------------------------------------------------------------------- /static/img/example_cmms_data_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/example_cmms_data_input.png -------------------------------------------------------------------------------- /static/img/example_energy_data_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/example_energy_data_input.png -------------------------------------------------------------------------------- /static/img/example_metadata_data_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/example_metadata_data_input.png -------------------------------------------------------------------------------- /static/img/example_motionDetection_data_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/example_motionDetection_data_input.png -------------------------------------------------------------------------------- /static/img/example_weather_data_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/example_weather_data_input.png -------------------------------------------------------------------------------- /static/img/example_wifi_data_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/example_wifi_data_input.png -------------------------------------------------------------------------------- /static/img/floor_level_occ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/floor_level_occ.png -------------------------------------------------------------------------------- /static/img/logo_NRC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_NRC.png -------------------------------------------------------------------------------- /static/img/logo_NRCan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_NRCan.jpg -------------------------------------------------------------------------------- /static/img/logo_NRCan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_NRCan.png -------------------------------------------------------------------------------- /static/img/logo_bentall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_bentall.png -------------------------------------------------------------------------------- /static/img/logo_bprc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_bprc.png -------------------------------------------------------------------------------- /static/img/logo_carleton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_carleton.jpg -------------------------------------------------------------------------------- /static/img/logo_carleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_carleton.png -------------------------------------------------------------------------------- /static/img/logo_coppertree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_coppertree.png -------------------------------------------------------------------------------- /static/img/logo_delta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_delta.png -------------------------------------------------------------------------------- /static/img/logo_sensible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/logo_sensible.png -------------------------------------------------------------------------------- /static/img/occupancy_motion_pseudocode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/occupancy_motion_pseudocode.png -------------------------------------------------------------------------------- /static/img/percentile_occ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/percentile_occ.png -------------------------------------------------------------------------------- /static/img/scott-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/scott-avatar.png -------------------------------------------------------------------------------- /static/img/tSa_tOa_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/tSa_tOa_example.png -------------------------------------------------------------------------------- /static/img/tab_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/tab_logo.ico -------------------------------------------------------------------------------- /static/img/zone_anomaly_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/img/zone_anomaly_example.png -------------------------------------------------------------------------------- /static/styles/contributors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/styles/contributors.css -------------------------------------------------------------------------------- /static/styles/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/styles/cover.css -------------------------------------------------------------------------------- /static/styles/cover_example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/styles/cover_example.css -------------------------------------------------------------------------------- /static/styles/functions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/static/styles/functions.css -------------------------------------------------------------------------------- /templates/contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/contributors.html -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/error.html -------------------------------------------------------------------------------- /templates/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions.html -------------------------------------------------------------------------------- /templates/functions_ahuAnomaly_inputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_ahuAnomaly_inputs.html -------------------------------------------------------------------------------- /templates/functions_ahuAnomaly_outputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_ahuAnomaly_outputs.html -------------------------------------------------------------------------------- /templates/functions_ahuAnomaly_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_ahuAnomaly_overview.html -------------------------------------------------------------------------------- /templates/functions_ahuAnomaly_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_ahuAnomaly_upload.html -------------------------------------------------------------------------------- /templates/functions_complaintAnalytics_inputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_complaintAnalytics_inputs.html -------------------------------------------------------------------------------- /templates/functions_complaintAnalytics_outputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_complaintAnalytics_outputs.html -------------------------------------------------------------------------------- /templates/functions_complaintAnalytics_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_complaintAnalytics_overview.html -------------------------------------------------------------------------------- /templates/functions_complaintAnalytics_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_complaintAnalytics_upload.html -------------------------------------------------------------------------------- /templates/functions_endUseDisaggregation_inputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_endUseDisaggregation_inputs.html -------------------------------------------------------------------------------- /templates/functions_endUseDisaggregation_outputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_endUseDisaggregation_outputs.html -------------------------------------------------------------------------------- /templates/functions_endUseDisaggregation_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_endUseDisaggregation_overview.html -------------------------------------------------------------------------------- /templates/functions_endUseDisaggregation_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_endUseDisaggregation_upload.html -------------------------------------------------------------------------------- /templates/functions_energyBaseline_inputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_energyBaseline_inputs.html -------------------------------------------------------------------------------- /templates/functions_energyBaseline_outputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_energyBaseline_outputs.html -------------------------------------------------------------------------------- /templates/functions_energyBaseline_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_energyBaseline_overview.html -------------------------------------------------------------------------------- /templates/functions_energyBaseline_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_energyBaseline_upload.html -------------------------------------------------------------------------------- /templates/functions_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_help.html -------------------------------------------------------------------------------- /templates/functions_metadata_inputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_metadata_inputs.html -------------------------------------------------------------------------------- /templates/functions_metadata_outputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_metadata_outputs.html -------------------------------------------------------------------------------- /templates/functions_metadata_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_metadata_overview.html -------------------------------------------------------------------------------- /templates/functions_metadata_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_metadata_upload.html -------------------------------------------------------------------------------- /templates/functions_occupancy_inputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_occupancy_inputs.html -------------------------------------------------------------------------------- /templates/functions_occupancy_outputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_occupancy_outputs.html -------------------------------------------------------------------------------- /templates/functions_occupancy_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_occupancy_overview.html -------------------------------------------------------------------------------- /templates/functions_occupancy_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_occupancy_upload.html -------------------------------------------------------------------------------- /templates/functions_sampleData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_sampleData.html -------------------------------------------------------------------------------- /templates/functions_zoneAnomaly_inputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_zoneAnomaly_inputs.html -------------------------------------------------------------------------------- /templates/functions_zoneAnomaly_outputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_zoneAnomaly_outputs.html -------------------------------------------------------------------------------- /templates/functions_zoneAnomaly_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_zoneAnomaly_overview.html -------------------------------------------------------------------------------- /templates/functions_zoneAnomaly_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/functions_zoneAnomaly_upload.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/publications.html -------------------------------------------------------------------------------- /templates/request_accepted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/request_accepted.html -------------------------------------------------------------------------------- /templates/results_not_ready.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/results_not_ready.html -------------------------------------------------------------------------------- /templates/results_ready.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/templates/results_ready.html -------------------------------------------------------------------------------- /zoneAnomaly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carleton-DBOM-Research-Group/Building_energy_management_toolkit/HEAD/zoneAnomaly.py --------------------------------------------------------------------------------