├── .coveragerc ├── .env ├── .flake8 ├── .github └── workflows │ ├── cd.yml │ ├── ci.yml │ └── project.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE ├── alembic.ini ├── docker-compose.yml ├── docs ├── BuildingMOTIF-icon-rev.svg ├── BuildingMOTIF-logo-rev.svg ├── README.md ├── _config.yml ├── _toc.yml ├── bibliography.bib ├── bibliography.md ├── conf.py ├── explanations │ ├── ingresses.md │ ├── point-label-parsing.md │ ├── shacl_to_sparql.md │ ├── shapes-and-templates.md │ └── templates.md ├── guides │ ├── BACpypes.ini │ ├── Dockerfile.bacnet │ ├── Query-Generation-Flow.png │ ├── csv-import.md │ ├── docker-compose-bacnet.yml │ ├── generating-queries.md │ ├── ingress-bacnet-to-brick.md │ ├── libraries │ │ ├── bacnet-to-brick-templates │ │ │ └── templates.yml │ │ └── bacnet │ │ │ └── brick.yml │ ├── query_generation_example.ttl │ └── virtual_bacnet.py ├── reference │ ├── apidoc │ │ ├── code_visualization.svg │ │ └── index.rst │ ├── cli_tool.md │ └── developer_documentation.md ├── requirements.txt └── tutorials │ ├── model_correction.md │ ├── model_creation.md │ ├── model_validation.md │ ├── template_writing.ipynb │ ├── tutorial1_manifest.ttl │ ├── tutorial1_model.ttl │ ├── tutorial2_manifest.ttl │ ├── tutorial2_model.ttl │ └── tutorial3_model.ttl ├── libraries ├── README.md ├── ZonePAC │ └── shapes.ttl ├── ashrae │ ├── 223p │ │ ├── nrel-templates │ │ │ ├── README.md │ │ │ ├── connections.yml │ │ │ ├── devices.yml │ │ │ ├── properties.yml │ │ │ ├── spaces.yml │ │ │ └── systems.yml │ │ └── ontology │ │ │ └── 223p.ttl │ └── guideline36 │ │ ├── 4.1-vav-cooling-only.ttl │ │ ├── 4.1-vav-cooling-only.yml │ │ ├── 4.2-vav-with-reheat.ttl │ │ ├── 4.2-vav-with-reheat.yml │ │ ├── 4.3-fan-powered.ttl │ │ ├── 4.3-fan-powered.yml │ │ ├── 4.4-dual-duct-terminal-unit-with-inlet.ttl │ │ ├── 4.4-dual-duct-terminal-unit-with-inlet.yml │ │ ├── 4.5-dual-duct-terminal-unit-with-discharge.ttl │ │ ├── 4.5-dual-duct-terminal-unit-with-discharge.yml │ │ ├── 4.6-multiple-zone-vav-AHU.ttl │ │ ├── 4.6-multiple-zone-vav-AHU.yml │ │ ├── 4.7-dual-duct-heating-ahu.yml │ │ ├── 4.8-sz-vav-ahu.ttl │ │ ├── 4.8-sz-vav-ahu.yml │ │ ├── 4.9-exhaust-fan.yml │ │ ├── 5.16.14-multiple-zone-vav-ahu-afdd.ttl │ │ ├── 5.17.4-dual-fan-dual-duct-heating-vav-ahu-afdd.ttl │ │ ├── 5.18.13-single-zone-vav-ahu-afdd.ttl │ │ ├── 5.22.6-fan-coil-unit-afdd.ttl │ │ ├── components.ttl │ │ ├── components.yml │ │ └── guideline36.ttl ├── brick │ ├── Brick-full.ttl │ ├── Brick-subset.ttl │ ├── Brick.ttl │ └── imports │ │ ├── bacnet.ttl │ │ ├── brickpatches.ttl │ │ ├── currency.ttl │ │ ├── dimensionvector.ttl │ │ ├── quantitykind.ttl │ │ ├── qudtfacade.ttl │ │ ├── qudtoverlay.ttl │ │ ├── qudtschema.ttl │ │ ├── qudtsou.ttl │ │ ├── rec.ttl │ │ ├── recimports.ttl │ │ ├── ref-schema.ttl │ │ ├── shacl.ttl │ │ └── unit.ttl ├── chiller-plant │ └── points.yml ├── medium-office │ └── contraints.ttl ├── pointlist-test │ └── list.yml ├── qudt │ ├── FUNCTIONS_QUDT-v2.1.spin.ttl │ ├── SCHEMA-FACADE_QUDT-v2.1.ttl │ ├── SCHEMA-FACADE_QUDT.ttl │ ├── SCHEMA_QUDT-DATATYPE.ttl │ ├── SCHEMA_QUDT-DATATYPES_NoOWL.ttl │ ├── SCHEMA_QUDT-skos-subset.ttl │ ├── SCHEMA_QUDT-v2.1.ttl │ ├── SCHEMA_QUDT.ttl │ ├── SCHEMA_QUDT_NoOWL-v2.1.ttl │ ├── SCHEMA_QUDT_NoOWL.ttl │ ├── SHACL-SCHEMA-SUPPLEMENT_QUDT-v2.1.ttl │ ├── SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl │ ├── VOCAB_QUDT-CONSTANTS-v2.1.ttl │ ├── VOCAB_QUDT-CONSTANTS.ttl │ ├── VOCAB_QUDT-DATATYPES.ttl │ ├── VOCAB_QUDT-DIMENSION-VECTORS-v2.1.ttl │ ├── VOCAB_QUDT-DIMENSION-VECTORS.ttl │ ├── VOCAB_QUDT-MATHEMATICS-v2.1.18.ttl │ ├── VOCAB_QUDT-PREFIXES-v2.1.ttl │ ├── VOCAB_QUDT-PREFIXES.ttl │ ├── VOCAB_QUDT-QUANTITIES-v2.1.18.ttl │ ├── VOCAB_QUDT-QUANTITIES.ttl │ ├── VOCAB_QUDT-QUANTITY-KINDS-ALL-v2.1.ttl │ ├── VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl │ ├── VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL-v2.1.ttl │ ├── VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL.ttl │ ├── VOCAB_QUDT-SYSTEM-OF-UNITS-ALL-v2.1.ttl │ ├── VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl │ ├── VOCAB_QUDT-UNITS-ALL-v2.1.ttl │ ├── VOCAB_QUDT-UNITS-ALL.ttl │ ├── VOCAB_QUDT-UNITS-CURRENCY-v2.1.ttl │ └── VOCAB_QUDT-UNITS-CURRENCY.ttl └── sites │ └── medium-office │ └── contraints.ttl ├── migrations ├── README ├── env.py ├── script.py.mako └── versions │ └── 6114d2b80bc6_init.py ├── notebooks ├── 223P-Brick-model.ipynb ├── 223P-Validation.ipynb ├── 223PExample.ipynb ├── BMS_Point_Naming_Convention.ipynb ├── Compile-model.ipynb ├── Existing-model-validation-example.ipynb ├── GabeDemo.ipynb ├── Ingress-Tutorial-CSV.ipynb ├── Ingress-Tutorial-XLSX-Multiple-Sheets.ipynb ├── Ingress-Tutorial-XLSX.ipynb ├── Model-Builder.ipynb ├── README.md ├── Session-example.ipynb ├── Shape_Builder.ipynb ├── Template Tutorial.ipynb ├── Template-Usage.ipynb ├── fix.patch ├── mediumOffice-validation │ ├── constraints │ │ └── mediumOffice_constraints.ttl │ ├── mediumOffice_brick.ttl │ └── mediumOffice_brick_compiled.ttl ├── my_site.ttl ├── notebook_utils.py ├── output.ttl ├── smallOffice_brick.ttl ├── smallOffice_brick_compiled.ttl ├── template-example.ipynb ├── testing │ └── passing_notebook.ipynb └── tutorial │ ├── data.csv │ ├── templates.yml │ ├── thermostats-with-points.xlsx │ └── thermostats.xlsx ├── poetry.lock ├── pyproject.toml ├── pytest.ini ├── scripts └── bump_dev_version.py └── tests ├── __init__.py ├── integration ├── conftest.py ├── fixtures │ ├── bacnet │ │ ├── BACpypes.ini │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── requirements.txt │ │ └── virtual_bacnet.py │ └── buildingmotif │ │ └── Dockerfile ├── test_bacnet_ingress.py ├── test_database_persistence.py └── test_notebooks.py ├── library ├── __init__.py ├── conftest.py ├── test_223p_templates.py └── test_brick_templates.py └── unit ├── __init__.py ├── api ├── conftest.py ├── test_library.py ├── test_model.py └── test_template.py ├── conftest.py ├── database ├── table_connection │ ├── __init__.py │ ├── conftest.py │ ├── test_db_library.py │ ├── test_db_model.py │ ├── test_db_shape.py │ └── test_db_template.py ├── test_cascading_deletes_cascades.py ├── test_graph_connection.py └── test_utils.py ├── dataclasses ├── __init__.py ├── conftest.py ├── test_compiled_model.py ├── test_library.py ├── test_model.py ├── test_shape_collection.py ├── test_template_dc.py └── test_template_generation.py ├── fixtures ├── Brick.ttl ├── Brick1.3rc1-equip-only.ttl ├── bad_shape_template.ttl ├── compilation │ ├── brick_model.ttl │ ├── model.ttl │ ├── s223_model.ttl │ └── shapes.ttl ├── from_file_test.ttl ├── from_file_test.xmlbadext ├── from_file_test.xyz ├── inline-dep-test │ └── templates.yml ├── ipynb_checkpoint_test │ ├── .ipynb_checkpoints │ │ └── templates.yml │ └── templates.yml ├── libary-shape-test │ └── shape.ttl ├── library-shape-test │ └── shape.ttl ├── matching │ ├── brick.ttl │ └── model.ttl ├── optional-inline │ └── template.yml ├── overwrite-test │ ├── 1 │ │ └── A │ │ │ └── templates.yml │ └── 2 │ │ └── A │ │ └── templates.yml ├── progressive │ └── templates │ │ └── templates.yml ├── sample-lib-1 │ └── templates.yml ├── shape-deps │ └── shapes.ttl ├── shape_to_query │ └── shapes.ttl ├── shapes │ ├── import_test.ttl │ ├── shape1.ttl │ └── shape2.ttl ├── smallOffice.db ├── smallOffice_brick.ttl ├── smallOffice_brick_compiled.ttl ├── template-inline-test │ └── 1.yml ├── templates-variadic │ └── 1.yml └── templates │ ├── 1.yml │ ├── 2.yml │ └── smalloffice.yml ├── shape_builder └── test_shape_builder.py ├── test_combinator_serialization.py ├── test_label_parsing.py ├── test_record_ingress_handler.py ├── test_schemas.py ├── test_template_api.py └── test_utils.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = 3 | tests/* 4 | setup.py -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/.env -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203, E501 -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/.github/workflows/project.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/LICENSE -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/alembic.ini -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/BuildingMOTIF-icon-rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/BuildingMOTIF-icon-rev.svg -------------------------------------------------------------------------------- /docs/BuildingMOTIF-logo-rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/BuildingMOTIF-logo-rev.svg -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/_toc.yml -------------------------------------------------------------------------------- /docs/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/bibliography.bib -------------------------------------------------------------------------------- /docs/bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/bibliography.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/explanations/ingresses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/explanations/ingresses.md -------------------------------------------------------------------------------- /docs/explanations/point-label-parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/explanations/point-label-parsing.md -------------------------------------------------------------------------------- /docs/explanations/shacl_to_sparql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/explanations/shacl_to_sparql.md -------------------------------------------------------------------------------- /docs/explanations/shapes-and-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/explanations/shapes-and-templates.md -------------------------------------------------------------------------------- /docs/explanations/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/explanations/templates.md -------------------------------------------------------------------------------- /docs/guides/BACpypes.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/BACpypes.ini -------------------------------------------------------------------------------- /docs/guides/Dockerfile.bacnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/Dockerfile.bacnet -------------------------------------------------------------------------------- /docs/guides/Query-Generation-Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/Query-Generation-Flow.png -------------------------------------------------------------------------------- /docs/guides/csv-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/csv-import.md -------------------------------------------------------------------------------- /docs/guides/docker-compose-bacnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/docker-compose-bacnet.yml -------------------------------------------------------------------------------- /docs/guides/generating-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/generating-queries.md -------------------------------------------------------------------------------- /docs/guides/ingress-bacnet-to-brick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/ingress-bacnet-to-brick.md -------------------------------------------------------------------------------- /docs/guides/libraries/bacnet-to-brick-templates/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/libraries/bacnet-to-brick-templates/templates.yml -------------------------------------------------------------------------------- /docs/guides/libraries/bacnet/brick.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/libraries/bacnet/brick.yml -------------------------------------------------------------------------------- /docs/guides/query_generation_example.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/query_generation_example.ttl -------------------------------------------------------------------------------- /docs/guides/virtual_bacnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/guides/virtual_bacnet.py -------------------------------------------------------------------------------- /docs/reference/apidoc/code_visualization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/reference/apidoc/code_visualization.svg -------------------------------------------------------------------------------- /docs/reference/apidoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/reference/apidoc/index.rst -------------------------------------------------------------------------------- /docs/reference/cli_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/reference/cli_tool.md -------------------------------------------------------------------------------- /docs/reference/developer_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/reference/developer_documentation.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | jupyter-book 2 | matplotlib 3 | numpy 4 | -------------------------------------------------------------------------------- /docs/tutorials/model_correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/tutorials/model_correction.md -------------------------------------------------------------------------------- /docs/tutorials/model_creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/tutorials/model_creation.md -------------------------------------------------------------------------------- /docs/tutorials/model_validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/tutorials/model_validation.md -------------------------------------------------------------------------------- /docs/tutorials/template_writing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/tutorials/template_writing.ipynb -------------------------------------------------------------------------------- /docs/tutorials/tutorial1_manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/tutorials/tutorial1_manifest.ttl -------------------------------------------------------------------------------- /docs/tutorials/tutorial1_model.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/tutorials/tutorial1_model.ttl -------------------------------------------------------------------------------- /docs/tutorials/tutorial2_manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/tutorials/tutorial2_manifest.ttl -------------------------------------------------------------------------------- /docs/tutorials/tutorial2_model.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/tutorials/tutorial2_model.ttl -------------------------------------------------------------------------------- /docs/tutorials/tutorial3_model.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/docs/tutorials/tutorial3_model.ttl -------------------------------------------------------------------------------- /libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/README.md -------------------------------------------------------------------------------- /libraries/ZonePAC/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ZonePAC/shapes.ttl -------------------------------------------------------------------------------- /libraries/ashrae/223p/nrel-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/223p/nrel-templates/README.md -------------------------------------------------------------------------------- /libraries/ashrae/223p/nrel-templates/connections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/223p/nrel-templates/connections.yml -------------------------------------------------------------------------------- /libraries/ashrae/223p/nrel-templates/devices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/223p/nrel-templates/devices.yml -------------------------------------------------------------------------------- /libraries/ashrae/223p/nrel-templates/properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/223p/nrel-templates/properties.yml -------------------------------------------------------------------------------- /libraries/ashrae/223p/nrel-templates/spaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/223p/nrel-templates/spaces.yml -------------------------------------------------------------------------------- /libraries/ashrae/223p/nrel-templates/systems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/223p/nrel-templates/systems.yml -------------------------------------------------------------------------------- /libraries/ashrae/223p/ontology/223p.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/223p/ontology/223p.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.1-vav-cooling-only.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.1-vav-cooling-only.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.1-vav-cooling-only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.1-vav-cooling-only.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.2-vav-with-reheat.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.2-vav-with-reheat.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.2-vav-with-reheat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.2-vav-with-reheat.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.3-fan-powered.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.3-fan-powered.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.3-fan-powered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.3-fan-powered.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.4-dual-duct-terminal-unit-with-inlet.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.4-dual-duct-terminal-unit-with-inlet.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.4-dual-duct-terminal-unit-with-inlet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.4-dual-duct-terminal-unit-with-inlet.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.5-dual-duct-terminal-unit-with-discharge.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.5-dual-duct-terminal-unit-with-discharge.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.5-dual-duct-terminal-unit-with-discharge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.5-dual-duct-terminal-unit-with-discharge.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.6-multiple-zone-vav-AHU.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.6-multiple-zone-vav-AHU.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.6-multiple-zone-vav-AHU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.6-multiple-zone-vav-AHU.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.7-dual-duct-heating-ahu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.7-dual-duct-heating-ahu.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.8-sz-vav-ahu.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.8-sz-vav-ahu.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.8-sz-vav-ahu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.8-sz-vav-ahu.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/4.9-exhaust-fan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/4.9-exhaust-fan.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/5.16.14-multiple-zone-vav-ahu-afdd.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/5.16.14-multiple-zone-vav-ahu-afdd.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/5.17.4-dual-fan-dual-duct-heating-vav-ahu-afdd.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/5.17.4-dual-fan-dual-duct-heating-vav-ahu-afdd.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/5.18.13-single-zone-vav-ahu-afdd.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/5.18.13-single-zone-vav-ahu-afdd.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/5.22.6-fan-coil-unit-afdd.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/5.22.6-fan-coil-unit-afdd.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/components.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/components.ttl -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/components.yml -------------------------------------------------------------------------------- /libraries/ashrae/guideline36/guideline36.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/ashrae/guideline36/guideline36.ttl -------------------------------------------------------------------------------- /libraries/brick/Brick-full.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/Brick-full.ttl -------------------------------------------------------------------------------- /libraries/brick/Brick-subset.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/Brick-subset.ttl -------------------------------------------------------------------------------- /libraries/brick/Brick.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/Brick.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/bacnet.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/bacnet.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/brickpatches.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/brickpatches.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/currency.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/currency.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/dimensionvector.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/dimensionvector.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/quantitykind.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/quantitykind.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/qudtfacade.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/qudtfacade.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/qudtoverlay.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/qudtoverlay.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/qudtschema.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/qudtschema.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/qudtsou.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/qudtsou.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/rec.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/rec.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/recimports.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/recimports.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/ref-schema.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/ref-schema.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/shacl.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/shacl.ttl -------------------------------------------------------------------------------- /libraries/brick/imports/unit.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/brick/imports/unit.ttl -------------------------------------------------------------------------------- /libraries/chiller-plant/points.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/chiller-plant/points.yml -------------------------------------------------------------------------------- /libraries/medium-office/contraints.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/medium-office/contraints.ttl -------------------------------------------------------------------------------- /libraries/pointlist-test/list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/pointlist-test/list.yml -------------------------------------------------------------------------------- /libraries/qudt/FUNCTIONS_QUDT-v2.1.spin.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/FUNCTIONS_QUDT-v2.1.spin.ttl -------------------------------------------------------------------------------- /libraries/qudt/SCHEMA-FACADE_QUDT-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SCHEMA-FACADE_QUDT-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/SCHEMA-FACADE_QUDT.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SCHEMA-FACADE_QUDT.ttl -------------------------------------------------------------------------------- /libraries/qudt/SCHEMA_QUDT-DATATYPE.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SCHEMA_QUDT-DATATYPE.ttl -------------------------------------------------------------------------------- /libraries/qudt/SCHEMA_QUDT-DATATYPES_NoOWL.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SCHEMA_QUDT-DATATYPES_NoOWL.ttl -------------------------------------------------------------------------------- /libraries/qudt/SCHEMA_QUDT-skos-subset.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SCHEMA_QUDT-skos-subset.ttl -------------------------------------------------------------------------------- /libraries/qudt/SCHEMA_QUDT-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SCHEMA_QUDT-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/SCHEMA_QUDT.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SCHEMA_QUDT.ttl -------------------------------------------------------------------------------- /libraries/qudt/SCHEMA_QUDT_NoOWL-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SCHEMA_QUDT_NoOWL-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/SCHEMA_QUDT_NoOWL.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SCHEMA_QUDT_NoOWL.ttl -------------------------------------------------------------------------------- /libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-CONSTANTS-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-CONSTANTS-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-CONSTANTS.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-CONSTANTS.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-DATATYPES.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-DATATYPES.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-DIMENSION-VECTORS.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-MATHEMATICS-v2.1.18.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-MATHEMATICS-v2.1.18.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-PREFIXES-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-PREFIXES-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-PREFIXES.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-PREFIXES.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-QUANTITIES-v2.1.18.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-QUANTITIES-v2.1.18.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-QUANTITIES.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-QUANTITIES.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-QUANTITY-KINDS-ALL.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-UNITS-ALL-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-UNITS-ALL-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-UNITS-ALL.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-UNITS-CURRENCY-v2.1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-UNITS-CURRENCY-v2.1.ttl -------------------------------------------------------------------------------- /libraries/qudt/VOCAB_QUDT-UNITS-CURRENCY.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/qudt/VOCAB_QUDT-UNITS-CURRENCY.ttl -------------------------------------------------------------------------------- /libraries/sites/medium-office/contraints.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/libraries/sites/medium-office/contraints.ttl -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/6114d2b80bc6_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/migrations/versions/6114d2b80bc6_init.py -------------------------------------------------------------------------------- /notebooks/223P-Brick-model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/223P-Brick-model.ipynb -------------------------------------------------------------------------------- /notebooks/223P-Validation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/223P-Validation.ipynb -------------------------------------------------------------------------------- /notebooks/223PExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/223PExample.ipynb -------------------------------------------------------------------------------- /notebooks/BMS_Point_Naming_Convention.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/BMS_Point_Naming_Convention.ipynb -------------------------------------------------------------------------------- /notebooks/Compile-model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Compile-model.ipynb -------------------------------------------------------------------------------- /notebooks/Existing-model-validation-example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Existing-model-validation-example.ipynb -------------------------------------------------------------------------------- /notebooks/GabeDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/GabeDemo.ipynb -------------------------------------------------------------------------------- /notebooks/Ingress-Tutorial-CSV.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Ingress-Tutorial-CSV.ipynb -------------------------------------------------------------------------------- /notebooks/Ingress-Tutorial-XLSX-Multiple-Sheets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Ingress-Tutorial-XLSX-Multiple-Sheets.ipynb -------------------------------------------------------------------------------- /notebooks/Ingress-Tutorial-XLSX.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Ingress-Tutorial-XLSX.ipynb -------------------------------------------------------------------------------- /notebooks/Model-Builder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Model-Builder.ipynb -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/Session-example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Session-example.ipynb -------------------------------------------------------------------------------- /notebooks/Shape_Builder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Shape_Builder.ipynb -------------------------------------------------------------------------------- /notebooks/Template Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Template Tutorial.ipynb -------------------------------------------------------------------------------- /notebooks/Template-Usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/Template-Usage.ipynb -------------------------------------------------------------------------------- /notebooks/fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/fix.patch -------------------------------------------------------------------------------- /notebooks/mediumOffice-validation/constraints/mediumOffice_constraints.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/mediumOffice-validation/constraints/mediumOffice_constraints.ttl -------------------------------------------------------------------------------- /notebooks/mediumOffice-validation/mediumOffice_brick.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/mediumOffice-validation/mediumOffice_brick.ttl -------------------------------------------------------------------------------- /notebooks/mediumOffice-validation/mediumOffice_brick_compiled.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/mediumOffice-validation/mediumOffice_brick_compiled.ttl -------------------------------------------------------------------------------- /notebooks/my_site.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/my_site.ttl -------------------------------------------------------------------------------- /notebooks/notebook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/notebook_utils.py -------------------------------------------------------------------------------- /notebooks/output.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/output.ttl -------------------------------------------------------------------------------- /notebooks/smallOffice_brick.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/smallOffice_brick.ttl -------------------------------------------------------------------------------- /notebooks/smallOffice_brick_compiled.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/smallOffice_brick_compiled.ttl -------------------------------------------------------------------------------- /notebooks/template-example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/template-example.ipynb -------------------------------------------------------------------------------- /notebooks/testing/passing_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/testing/passing_notebook.ipynb -------------------------------------------------------------------------------- /notebooks/tutorial/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/tutorial/data.csv -------------------------------------------------------------------------------- /notebooks/tutorial/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/tutorial/templates.yml -------------------------------------------------------------------------------- /notebooks/tutorial/thermostats-with-points.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/tutorial/thermostats-with-points.xlsx -------------------------------------------------------------------------------- /notebooks/tutorial/thermostats.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/notebooks/tutorial/thermostats.xlsx -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/bump_dev_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/scripts/bump_dev_version.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/fixtures/bacnet/BACpypes.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/integration/fixtures/bacnet/BACpypes.ini -------------------------------------------------------------------------------- /tests/integration/fixtures/bacnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/integration/fixtures/bacnet/Dockerfile -------------------------------------------------------------------------------- /tests/integration/fixtures/bacnet/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/integration/fixtures/bacnet/docker-compose.yml -------------------------------------------------------------------------------- /tests/integration/fixtures/bacnet/requirements.txt: -------------------------------------------------------------------------------- 1 | BACpypes 2 | -------------------------------------------------------------------------------- /tests/integration/fixtures/bacnet/virtual_bacnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/integration/fixtures/bacnet/virtual_bacnet.py -------------------------------------------------------------------------------- /tests/integration/fixtures/buildingmotif/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/integration/fixtures/buildingmotif/Dockerfile -------------------------------------------------------------------------------- /tests/integration/test_bacnet_ingress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/integration/test_bacnet_ingress.py -------------------------------------------------------------------------------- /tests/integration/test_database_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/integration/test_database_persistence.py -------------------------------------------------------------------------------- /tests/integration/test_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/integration/test_notebooks.py -------------------------------------------------------------------------------- /tests/library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/library/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/library/test_223p_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/library/test_223p_templates.py -------------------------------------------------------------------------------- /tests/library/test_brick_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/library/test_brick_templates.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/api/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/api/conftest.py -------------------------------------------------------------------------------- /tests/unit/api/test_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/api/test_library.py -------------------------------------------------------------------------------- /tests/unit/api/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/api/test_model.py -------------------------------------------------------------------------------- /tests/unit/api/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/api/test_template.py -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/database/table_connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/database/table_connection/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/database/table_connection/conftest.py -------------------------------------------------------------------------------- /tests/unit/database/table_connection/test_db_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/database/table_connection/test_db_library.py -------------------------------------------------------------------------------- /tests/unit/database/table_connection/test_db_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/database/table_connection/test_db_model.py -------------------------------------------------------------------------------- /tests/unit/database/table_connection/test_db_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/database/table_connection/test_db_shape.py -------------------------------------------------------------------------------- /tests/unit/database/table_connection/test_db_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/database/table_connection/test_db_template.py -------------------------------------------------------------------------------- /tests/unit/database/test_cascading_deletes_cascades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/database/test_cascading_deletes_cascades.py -------------------------------------------------------------------------------- /tests/unit/database/test_graph_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/database/test_graph_connection.py -------------------------------------------------------------------------------- /tests/unit/database/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/database/test_utils.py -------------------------------------------------------------------------------- /tests/unit/dataclasses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/dataclasses/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/dataclasses/conftest.py -------------------------------------------------------------------------------- /tests/unit/dataclasses/test_compiled_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/dataclasses/test_compiled_model.py -------------------------------------------------------------------------------- /tests/unit/dataclasses/test_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/dataclasses/test_library.py -------------------------------------------------------------------------------- /tests/unit/dataclasses/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/dataclasses/test_model.py -------------------------------------------------------------------------------- /tests/unit/dataclasses/test_shape_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/dataclasses/test_shape_collection.py -------------------------------------------------------------------------------- /tests/unit/dataclasses/test_template_dc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/dataclasses/test_template_dc.py -------------------------------------------------------------------------------- /tests/unit/dataclasses/test_template_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/dataclasses/test_template_generation.py -------------------------------------------------------------------------------- /tests/unit/fixtures/Brick.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/Brick.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/Brick1.3rc1-equip-only.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/Brick1.3rc1-equip-only.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/bad_shape_template.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/bad_shape_template.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/compilation/brick_model.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/compilation/brick_model.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/compilation/model.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/compilation/model.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/compilation/s223_model.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/compilation/s223_model.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/compilation/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/compilation/shapes.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/from_file_test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/from_file_test.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/from_file_test.xmlbadext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/from_file_test.xmlbadext -------------------------------------------------------------------------------- /tests/unit/fixtures/from_file_test.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/from_file_test.xyz -------------------------------------------------------------------------------- /tests/unit/fixtures/inline-dep-test/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/inline-dep-test/templates.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/ipynb_checkpoint_test/.ipynb_checkpoints/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/ipynb_checkpoint_test/.ipynb_checkpoints/templates.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/ipynb_checkpoint_test/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/ipynb_checkpoint_test/templates.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/libary-shape-test/shape.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/libary-shape-test/shape.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/library-shape-test/shape.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/library-shape-test/shape.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/matching/brick.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/matching/brick.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/matching/model.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/matching/model.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/optional-inline/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/optional-inline/template.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/overwrite-test/1/A/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/overwrite-test/1/A/templates.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/overwrite-test/2/A/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/overwrite-test/2/A/templates.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/progressive/templates/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/progressive/templates/templates.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/sample-lib-1/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/sample-lib-1/templates.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/shape-deps/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/shape-deps/shapes.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/shape_to_query/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/shape_to_query/shapes.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/shapes/import_test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/shapes/import_test.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/shapes/shape1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/shapes/shape1.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/shapes/shape2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/shapes/shape2.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/smallOffice.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/smallOffice.db -------------------------------------------------------------------------------- /tests/unit/fixtures/smallOffice_brick.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/smallOffice_brick.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/smallOffice_brick_compiled.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/smallOffice_brick_compiled.ttl -------------------------------------------------------------------------------- /tests/unit/fixtures/template-inline-test/1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/template-inline-test/1.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/templates-variadic/1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/templates-variadic/1.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/templates/1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/templates/1.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/templates/2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/templates/2.yml -------------------------------------------------------------------------------- /tests/unit/fixtures/templates/smalloffice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/fixtures/templates/smalloffice.yml -------------------------------------------------------------------------------- /tests/unit/shape_builder/test_shape_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/shape_builder/test_shape_builder.py -------------------------------------------------------------------------------- /tests/unit/test_combinator_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/test_combinator_serialization.py -------------------------------------------------------------------------------- /tests/unit/test_label_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/test_label_parsing.py -------------------------------------------------------------------------------- /tests/unit/test_record_ingress_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/test_record_ingress_handler.py -------------------------------------------------------------------------------- /tests/unit/test_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/test_schemas.py -------------------------------------------------------------------------------- /tests/unit/test_template_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/test_template_api.py -------------------------------------------------------------------------------- /tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/BuildingMOTIF/HEAD/tests/unit/test_utils.py --------------------------------------------------------------------------------