-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
194 lines (171 loc) · 5.48 KB
/
mkdocs.yml
File metadata and controls
194 lines (171 loc) · 5.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# HHW Brick Application Documentation
site_name: HHW Brick Application
site_description: Heating Hot Water System Brick Ontology Application - Complete Documentation
site_author: Mingchen Li
site_url: https://centerforthebuiltenvironment.github.io/HHW_brick/
# Repository
repo_name: hhw-brick
repo_url: https://github.com/CenterForTheBuiltEnvironment/HHW_brick
edit_uri: edit/main/docs/
# Copyright
copyright: Copyright © 2024 Mingchen Li
# Configuration
theme:
name: material
language: en
# Color scheme
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
# Features
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- search.suggest
- search.highlight
- search.share
- toc.follow
- content.code.copy
- content.code.annotate
# Icon
icon:
repo: fontawesome/brands/github
logo: material/water-boiler
# Favicon
favicon: assets/favicon.png
# Plugins
plugins:
- search
- include-markdown
# Extensions
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
toc_depth: 4
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Extra CSS
extra_css:
- stylesheets/extra.css
# Extra JavaScript
extra_javascript:
- javascripts/extra.js
# Extra
extra:
version:
provider: mike
default: stable
social:
- icon: fontawesome/brands/github
link: https://github.com/CenterForTheBuiltEnvironment/HHW_brick
- icon: fontawesome/brands/python
link: https://pypi.org/project/hhw-brick/
# Navigation
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Understanding Brick: getting-started/understanding-brick.md
- CSV Data Format: getting-started/csv-format.md
- Quick Start: getting-started/quick-start.md
- Examples:
- examples/index.md
- 01 Convert CSV to Brick: examples/01-convert-csv-to-brick.md
- 02 Ontology Validation: examples/02-ontology-validation.md
- 03 Point Count Validation: examples/03-point-count-validation.md
- 04 Equipment Count Validation: examples/04-equipment-count-validation.md
- 05 Subgraph Pattern Matching: examples/05-subgraph-pattern-matching.md
- 06 Application Management: examples/06-application-management.md
- 07 Run Application: examples/07-run-application.md
- 08 Batch Run Application: examples/08-batch-run-application.md
- User Guide:
- CSV to Brick Conversion:
- user-guide/conversion/index.md
- Single Building: user-guide/conversion/single-building.md
- Batch Conversion: user-guide/conversion/batch-conversion.md
- System Types: user-guide/conversion/system-types.md
- Sensor Mapping: user-guide/conversion/sensor-mapping.md
- Model Validation:
- user-guide/validation/index.md
- Ontology Validation: user-guide/validation/ontology.md
- Ground Truth Comparison: user-guide/validation/ground-truth.md
- Subgraph Patterns: user-guide/validation/subgraph-patterns.md
- Analytics Applications:
- user-guide/applications/index.md
- Apps Manager: user-guide/applications/apps-manager.md
- Secondary Loop: user-guide/applications/secondary-loop.md
- Running Apps: user-guide/applications/running-apps.md
- Plotly Visualization:
- user-guide/plotly-visualization.md
- Apps:
- apps/index.md
- Secondary Loop: apps/secondary-loop.md
- Primary Loop: apps/primary-loop.md
- Developer Guide:
- Application Development Tutorial: app-development/index.md
- Step 1 - Structure: app-development/step-01-structure.md
- Step 2 - Load Config: app-development/step-02-load-config.md
- Step 3 - SPARQL & Qualify: app-development/step-03-sparql-qualify.md
- Step 4 - Analyze Part 1: app-development/step-04-analyze-part1.md
- Step 5 - Analyze Part 2: app-development/step-05-analyze-part2.md
- Step 6 - Matplotlib: app-development/step-06-visualization-matplotlib.md
- Step 7 - Plotly HTML: app-development/step-07-visualization-plotly.md
- Step 8 - Testing: app-development/step-08-testing.md
- Step 9 - Deployment: app-development/step-09-deployment.md
- FAQ: faq.md
- Changelog: changelog.md
- License: license.md