power-grid-model 1.11.23__py3-none-win_amd64.whl → 1.12.70__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. power_grid_model/__init__.py +54 -52
  2. power_grid_model/_core/__init__.py +3 -3
  3. power_grid_model/_core/buffer_handling.py +493 -478
  4. power_grid_model/_core/data_handling.py +195 -141
  5. power_grid_model/_core/data_types.py +143 -132
  6. power_grid_model/_core/dataset_definitions.py +109 -108
  7. power_grid_model/_core/enum.py +226 -226
  8. power_grid_model/_core/error_handling.py +206 -205
  9. power_grid_model/_core/errors.py +130 -126
  10. power_grid_model/_core/index_integer.py +17 -17
  11. power_grid_model/_core/options.py +71 -70
  12. power_grid_model/_core/power_grid_core.py +563 -581
  13. power_grid_model/_core/power_grid_dataset.py +535 -534
  14. power_grid_model/_core/power_grid_meta.py +257 -243
  15. power_grid_model/_core/power_grid_model.py +969 -687
  16. power_grid_model/_core/power_grid_model_c/__init__.py +3 -0
  17. power_grid_model/_core/power_grid_model_c/bin/power_grid_model_c.dll +0 -0
  18. power_grid_model/_core/power_grid_model_c/get_pgm_dll_path.py +63 -0
  19. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/basics.h +255 -0
  20. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/buffer.h +108 -0
  21. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/dataset.h +316 -0
  22. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/dataset_definitions.h +1052 -0
  23. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/handle.h +99 -0
  24. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/meta_data.h +189 -0
  25. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/model.h +125 -0
  26. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/options.h +142 -0
  27. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/serialization.h +118 -0
  28. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c.h +36 -0
  29. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/basics.hpp +65 -0
  30. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/buffer.hpp +61 -0
  31. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/dataset.hpp +220 -0
  32. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/handle.hpp +108 -0
  33. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/meta_data.hpp +84 -0
  34. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/model.hpp +63 -0
  35. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/options.hpp +52 -0
  36. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/serialization.hpp +124 -0
  37. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/utils.hpp +81 -0
  38. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp.hpp +19 -0
  39. power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelConfig.cmake +37 -0
  40. power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelConfigVersion.cmake +65 -0
  41. power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelTargets-release.cmake +19 -0
  42. power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelTargets.cmake +144 -0
  43. power_grid_model/_core/power_grid_model_c/lib/power_grid_model_c.lib +0 -0
  44. power_grid_model/_core/power_grid_model_c/share/LICENSE +292 -0
  45. power_grid_model/_core/power_grid_model_c/share/README.md +15 -0
  46. power_grid_model/_core/serialization.py +317 -317
  47. power_grid_model/_core/typing.py +20 -20
  48. power_grid_model/_core/utils.py +798 -789
  49. power_grid_model/data_types.py +321 -307
  50. power_grid_model/enum.py +27 -27
  51. power_grid_model/errors.py +37 -37
  52. power_grid_model/typing.py +43 -43
  53. power_grid_model/utils.py +473 -465
  54. power_grid_model/validation/__init__.py +25 -25
  55. power_grid_model/validation/_rules.py +1171 -1175
  56. power_grid_model/validation/_validation.py +1172 -1158
  57. power_grid_model/validation/assertions.py +93 -93
  58. power_grid_model/validation/errors.py +602 -588
  59. power_grid_model/validation/utils.py +313 -321
  60. {power_grid_model-1.11.23.dist-info → power_grid_model-1.12.70.dist-info}/METADATA +178 -180
  61. power_grid_model-1.12.70.dist-info/RECORD +65 -0
  62. {power_grid_model-1.11.23.dist-info → power_grid_model-1.12.70.dist-info}/WHEEL +1 -1
  63. power_grid_model-1.12.70.dist-info/entry_points.txt +3 -0
  64. power_grid_model/_core/_power_grid_core.dll +0 -0
  65. power_grid_model-1.11.23.dist-info/RECORD +0 -36
  66. power_grid_model-1.11.23.dist-info/top_level.txt +0 -1
  67. {power_grid_model-1.11.23.dist-info → power_grid_model-1.12.70.dist-info}/licenses/LICENSE +0 -0
