You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/advanced_documentation/build-guide.md
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -477,11 +477,16 @@ The `pip install .` part of the command installs the complete package from scrat
477
477
478
478
The C API documentation is generated using [Doxygen](https://www.doxygen.nl). If you do not have Doxygen installed, it can also be temporarily bypassed by commenting out the `breathe` settings in`docs/conf.py`.
479
479
480
-
The documentation can be built with the following commands, resulting inhtml files of the webpages which can be found in`docs/_build/html` directory.
480
+
The documentation can be built with the following commands, resulting inHTML files of the webpages which can be found in`docs/_build/html` directory.
481
481
482
482
```shell
483
483
cd docs/doxygen
484
484
doxygen
485
485
cd ..
486
486
sphinx-build -b html . _build/html
487
487
```
488
+
489
+
```{note}
490
+
The user documentation generated by [Sphinx](https://github.com/sphinx-doc/sphinx) only contains the C API documentation.
491
+
Doxygen, however, also builds the documentation for the Power Grid Model core implementation, which can be accessed after building the documentation locally via `docs/_build/html/index.html`.
Copy file name to clipboardExpand all lines: docs/advanced_documentation/core-design.md
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,3 +48,8 @@ graph TD
48
48
49
49
ComponentsOutput -->|Output| Output(Output data)
50
50
```
51
+
52
+
## Detailed Power Grid Model core design
53
+
54
+
The sheer size and complexity of the Power Grid Model core implementation makes it hard to generate an up-to-date and comprehensive graph of its design.
55
+
For a full overview of the core, it is recommended to build and access the Power Grid Model core documentation by following the steps in the [build guide](./build-guide.md#documentation).
0 commit comments