@@ -1,180 +1,178 @@
1
- Metadata-Version: 2.4
2
- Name: power-grid-model
3
- Version: 1.11.23
4
- Summary: Python/C++ library for distribution power system analysis
5
- Author-email: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
6
- License-Expression: MPL-2.0
7
- Project-URL: Home-page, https://lfenergy.org/projects/power-grid-model/
8
- Project-URL: GitHub, https://github.com/PowerGridModel/power-grid-model
9
- Project-URL: Documentation, https://power-grid-model.readthedocs.io/en/stable/
10
- Project-URL: Mailing-list, https://lists.lfenergy.org/g/powergridmodel
11
- Project-URL: Discussion, https://github.com/orgs/PowerGridModel/discussions
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: Implementation :: CPython
14
- Classifier: Programming Language :: C++
15
- Classifier: Development Status :: 5 - Production/Stable
16
- Classifier: Intended Audience :: Developers
17
- Classifier: Intended Audience :: Science/Research
18
- Classifier: Operating System :: Microsoft :: Windows
19
- Classifier: Operating System :: POSIX :: Linux
20
- Classifier: Operating System :: MacOS
21
- Classifier: Topic :: Scientific/Engineering :: Physics
22
- Requires-Python: >=3.11
23
- Description-Content-Type: text/markdown
24
- License-File: LICENSE
25
- Requires-Dist: numpy>=1.21.0
26
- Provides-Extra: dev
27
- Requires-Dist: msgpack; extra == "dev"
28
- Requires-Dist: pre-commit; extra == "dev"
29
- Requires-Dist: pytest; extra == "dev"
30
- Requires-Dist: pytest-cov; extra == "dev"
31
- Requires-Dist: ruff; extra == "dev"
32
- Provides-Extra: doc
33
- Requires-Dist: sphinx; extra == "doc"
34
- Requires-Dist: breathe; extra == "doc"
35
- Requires-Dist: myst_nb; extra == "doc"
36
- Requires-Dist: sphinx_rtd_theme; extra == "doc"
37
- Requires-Dist: readthedocs-sphinx-search; extra == "doc"
38
- Requires-Dist: sphinx-hoverxref; extra == "doc"
39
- Requires-Dist: sphinxcontrib-mermaid>=1.0.0; extra == "doc"
40
- Requires-Dist: sphinxcontrib-tikz; extra == "doc"
41
- Requires-Dist: numpydoc; extra == "doc"
42
- Requires-Dist: pandas; extra == "doc"
43
- Requires-Dist: gitpython; extra == "doc"
44
- Requires-Dist: pylint; extra == "doc"
45
- Dynamic: license-file
46
-
47
- <!--
48
- SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
49
-
50
- SPDX-License-Identifier: MPL-2.0
51
- -->
52
-
53
- [![PyPI version](https://badge.fury.io/py/power-grid-model.svg?no-cache)](https://badge.fury.io/py/power-grid-model) <!-- markdownlint-disable-line first-line-h1 line-length -->
54
- [![Anaconda-Server Badge](https://anaconda.org/conda-forge/power-grid-model/badges/version.svg?no-cache)](https://anaconda.org/conda-forge/power-grid-model)
55
- [![License: MPL2.0](https://img.shields.io/badge/License-MPL2.0-informational.svg)](https://github.com/PowerGridModel/power-grid-model/blob/main/LICENSE)
56
- [![Downloads](https://static.pepy.tech/badge/power-grid-model)](https://pepy.tech/project/power-grid-model)
57
- [![Downloads](https://static.pepy.tech/badge/power-grid-model/month)](https://pepy.tech/project/power-grid-model)
58
-
59
- [![CI Build](https://github.com/PowerGridModel/power-grid-model/actions/workflows/ci.yml/badge.svg)](https://github.com/PowerGridModel/power-grid-model/actions/workflows/ci.yml)
60
- [![docs](https://readthedocs.org/projects/power-grid-model/badge/)](https://power-grid-model.readthedocs.io/en/stable/)
61
-
62
- [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
63
- [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=coverage)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
64
- [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
65
- [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
66
- [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
67
- [![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
68
-
69
- [![Nightly build](https://github.com/PowerGridModel/power-grid-model/actions/workflows/nightly.yml/badge.svg)](https://github.com/PowerGridModel/power-grid-model/actions/workflows/nightly.yml)
70
-
71
- [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8054429.svg)](https://zenodo.org/record/8054429)
72
-
73
- [![Power Grid Model logo](https://github.com/PowerGridModel/.github/blob/main/artwork/svg/color.svg)](#) <!-- markdownlint-disable-line no-empty-links line-length -->
74
-
75
- # Power Grid Model
76
-
77
- `power-grid-model` is a library for steady-state distribution power system analysis distributed for Python and C.
78
- The core of the library is written in C++.
79
- Currently, it supports the following calculations:
80
-
81
- * Power Flow
82
- * State Estimation
83
- * Short Circuit
84
-
85
- See the [power-grid-model documentation](https://power-grid-model.readthedocs.io/en/stable/) for more information.
86
- For various conversions to the power-grid-model, refer to the
87
- [power-grid-model-io](https://github.com/PowerGridModel/power-grid-model-io) repository.
88
- For an extended python interface to the the power-grid-model, refer to the
89
- [power-grid-model-ds](https://github.com/PowerGridModel/power-grid-model-ds) repository.
90
-
91
- ```{note}
92
- Want to be updated on the latest news and releases? Subscribe to the Power Grid Model mailing list by sending an (empty)
93
- email to: powergridmodel+subscribe@lists.lfenergy.org
94
- ```
95
-
96
- ## Installation
97
-
98
- ### Install from PyPI
99
-
100
- You can directly install the package from PyPI.
101
-
102
- ```sh
103
- pip install power-grid-model
104
- ```
105
-
106
- ### Install from Conda
107
-
108
- If you are using `conda`, you can directly install the package from `conda-forge` channel.
109
-
110
- ```sh
111
- conda install -c conda-forge power-grid-model
112
- ```
113
-
114
- ### Build and install from Source
115
-
116
- To install the library from source, refer to the
117
- [Build Guide](https://power-grid-model.readthedocs.io/en/stable/advanced_documentation/build-guide.html).
118
-
119
- ## Examples
120
-
121
- Please refer to [Examples](https://github.com/PowerGridModel/power-grid-model-workshop/tree/main/examples) for more
122
- detailed examples for power flow and state estimation.
123
- Notebooks for validating the input data and exporting input/output data are also included.
124
-
125
- ## License
126
-
127
- This project is licensed under the Mozilla Public License, version 2.0 - see
128
- [LICENSE](https://github.com/PowerGridModel/power-grid-model/blob/main/LICENSE) for details.
129
-
130
- ## Licenses third-party libraries
131
-
132
- This project includes third-party libraries,
133
- which are licensed under their own respective Open-Source licenses.
134
- SPDX-License-Identifier headers are used to show which license is applicable.
135
- The concerning license files can be found in the
136
- [LICENSES](https://github.com/PowerGridModel/power-grid-model/tree/main/LICENSES) directory.
137
-
138
- ## Contributing
139
-
140
- Please read [CODE_OF_CONDUCT](https://github.com/PowerGridModel/.github/blob/main/CODE_OF_CONDUCT.md),
141
- [CONTRIBUTING](https://github.com/PowerGridModel/.github/blob/main/CONTRIBUTING.md),
142
- [PROJECT GOVERNANCE](https://github.com/PowerGridModel/.github/blob/main/GOVERNANCE.md) and
143
- [RELEASE](https://github.com/PowerGridModel/.github/blob/main/RELEASE.md) for details on the process for submitting pull
144
- requests to us.
145
-
146
- Visit [Contribute](https://github.com/PowerGridModel/power-grid-model/contribute) for a list of good first issues in
147
- this repo.
148
-
149
- ## Citations
150
-
151
- If you are using Power Grid Model in your research work, please consider citing our library using the following
152
- references.
153
-
154
- [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8054429.svg)](https://zenodo.org/record/8054429)
155
-
156
- ```bibtex
157
- @software{Xiang_PowerGridModel_power-grid-model,
158
- author = {Xiang, Yu and Salemink, Peter and van Westering, Werner and Bharambe, Nitish and Govers, Martinus G.H. and van den Bogaard, Jonas and Stoeller, Bram and Wang, Zhen and Guo, Jerry Jinfeng and Figueroa Manrique, Santiago and Jagutis, Laurynas and Wang, Chenguang and van Raalte, Marc and {Contributors to the LF Energy project Power Grid Model}},
159
- doi = {10.5281/zenodo.8054429},
160
- license = {MPL-2.0},
161
- title = {{PowerGridModel/power-grid-model}},
162
- url = {https://github.com/PowerGridModel/power-grid-model}
163
- }
164
- @inproceedings{Xiang2023,
165
- author = {Xiang, Yu and Salemink, Peter and Stoeller, Bram and Bharambe, Nitish and van Westering, Werner},
166
- booktitle={27th International Conference on Electricity Distribution (CIRED 2023)},
167
- title={Power grid model: a high-performance distribution grid calculation library},
168
- year={2023},
169
- volume={2023},
170
- number={},
171
- pages={1089-1093},
172
- keywords={},
173
- doi={10.1049/icp.2023.0633}
174
- }
175
- ```
176
-
177
- ## Contact
178
-
179
- Please read [SUPPORT](https://github.com/PowerGridModel/.github/blob/main/SUPPORT.md) for how to connect and get into
180
- contact with the Power Grid Model project.
1
+ Metadata-Version: 2.4
2
+ Name: power-grid-model
3
+ Version: 1.12.70
4
+ Summary: Python/C++ library for distribution power system analysis
5
+ Author-Email: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
6
+ License-Expression: MPL-2.0
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: Implementation :: CPython
9
+ Classifier: Programming Language :: C++
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Operating System :: Microsoft :: Windows
14
+ Classifier: Operating System :: POSIX :: Linux
15
+ Classifier: Operating System :: MacOS
16
+ Classifier: Topic :: Scientific/Engineering :: Physics
17
+ Project-URL: Home-page, https://lfenergy.org/projects/power-grid-model/
18
+ Project-URL: GitHub, https://github.com/PowerGridModel/power-grid-model
19
+ Project-URL: Documentation, https://power-grid-model.readthedocs.io/en/stable/
20
+ Project-URL: Mailing-list, https://lists.lfenergy.org/g/powergridmodel
21
+ Project-URL: Discussion, https://github.com/orgs/PowerGridModel/discussions
22
+ Requires-Python: >=3.11
23
+ Requires-Dist: numpy>=2.0.0
24
+ Provides-Extra: dev
25
+ Requires-Dist: msgpack; extra == "dev"
26
+ Requires-Dist: pre-commit; extra == "dev"
27
+ Requires-Dist: pytest; extra == "dev"
28
+ Requires-Dist: pytest-cov; extra == "dev"
29
+ Requires-Dist: ruff; extra == "dev"
30
+ Provides-Extra: doc
31
+ Requires-Dist: sphinx; extra == "doc"
32
+ Requires-Dist: breathe; extra == "doc"
33
+ Requires-Dist: myst_nb; extra == "doc"
34
+ Requires-Dist: sphinx_rtd_theme; extra == "doc"
35
+ Requires-Dist: readthedocs-sphinx-search; extra == "doc"
36
+ Requires-Dist: sphinx-hoverxref; extra == "doc"
37
+ Requires-Dist: sphinxcontrib-mermaid>=1.0.0; extra == "doc"
38
+ Requires-Dist: sphinxcontrib-tikz; extra == "doc"
39
+ Requires-Dist: numpydoc; extra == "doc"
40
+ Requires-Dist: pandas; extra == "doc"
41
+ Requires-Dist: gitpython; extra == "doc"
42
+ Requires-Dist: pylint; extra == "doc"
43
+ Description-Content-Type: text/markdown
44
+
45
+ <!--
46
+ SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
47
+
48
+ SPDX-License-Identifier: MPL-2.0
49
+ -->
50
+
51
+ [![PyPI version](https://badge.fury.io/py/power-grid-model.svg?no-cache)](https://badge.fury.io/py/power-grid-model) <!-- markdownlint-disable-line first-line-h1 line-length -->
52
+ [![Anaconda-Server Badge](https://anaconda.org/conda-forge/power-grid-model/badges/version.svg?no-cache)](https://anaconda.org/conda-forge/power-grid-model)
53
+ [![License: MPL2.0](https://img.shields.io/badge/License-MPL2.0-informational.svg)](https://github.com/PowerGridModel/power-grid-model/blob/main/LICENSE)
54
+ [![Downloads](https://static.pepy.tech/badge/power-grid-model)](https://pepy.tech/project/power-grid-model)
55
+ [![Downloads](https://static.pepy.tech/badge/power-grid-model/month)](https://pepy.tech/project/power-grid-model)
56
+
57
+ [![CI Build](https://github.com/PowerGridModel/power-grid-model/actions/workflows/ci.yml/badge.svg)](https://github.com/PowerGridModel/power-grid-model/actions/workflows/ci.yml)
58
+ [![docs](https://readthedocs.org/projects/power-grid-model/badge/)](https://power-grid-model.readthedocs.io/en/stable/)
59
+
60
+ [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
61
+ [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=coverage)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
62
+ [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
63
+ [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
64
+ [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
65
+ [![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=PowerGridModel_power-grid-model&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model)
66
+
67
+ [![Nightly build](https://github.com/PowerGridModel/power-grid-model/actions/workflows/nightly.yml/badge.svg)](https://github.com/PowerGridModel/power-grid-model/actions/workflows/nightly.yml)
68
+
69
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8054429.svg)](https://zenodo.org/record/8054429)
70
+
71
+ [![Power Grid Model logo](https://github.com/PowerGridModel/.github/blob/main/artwork/svg/color.svg)](#) <!-- markdownlint-disable-line no-empty-links line-length -->
72
+
73
+ # Power Grid Model
74
+
75
+ `power-grid-model` is a library for steady-state distribution power system analysis distributed for Python and C.
76
+ The core of the library is written in C++.
77
+ Currently, it supports the following calculations:
78
+
79
+ * Power Flow
80
+ * State Estimation
81
+ * Short Circuit
82
+
83
+ See the [power-grid-model documentation](https://power-grid-model.readthedocs.io/en/stable/) for more information.
84
+ For various conversions to the power-grid-model, refer to the
85
+ [power-grid-model-io](https://github.com/PowerGridModel/power-grid-model-io) repository.
86
+ For an extended python interface to the the power-grid-model, refer to the
87
+ [power-grid-model-ds](https://github.com/PowerGridModel/power-grid-model-ds) repository.
88
+
89
+ ```{note}
90
+ Want to be updated on the latest news and releases? Subscribe to the Power Grid Model mailing list by sending an (empty)
91
+ email to: powergridmodel+subscribe@lists.lfenergy.org
92
+ ```
93
+
94
+ ## Installation
95
+
96
+ ### Install from PyPI
97
+
98
+ You can directly install the package from PyPI.
99
+
100
+ ```sh
101
+ pip install power-grid-model
102
+ ```
103
+
104
+ ### Install from Conda
105
+
106
+ If you are using `conda`, you can directly install the package from `conda-forge` channel.
107
+
108
+ ```sh
109
+ conda install -c conda-forge power-grid-model
110
+ ```
111
+
112
+ ### Build and install from Source
113
+
114
+ To install the library from source, refer to the
115
+ [Build Guide](https://power-grid-model.readthedocs.io/en/stable/advanced_documentation/build-guide.html).
116
+
117
+ ## Examples
118
+
119
+ Please refer to [Examples](https://github.com/PowerGridModel/power-grid-model-workshop/tree/main/examples) for more
120
+ detailed examples for power flow and state estimation.
121
+ Notebooks for validating the input data and exporting input/output data are also included.
122
+
123
+ ## License
124
+
125
+ This project is licensed under the Mozilla Public License, version 2.0 - see
126
+ [LICENSE](https://github.com/PowerGridModel/power-grid-model/blob/main/LICENSE) for details.
127
+
128
+ ## Licenses third-party libraries
129
+
130
+ This project includes third-party libraries,
131
+ which are licensed under their own respective Open-Source licenses.
132
+ SPDX-License-Identifier headers are used to show which license is applicable.
133
+ The concerning license files can be found in the
134
+ [LICENSES](https://github.com/PowerGridModel/power-grid-model/tree/main/LICENSES) directory.
135
+
136
+ ## Contributing
137
+
138
+ Please read [CODE_OF_CONDUCT](https://github.com/PowerGridModel/.github/blob/main/CODE_OF_CONDUCT.md),
139
+ [CONTRIBUTING](https://github.com/PowerGridModel/.github/blob/main/CONTRIBUTING.md),
140
+ [PROJECT GOVERNANCE](https://github.com/PowerGridModel/.github/blob/main/GOVERNANCE.md) and
141
+ [RELEASE](https://github.com/PowerGridModel/.github/blob/main/RELEASE.md) for details on the process for submitting pull
142
+ requests to us.
143
+
144
+ Visit [Contribute](https://github.com/PowerGridModel/power-grid-model/contribute) for a list of good first issues in
145
+ this repo.
146
+
147
+ ## Citations
148
+
149
+ If you are using Power Grid Model in your research work, please consider citing our library using the following
150
+ references.
151
+
152
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8054429.svg)](https://zenodo.org/record/8054429)
153
+
154
+ ```bibtex
155
+ @software{Xiang_PowerGridModel_power-grid-model,
156
+ author = {Xiang, Yu and Salemink, Peter and van Westering, Werner and Bharambe, Nitish and Govers, Martinus G.H. and van den Bogaard, Jonas and Stoeller, Bram and Wang, Zhen and Guo, Jerry Jinfeng and Figueroa Manrique, Santiago and Jagutis, Laurynas and Wang, Chenguang and van Raalte, Marc and {Contributors to the LF Energy project Power Grid Model}},
157
+ doi = {10.5281/zenodo.8054429},
158
+ license = {MPL-2.0},
159
+ title = {{PowerGridModel/power-grid-model}},
160
+ url = {https://github.com/PowerGridModel/power-grid-model}
161
+ }
162
+ @inproceedings{Xiang2023,
163
+ author = {Xiang, Yu and Salemink, Peter and Stoeller, Bram and Bharambe, Nitish and van Westering, Werner},
164
+ booktitle={27th International Conference on Electricity Distribution (CIRED 2023)},
165
+ title={Power grid model: a high-performance distribution grid calculation library},
166
+ year={2023},
167
+ volume={2023},
168
+ number={},
169
+ pages={1089-1093},
170
+ keywords={},
171
+ doi={10.1049/icp.2023.0633}
172
+ }
173
+ ```
174
+
175
+ ## Contact
176
+
177
+ Please read [SUPPORT](https://github.com/PowerGridModel/.github/blob/main/SUPPORT.md) for how to connect and get into
178
+ contact with the Power Grid Model project.
@@ -0,0 +1,65 @@
1
+ power_grid_model/__init__.py,sha256=MCR8e5waIpbrq_7mPL7PxGxkQgfJ_Qh8de8RvfGCrc0,1379
2
+ power_grid_model/_core/__init__.py,sha256=qwbj1j-Aa_yRB-E3j35pEVtF3mgH8CVIXAnog5mOry0,138
3
+ power_grid_model/_core/buffer_handling.py,sha256=nEYYE0Hif0Vm5mwIu2A7xiUMnWjX9duXV9NtZ0s68FY,15453
4
+ power_grid_model/_core/data_handling.py,sha256=TCnoNYoLxYn0yDMN7FPp4PH3nK5wVX_q75QaujHcSyw,6930
5
+ power_grid_model/_core/data_types.py,sha256=KCOnBpQ6X833jZw61fbAAZ7Rwd-uSQ3J-7Y268YgaMM,4739
6
+ power_grid_model/_core/dataset_definitions.py,sha256=HytgmDLzjqt8R6VnVO0QwuM5dGPXcWehNVLJ8sWq_-k,3305
7
+ power_grid_model/_core/enum.py,sha256=cGRC_Ua0_S6t9w8TxRpQ8OZivQc1_vH98z30ixg4oVA,4936
8
+ power_grid_model/_core/error_handling.py,sha256=vtZ04Q3c3CC94W4aEXgA1y9-Gps5ZUN2qz295BM_jE4,8816
9
+ power_grid_model/_core/errors.py,sha256=1votmXwlXbHEW8GL0_DKScJACLr3X7iuj4Wnc0tnT2U,3346
10
+ power_grid_model/_core/index_integer.py,sha256=-9xutg1yIn5lpfFl1jOofAym1922Z5xDDYoO9eqvDS8,351
11
+ power_grid_model/_core/options.py,sha256=i__QhCgk0idg-WF1jXUXae5PZ5qh1RMIgwYe8kb4fSI,1878
12
+ power_grid_model/_core/power_grid_core.py,sha256=sE1I6DEanAifUEnAgiVLUzMdMR1CCLO3f8jl20cpR2c,17059
13
+ power_grid_model/_core/power_grid_dataset.py,sha256=W50zKT1IyXVQYRENqoQThtEHDPttwGjM9EMdxR3wSkU,18372
14
+ power_grid_model/_core/power_grid_meta.py,sha256=pR1pLy_jGplTCnzaZBcm8WUSbvbwejyB8U4G-AFwflU,7758
15
+ power_grid_model/_core/power_grid_model.py,sha256=ji8WQmtDWGB_mdtS-Py_9Z1iO4dMmiozD9-mwPwx8ic,40047
16
+ power_grid_model/_core/power_grid_model_c/__init__.py,sha256=qwbj1j-Aa_yRB-E3j35pEVtF3mgH8CVIXAnog5mOry0,138
17
+ power_grid_model/_core/power_grid_model_c/bin/power_grid_model_c.dll,sha256=CsLiFq6xpGEKQMGe2MIplzA_hAJQ884PJG3E7zZCvTQ,2045952
18
+ power_grid_model/_core/power_grid_model_c/get_pgm_dll_path.py,sha256=GAgIamBAMNA40KejjE9ODny6RpFQ-9MvN3kjr_xC5fc,2161
19
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/basics.h,sha256=ticq5jaRFhjCMVPs2oHk9EicI5m2Vao--OuZpLaSXL8,7514
20
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/buffer.h,sha256=A-ByuDfQmPCYf5HCeOHim872DiwA66ORHcw17HnptIE,4658
21
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/dataset.h,sha256=yuCnInKgUEHn77htlt4Pqq2QKsthcRIUFPCWpPeaYUM,14468
22
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/dataset_definitions.h,sha256=d87mYGjzDjlk5oD_5OAsHpYhjPyiFtjbG0Gu9LHDi-Y,74571
23
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/handle.h,sha256=bxHBCqdewukaqKKKfCih95zbf06hDCMKf7tnxE5-jBQ,3100
24
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/meta_data.h,sha256=JacYKWKTW-x8uiKtsA76pLFLmWXEkksCQa_l3eDQPWo,6064
25
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/model.h,sha256=5YvpIUdMNgI0CTiEERhwpQQy6A3yreEe3bFjSI4ZNnA,5039
26
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/options.h,sha256=8H9lsT8Ho3c-2gvBJx1xTvMeOALnC4493n0Pb_dLfBQ,4546
27
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/serialization.h,sha256=e72XduQwRZme-HIa01FDrjf0tcY7O9N1mBtdOMxv-5U,5196
28
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_c.h,sha256=Z6z4vSMpgvkCT-mw0ATXnANg7qSEKM6LTs8VFCLr3S0,1704
29
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/basics.hpp,sha256=qv3ZjkNBKj9pQT0waggWjF8TcOzq4Ib0NEb0n9DRtEA,2213
30
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/buffer.hpp,sha256=eX1wEMFM3hPbYGQiikA58pW0zo6MArm5NeLkwSF57Gg,2397
31
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/dataset.hpp,sha256=IkJwBbkrBix-Ef0G26RxqzEUPVQ7zrm2fENh1QYdFDc,9159
32
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/handle.hpp,sha256=D_9HSwGKqxucesOr-VsHl5m102r5sV-XJ25t3SxGb24,4059
33
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/meta_data.hpp,sha256=amqU0GvxKifuEvi9pxg1vsJcEtXumWZF89rd8wRKugE,3252
34
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/model.hpp,sha256=WCQX4px3Ts6v69UD98suq-TLUdaFFyAmJdN0fxV3xrQ,2228
35
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/options.hpp,sha256=unyQ10NEUIgP_cx2jH6w9lseEFtYfn9DTwganUT2bHg,1842
36
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/serialization.hpp,sha256=LIkQYR3EMEOVP2RzmlZjIRBxshEvju2IcWvzCu4edLM,5488
37
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/utils.hpp,sha256=6ChIg9Oen4T3kCGkhPbPlTaVg82ujJ28OUSfXsJlWRI,2968
38
+ power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp.hpp,sha256=YoXBbYoxyBiOfbbrM1kheKZaCyobVzclTP4BREYSeOQ,655
39
+ power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelConfig.cmake,sha256=-lPbyznV2PVaMT6jO2f4F9Zresi99poxom06c7jY2E4,1280
40
+ power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelConfigVersion.cmake,sha256=ftfSKsoDn4al5ZfbJqLTvigf7G2_7Kytxbq9lORc-Eg,2833
41
+ power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelTargets-release.cmake,sha256=w1wgrZqodoDroxI-nwQEylqiFocq8QJlH9sNxX7CTxE,1064
42
+ power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelTargets.cmake,sha256=PaPxsi5KjyV534xBJKK35eIzPwF7ZFLJS5Wl-wKHg64,6708
43
+ power_grid_model/_core/power_grid_model_c/lib/power_grid_model_c.lib,sha256=RlUn_By08RnsowNIaEtXpjqfNMtwKNZY6LmCkXe0UyI,212016
44
+ power_grid_model/_core/power_grid_model_c/share/LICENSE,sha256=3KDI9LRd9JZGZcgIO1j9y8Q7lsxlVAbav3UNdr5yp_A,15199
45
+ power_grid_model/_core/power_grid_model_c/share/README.md,sha256=9wW16DuWhWFDh49Aa9yP9aALkTlr6DHvCJy7IRSIIlY,603
46
+ power_grid_model/_core/serialization.py,sha256=aZBr9qjYiYi1jcwfDk267euMf7WSHlMvNgcDYZ5KCBA,10049
47
+ power_grid_model/_core/typing.py,sha256=Mt1DJ62tHS3R9SQzdvM64L6Q8tvMCPQVAKGHAt8GM0U,637
48
+ power_grid_model/_core/utils.py,sha256=n2n2NnbwiL89kxNIg7-EBHOYNR5e9a4O2ExP5uaxz7M,31171
49
+ power_grid_model/data_types.py,sha256=F-AcNx_qBtwoNvdMg8TDds8QO-l5G7ZDb_TFBu_SJao,9909
50
+ power_grid_model/enum.py,sha256=ZF3C3maM2RGaqR42qNbNQeKjocFxvHDALdHP3Kzn6bY,701
51
+ power_grid_model/errors.py,sha256=EYsbYk1l8t_Fc8GiPFSuI6mKbOlaJvA4Lr4gW4etSOM,951
52
+ power_grid_model/py.typed,sha256=LEhq-Q0bxloOBXwmyOk-ePxch_k52F_P19QyjfbvyBs,136
53
+ power_grid_model/typing.py,sha256=sKQftXz-LbKoaGn23ijLGMvUZIwhvXHfLwYPGajGCj8,1289
54
+ power_grid_model/utils.py,sha256=Fv360Majx-UaJa8UOiJbUMxBEkdofVR--zdLCiGGH2c,17420
55
+ power_grid_model/validation/__init__.py,sha256=3k2wLJS3nkEdsM17_k4-zNMHgbflLmPOnsfR34pUPpA,818
56
+ power_grid_model/validation/_rules.py,sha256=Bj1UTtHYEec-H0SUGkiFxS13lIhOforXLAgZuSI405I,52157
57
+ power_grid_model/validation/_validation.py,sha256=z40DDIPAf3MUEGQmwOrZYg3YYAnp_Wq4gkCEIK0pl6g,48781
58
+ power_grid_model/validation/assertions.py,sha256=VmbiLTU04Lu5GDywKrcjNVEQcDiGxQLoUE-hlI790_Q,4102
59
+ power_grid_model/validation/errors.py,sha256=FzO_HJeMrOgOh4wlB-bA7zj1DpBKoaJnnmOnmo8c8y0,20450
60
+ power_grid_model/validation/utils.py,sha256=A5ciWb8fwM6r0uzMmgz5TPtmXhr-oJeRKrCtTO4j5TM,12784
61
+ power_grid_model-1.12.70.dist-info/METADATA,sha256=zcO4dzkyzyYqriNR0elL33lwhXTzPtMZugtNNty2HMg,9062
62
+ power_grid_model-1.12.70.dist-info/WHEEL,sha256=7cuQBrKlgrMjywT6nmSZIIhuOog1xNCTkMyVVbw2aow,103
63
+ power_grid_model-1.12.70.dist-info/entry_points.txt,sha256=KgNx7mGcOVAVuwCBeP30AH5h_8UrKf0DQA9Cs5td69w,75
64
+ power_grid_model-1.12.70.dist-info/licenses/LICENSE,sha256=3KDI9LRd9JZGZcgIO1j9y8Q7lsxlVAbav3UNdr5yp_A,15199
65
+ power_grid_model-1.12.70.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: scikit-build-core 0.11.6
3
3
  Root-Is-Purelib: false
4
4
  Tag: py3-none-win_amd64
5
5
 
@@ -0,0 +1,3 @@
1
+ [cmake.root]
2
+ power_grid_model = power_grid_model._core.power_grid_model_c
3
+
Binary file
@@ -1,36 +0,0 @@
1
- power_grid_model/__init__.py,sha256=4NXijLFLHvQpC_PF-0hB4OtH-OTl6HEwoQSC_NHY-xQ,1377
2
- power_grid_model/data_types.py,sha256=fuw2FauDzn-5hhpwpieRtlQI0npeopG-UEIBBLITUtQ,9811
3
- power_grid_model/enum.py,sha256=8PSycnIS465LSJO10-Uh5VaHqkILNHKP94DbptrQrPI,728
4
- power_grid_model/errors.py,sha256=JTLsd66tRi52-PMNfyuWaAsHdAQ3kej-g5TPITeH58U,988
5
- power_grid_model/py.typed,sha256=LEhq-Q0bxloOBXwmyOk-ePxch_k52F_P19QyjfbvyBs,136
6
- power_grid_model/typing.py,sha256=Yo5aqQnwp_9zjN26cfqwdmHuoeUdxMlK9HPyzspUXOw,1346
7
- power_grid_model/utils.py,sha256=nvyZXX2ijo8-ig5R-cF2hnffHRIXhSbjTtmBrZS7fI0,17360
8
- power_grid_model/_core/__init__.py,sha256=2I8qwkSIwN5JByDPWZrd2S_mKKI3AWEQrMrY_5zV16Y,141
9
- power_grid_model/_core/_power_grid_core.dll,sha256=mEnU6MwTvgegJQqvN2txpqTDw-xNN8ClLDbHZJyTRj8,1924096
10
- power_grid_model/_core/buffer_handling.py,sha256=-nIH4kwsGqp7XmyLgrmYJs71TwiUp6xcND_H27SyObU,15378
11
- power_grid_model/_core/data_handling.py,sha256=3bfFN85KWWhwpUC-GoxF39_N9nmfj0ANLhxcYjYNJD8,5218
12
- power_grid_model/_core/data_types.py,sha256=4TgXreTnzPlLDbrVgL6v40CVgT581e9ekS0ReoUcAY8,4223
13
- power_grid_model/_core/dataset_definitions.py,sha256=a-tYMlW4rl_j9iXeoKiKgKfPdt9_g4S88n5y8q4wjho,3386
14
- power_grid_model/_core/enum.py,sha256=_dQaSagpyBOqnKL05jox8BKz6o-W1Vou20qckGTrRAQ,5162
15
- power_grid_model/_core/error_handling.py,sha256=wdcx444IpQHFLwScjVK004PqLmzfveg5uVv09cWDw9c,8971
16
- power_grid_model/_core/errors.py,sha256=Ezad_Pb04jbap6vYteKkrPZ2ysyoXtpuhMpG5B7Av3A,3342
17
- power_grid_model/_core/index_integer.py,sha256=A7p3NKjiX4qcDfvGJ1MTFOkd5BhVaSTE-nzW878og_g,368
18
- power_grid_model/_core/options.py,sha256=uOp6ePrDWwgZN98kaZM6PGkUE13UZ-1dp8VGz2EpXXA,1921
19
- power_grid_model/_core/power_grid_core.py,sha256=n0Mpk1eFYA2eGqpbT_ds-WGjFIpHGfVuTDT0cfaAHAY,18344
20
- power_grid_model/_core/power_grid_dataset.py,sha256=SkS-clvJjrRCbYSsL8iMw6N3KlZjMCcaoWLrvrWWhfc,18931
21
- power_grid_model/_core/power_grid_meta.py,sha256=zc6C-FEGryl-CYSnBaBX0K63unWMWHTeB56VugqT5vY,7607
22
- power_grid_model/_core/power_grid_model.py,sha256=nr4RJGAq2bsoUmJNRoiwjYuzD0-gxAi1X9na65-BLUU,30605
23
- power_grid_model/_core/serialization.py,sha256=2VwLFUkam-_H-FJDfgEXgdcjCscA8tXodtzOOuGcATA,10366
24
- power_grid_model/_core/typing.py,sha256=3PVKRzsM1xcJYkR2gbi4piUQxelDZdLjBSkSDMRq6-4,659
25
- power_grid_model/_core/utils.py,sha256=UOkZvmtw1t62JVVhtBzOSLL_cFfo-4KtACM3jFh4ORs,31614
26
- power_grid_model/validation/__init__.py,sha256=Vt2FV29tdk9lmD8xqtUmWEbCqXx0LpjAQ9nPoC2D3nM,843
27
- power_grid_model/validation/_rules.py,sha256=dObZDVIeHzqMsOx9ilU1iLQCCt2AirdrymXU3aHFpNI,53514
28
- power_grid_model/validation/_validation.py,sha256=UwVsLkfXK7enTR1kqRRYswDXzPAcPdo7IDofohGyJsI,48840
29
- power_grid_model/validation/assertions.py,sha256=cuZdgZTkPeP2UyE-Op68jfBqyXGrAyosUjyD_HC9k7c,4189
30
- power_grid_model/validation/errors.py,sha256=yJJZwIHz528Ad-5Gu59QXg48my3AYVTDOFbADfTA5j8,20506
31
- power_grid_model/validation/utils.py,sha256=1UWv2bW0jQpswdWtvaExCaj06zpjyVxi1W0EUvDfvqQ,13114
32
- power_grid_model-1.11.23.dist-info/licenses/LICENSE,sha256=3KDI9LRd9JZGZcgIO1j9y8Q7lsxlVAbav3UNdr5yp_A,15199
33
- power_grid_model-1.11.23.dist-info/METADATA,sha256=iv2ZZjmqQxEtsZDWoAnCyAiUXB68Wibi1lzBawV9LmE,9287
34
- power_grid_model-1.11.23.dist-info/WHEEL,sha256=BlXG8Qkq_mCTKpY-toCToAQAmGPE73xawTOhla8_4pE,98
35
- power_grid_model-1.11.23.dist-info/top_level.txt,sha256=1mz4Aq4A5oedde8uMGpUiWI7jdB4-BwxjRfke5jkBkM,17
36
- power_grid_model-1.11.23.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- power_grid_model