power-grid-model-ds 1.1.2__tar.gz → 1.1.3__tar.gz
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.
- power_grid_model_ds-1.1.3/PKG-INFO +152 -0
- power_grid_model_ds-1.1.3/PYPI_VERSION +1 -0
- power_grid_model_ds-1.1.3/README.md +107 -0
- power_grid_model_ds-1.1.3/src/power_grid_model_ds.egg-info/PKG-INFO +152 -0
- power_grid_model_ds-1.1.2/PKG-INFO +0 -97
- power_grid_model_ds-1.1.2/PYPI_VERSION +0 -1
- power_grid_model_ds-1.1.2/README.md +0 -52
- power_grid_model_ds-1.1.2/src/power_grid_model_ds.egg-info/PKG-INFO +0 -97
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/LICENSE +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/pyproject.toml +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/setup.cfg +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/setup.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/data_source/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/data_source/generator/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/data_source/generator/arrays/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/data_source/generator/arrays/base.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/data_source/generator/arrays/line.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/data_source/generator/arrays/node.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/data_source/generator/arrays/source.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/data_source/generator/arrays/transformer.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/data_source/generator/grid_generators.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/fancypy.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/load_flow.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/base/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/base/_build.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/base/_filters.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/base/_modify.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/base/_optional.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/base/_string.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/base/array.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/base/errors.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/arrays/pgm_arrays.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/constants.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/containers/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/containers/base.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/containers/grid_protocol.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/dtypes/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/dtypes/appliances.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/dtypes/branches.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/dtypes/id.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/dtypes/nodes.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/dtypes/regulators.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/dtypes/sensors.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/enums/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/enums/nodes.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/graphs/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/graphs/container.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/graphs/errors.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/graphs/models/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/graphs/models/_rustworkx_search.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/graphs/models/base.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/graphs/models/rustworkx.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/grids/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/grids/_text_sources.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/grids/base.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/model/grids/helpers.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/utils/__init__.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/utils/misc.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/utils/pickle.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/utils/zip.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/arrays.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/constants.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/enums.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/errors.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/fancypy.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/generators.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/graph_models.py +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds.egg-info/SOURCES.txt +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds.egg-info/dependency_links.txt +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds.egg-info/requires.txt +0 -0
- {power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds.egg-info/top_level.txt +0 -0
@@ -0,0 +1,152 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: power-grid-model-ds
|
3
|
+
Version: 1.1.3
|
4
|
+
Summary: Power Grid Model extension which provides a grid data structure for simulation and analysis
|
5
|
+
Author-email: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
6
|
+
License: 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-ds
|
9
|
+
Project-URL: Documentation, https://power-grid-model-ds.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
|
+
Keywords: power grid model
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: Intended Audience :: Developers
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
16
|
+
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
17
|
+
Classifier: Operating System :: Microsoft :: Windows
|
18
|
+
Classifier: Operating System :: POSIX :: Linux
|
19
|
+
Classifier: Operating System :: MacOS
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
21
|
+
Requires-Python: <3.14,>=3.11
|
22
|
+
Description-Content-Type: text/markdown
|
23
|
+
License-File: LICENSE
|
24
|
+
Requires-Dist: power-grid-model>=1.7
|
25
|
+
Requires-Dist: rustworkx>=0.15.1
|
26
|
+
Requires-Dist: numpy>=1.21
|
27
|
+
Provides-Extra: pandas
|
28
|
+
Requires-Dist: pandas>=2.2.1; extra == "pandas"
|
29
|
+
Provides-Extra: dev
|
30
|
+
Requires-Dist: pylint>=3.1.0; extra == "dev"
|
31
|
+
Requires-Dist: pytest>=8.1.1; extra == "dev"
|
32
|
+
Requires-Dist: coverage>=7.4.4; extra == "dev"
|
33
|
+
Requires-Dist: black>=24.3.0; extra == "dev"
|
34
|
+
Requires-Dist: ruff>=0.3.5; extra == "dev"
|
35
|
+
Requires-Dist: isort>=5.13.2; extra == "dev"
|
36
|
+
Requires-Dist: mypy>=1.9.0; extra == "dev"
|
37
|
+
Requires-Dist: pre-commit>=4; extra == "dev"
|
38
|
+
Provides-Extra: doc
|
39
|
+
Requires-Dist: sphinx; extra == "doc"
|
40
|
+
Requires-Dist: myst-nb; extra == "doc"
|
41
|
+
Requires-Dist: sphinx_rtd_theme; extra == "doc"
|
42
|
+
Requires-Dist: readthedocs-sphinx-search; extra == "doc"
|
43
|
+
Requires-Dist: sphinx-hoverxref; extra == "doc"
|
44
|
+
Requires-Dist: numpydoc; extra == "doc"
|
45
|
+
|
46
|
+
<!--
|
47
|
+
SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
48
|
+
|
49
|
+
SPDX-License-Identifier: MPL-2.0
|
50
|
+
-->
|
51
|
+
|
52
|
+
[](https://badge.fury.io/py/power-grid-model-ds)
|
53
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/blob/main/LICENSE)
|
54
|
+
[](https://pepy.tech/project/power-grid-model-ds)
|
55
|
+
[](https://pepy.tech/project/power-grid-model-ds)
|
56
|
+
|
57
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/build-test-and-sonar.yml)
|
58
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/check-code-quality.yml)
|
59
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/reuse-compliance.yml)
|
60
|
+
[](https://power-grid-model-ds.readthedocs.io/en/stable/)
|
61
|
+
|
62
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
63
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
64
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
65
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
66
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
67
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
68
|
+
|
69
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/nightly.yml)
|
70
|
+
|
71
|
+
[](https://zenodo.org/record/14825565)
|
72
|
+
|
73
|
+
[](#)
|
74
|
+
|
75
|
+
# Power Grid Model Data Science (DS)
|
76
|
+
|
77
|
+
The Power Grid Model DS project extends the capabilities of the `power-grid-model` calculation core with a modelling and simulation interface. This is aimed at building data science software applications related to or using the power-grid-model project. It defines a `Grid` dataclass which manages the consistency of the complete network.
|
78
|
+
|
79
|
+
Some highlighted features:
|
80
|
+
|
81
|
+
- Using a model definition that corresponds to the power-grid-model, through
|
82
|
+
which it is easy to do efficient grid calculations.
|
83
|
+
- The extended numpy model provides features which make development more
|
84
|
+
pleasant and easy.
|
85
|
+
- Using the graph representation of the network, graph algorithms in rustworkx
|
86
|
+
can be used to analyze the network.
|
87
|
+
- An interface to model network mutations which is useful in
|
88
|
+
simulation use-cases.
|
89
|
+
|
90
|
+
See the [power-grid-model-ds documentation](https://power-grid-model-ds.readthedocs.io/en/stable/) for more information.
|
91
|
+
|
92
|
+
## Installation
|
93
|
+
|
94
|
+
### Pip
|
95
|
+
|
96
|
+
```
|
97
|
+
pip install power-grid-model-ds
|
98
|
+
```
|
99
|
+
|
100
|
+
## License
|
101
|
+
|
102
|
+
This project is licensed under the Mozilla Public License, version 2.0 - see [LICENSE](https://github.com/PowerGridModel/power-grid-model-ds/blob/main/LICENSE) for details.
|
103
|
+
|
104
|
+
## Licenses third-party libraries
|
105
|
+
|
106
|
+
This project includes third-party libraries,
|
107
|
+
which are licensed under their own respective Open-Source licenses.
|
108
|
+
SPDX-License-Identifier headers are used to show which license is applicable.
|
109
|
+
The concerning license files can be found in the [LICENSES](https://github.com/PowerGridModel/power-grid-model-ds/tree/main/LICENSES) directory.
|
110
|
+
|
111
|
+
## Contributing
|
112
|
+
|
113
|
+
Please read [CODE_OF_CONDUCT](https://github.com/PowerGridModel/.github/blob/main/CODE_OF_CONDUCT.md) and [CONTRIBUTING](https://github.com/PowerGridModel/.github/blob/main/CONTRIBUTING.md) for details on the process
|
114
|
+
for submitting pull requests to us.
|
115
|
+
|
116
|
+
## Citations
|
117
|
+
|
118
|
+
If you are using Power Grid Model DS in your research work, please consider citing our library using the following references.
|
119
|
+
|
120
|
+
[](https://zenodo.org/record/14825565)
|
121
|
+
|
122
|
+
```bibtex
|
123
|
+
@software{Schouten_PowerGridModel_power-grid-model-ds,
|
124
|
+
author = {Schouten, Jaap and Baaijen, Thijs and Koppen, Vincent and van der Voort, Sven and {Contributors to the LF Energy project Power Grid Model}},
|
125
|
+
doi = {10.5281/zenodo.14825565},
|
126
|
+
license = {MPL-2.0},
|
127
|
+
title = {{PowerGridModel/power-grid-model-ds}},
|
128
|
+
url = {https://github.com/PowerGridModel/power-grid-model-ds}
|
129
|
+
}
|
130
|
+
@software{Xiang_PowerGridModel_power-grid-model,
|
131
|
+
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}},
|
132
|
+
doi = {10.5281/zenodo.8054429},
|
133
|
+
license = {MPL-2.0},
|
134
|
+
title = {{PowerGridModel/power-grid-model}},
|
135
|
+
url = {https://github.com/PowerGridModel/power-grid-model}
|
136
|
+
}
|
137
|
+
@inproceedings{Xiang2023,
|
138
|
+
author = {Xiang, Yu and Salemink, Peter and Stoeller, Bram and Bharambe, Nitish and van Westering, Werner},
|
139
|
+
booktitle={27th International Conference on Electricity Distribution (CIRED 2023)},
|
140
|
+
title={Power grid model: a high-performance distribution grid calculation library},
|
141
|
+
year={2023},
|
142
|
+
volume={2023},
|
143
|
+
number={},
|
144
|
+
pages={1089-1093},
|
145
|
+
keywords={},
|
146
|
+
doi={10.1049/icp.2023.0633}
|
147
|
+
}
|
148
|
+
```
|
149
|
+
|
150
|
+
## Contact
|
151
|
+
|
152
|
+
Please read [SUPPORT](https://github.com/PowerGridModel/.github/blob/main/SUPPORT.md) for how to connect and get into contact with the Power Grid Model project.
|
@@ -0,0 +1 @@
|
|
1
|
+
1.1.3
|
@@ -0,0 +1,107 @@
|
|
1
|
+
<!--
|
2
|
+
SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
3
|
+
|
4
|
+
SPDX-License-Identifier: MPL-2.0
|
5
|
+
-->
|
6
|
+
|
7
|
+
[](https://badge.fury.io/py/power-grid-model-ds)
|
8
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/blob/main/LICENSE)
|
9
|
+
[](https://pepy.tech/project/power-grid-model-ds)
|
10
|
+
[](https://pepy.tech/project/power-grid-model-ds)
|
11
|
+
|
12
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/build-test-and-sonar.yml)
|
13
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/check-code-quality.yml)
|
14
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/reuse-compliance.yml)
|
15
|
+
[](https://power-grid-model-ds.readthedocs.io/en/stable/)
|
16
|
+
|
17
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
18
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
19
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
20
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
21
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
22
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
23
|
+
|
24
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/nightly.yml)
|
25
|
+
|
26
|
+
[](https://zenodo.org/record/14825565)
|
27
|
+
|
28
|
+
[](#)
|
29
|
+
|
30
|
+
# Power Grid Model Data Science (DS)
|
31
|
+
|
32
|
+
The Power Grid Model DS project extends the capabilities of the `power-grid-model` calculation core with a modelling and simulation interface. This is aimed at building data science software applications related to or using the power-grid-model project. It defines a `Grid` dataclass which manages the consistency of the complete network.
|
33
|
+
|
34
|
+
Some highlighted features:
|
35
|
+
|
36
|
+
- Using a model definition that corresponds to the power-grid-model, through
|
37
|
+
which it is easy to do efficient grid calculations.
|
38
|
+
- The extended numpy model provides features which make development more
|
39
|
+
pleasant and easy.
|
40
|
+
- Using the graph representation of the network, graph algorithms in rustworkx
|
41
|
+
can be used to analyze the network.
|
42
|
+
- An interface to model network mutations which is useful in
|
43
|
+
simulation use-cases.
|
44
|
+
|
45
|
+
See the [power-grid-model-ds documentation](https://power-grid-model-ds.readthedocs.io/en/stable/) for more information.
|
46
|
+
|
47
|
+
## Installation
|
48
|
+
|
49
|
+
### Pip
|
50
|
+
|
51
|
+
```
|
52
|
+
pip install power-grid-model-ds
|
53
|
+
```
|
54
|
+
|
55
|
+
## License
|
56
|
+
|
57
|
+
This project is licensed under the Mozilla Public License, version 2.0 - see [LICENSE](https://github.com/PowerGridModel/power-grid-model-ds/blob/main/LICENSE) for details.
|
58
|
+
|
59
|
+
## Licenses third-party libraries
|
60
|
+
|
61
|
+
This project includes third-party libraries,
|
62
|
+
which are licensed under their own respective Open-Source licenses.
|
63
|
+
SPDX-License-Identifier headers are used to show which license is applicable.
|
64
|
+
The concerning license files can be found in the [LICENSES](https://github.com/PowerGridModel/power-grid-model-ds/tree/main/LICENSES) directory.
|
65
|
+
|
66
|
+
## Contributing
|
67
|
+
|
68
|
+
Please read [CODE_OF_CONDUCT](https://github.com/PowerGridModel/.github/blob/main/CODE_OF_CONDUCT.md) and [CONTRIBUTING](https://github.com/PowerGridModel/.github/blob/main/CONTRIBUTING.md) for details on the process
|
69
|
+
for submitting pull requests to us.
|
70
|
+
|
71
|
+
## Citations
|
72
|
+
|
73
|
+
If you are using Power Grid Model DS in your research work, please consider citing our library using the following references.
|
74
|
+
|
75
|
+
[](https://zenodo.org/record/14825565)
|
76
|
+
|
77
|
+
```bibtex
|
78
|
+
@software{Schouten_PowerGridModel_power-grid-model-ds,
|
79
|
+
author = {Schouten, Jaap and Baaijen, Thijs and Koppen, Vincent and van der Voort, Sven and {Contributors to the LF Energy project Power Grid Model}},
|
80
|
+
doi = {10.5281/zenodo.14825565},
|
81
|
+
license = {MPL-2.0},
|
82
|
+
title = {{PowerGridModel/power-grid-model-ds}},
|
83
|
+
url = {https://github.com/PowerGridModel/power-grid-model-ds}
|
84
|
+
}
|
85
|
+
@software{Xiang_PowerGridModel_power-grid-model,
|
86
|
+
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}},
|
87
|
+
doi = {10.5281/zenodo.8054429},
|
88
|
+
license = {MPL-2.0},
|
89
|
+
title = {{PowerGridModel/power-grid-model}},
|
90
|
+
url = {https://github.com/PowerGridModel/power-grid-model}
|
91
|
+
}
|
92
|
+
@inproceedings{Xiang2023,
|
93
|
+
author = {Xiang, Yu and Salemink, Peter and Stoeller, Bram and Bharambe, Nitish and van Westering, Werner},
|
94
|
+
booktitle={27th International Conference on Electricity Distribution (CIRED 2023)},
|
95
|
+
title={Power grid model: a high-performance distribution grid calculation library},
|
96
|
+
year={2023},
|
97
|
+
volume={2023},
|
98
|
+
number={},
|
99
|
+
pages={1089-1093},
|
100
|
+
keywords={},
|
101
|
+
doi={10.1049/icp.2023.0633}
|
102
|
+
}
|
103
|
+
```
|
104
|
+
|
105
|
+
## Contact
|
106
|
+
|
107
|
+
Please read [SUPPORT](https://github.com/PowerGridModel/.github/blob/main/SUPPORT.md) for how to connect and get into contact with the Power Grid Model project.
|
@@ -0,0 +1,152 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: power-grid-model-ds
|
3
|
+
Version: 1.1.3
|
4
|
+
Summary: Power Grid Model extension which provides a grid data structure for simulation and analysis
|
5
|
+
Author-email: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
6
|
+
License: 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-ds
|
9
|
+
Project-URL: Documentation, https://power-grid-model-ds.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
|
+
Keywords: power grid model
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: Intended Audience :: Developers
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
16
|
+
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
17
|
+
Classifier: Operating System :: Microsoft :: Windows
|
18
|
+
Classifier: Operating System :: POSIX :: Linux
|
19
|
+
Classifier: Operating System :: MacOS
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
21
|
+
Requires-Python: <3.14,>=3.11
|
22
|
+
Description-Content-Type: text/markdown
|
23
|
+
License-File: LICENSE
|
24
|
+
Requires-Dist: power-grid-model>=1.7
|
25
|
+
Requires-Dist: rustworkx>=0.15.1
|
26
|
+
Requires-Dist: numpy>=1.21
|
27
|
+
Provides-Extra: pandas
|
28
|
+
Requires-Dist: pandas>=2.2.1; extra == "pandas"
|
29
|
+
Provides-Extra: dev
|
30
|
+
Requires-Dist: pylint>=3.1.0; extra == "dev"
|
31
|
+
Requires-Dist: pytest>=8.1.1; extra == "dev"
|
32
|
+
Requires-Dist: coverage>=7.4.4; extra == "dev"
|
33
|
+
Requires-Dist: black>=24.3.0; extra == "dev"
|
34
|
+
Requires-Dist: ruff>=0.3.5; extra == "dev"
|
35
|
+
Requires-Dist: isort>=5.13.2; extra == "dev"
|
36
|
+
Requires-Dist: mypy>=1.9.0; extra == "dev"
|
37
|
+
Requires-Dist: pre-commit>=4; extra == "dev"
|
38
|
+
Provides-Extra: doc
|
39
|
+
Requires-Dist: sphinx; extra == "doc"
|
40
|
+
Requires-Dist: myst-nb; extra == "doc"
|
41
|
+
Requires-Dist: sphinx_rtd_theme; extra == "doc"
|
42
|
+
Requires-Dist: readthedocs-sphinx-search; extra == "doc"
|
43
|
+
Requires-Dist: sphinx-hoverxref; extra == "doc"
|
44
|
+
Requires-Dist: numpydoc; extra == "doc"
|
45
|
+
|
46
|
+
<!--
|
47
|
+
SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
48
|
+
|
49
|
+
SPDX-License-Identifier: MPL-2.0
|
50
|
+
-->
|
51
|
+
|
52
|
+
[](https://badge.fury.io/py/power-grid-model-ds)
|
53
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/blob/main/LICENSE)
|
54
|
+
[](https://pepy.tech/project/power-grid-model-ds)
|
55
|
+
[](https://pepy.tech/project/power-grid-model-ds)
|
56
|
+
|
57
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/build-test-and-sonar.yml)
|
58
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/check-code-quality.yml)
|
59
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/reuse-compliance.yml)
|
60
|
+
[](https://power-grid-model-ds.readthedocs.io/en/stable/)
|
61
|
+
|
62
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
63
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
64
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
65
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
66
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
67
|
+
[](https://sonarcloud.io/summary/new_code?id=PowerGridModel_power-grid-model-ds)
|
68
|
+
|
69
|
+
[](https://github.com/PowerGridModel/power-grid-model-ds/actions/workflows/nightly.yml)
|
70
|
+
|
71
|
+
[](https://zenodo.org/record/14825565)
|
72
|
+
|
73
|
+
[](#)
|
74
|
+
|
75
|
+
# Power Grid Model Data Science (DS)
|
76
|
+
|
77
|
+
The Power Grid Model DS project extends the capabilities of the `power-grid-model` calculation core with a modelling and simulation interface. This is aimed at building data science software applications related to or using the power-grid-model project. It defines a `Grid` dataclass which manages the consistency of the complete network.
|
78
|
+
|
79
|
+
Some highlighted features:
|
80
|
+
|
81
|
+
- Using a model definition that corresponds to the power-grid-model, through
|
82
|
+
which it is easy to do efficient grid calculations.
|
83
|
+
- The extended numpy model provides features which make development more
|
84
|
+
pleasant and easy.
|
85
|
+
- Using the graph representation of the network, graph algorithms in rustworkx
|
86
|
+
can be used to analyze the network.
|
87
|
+
- An interface to model network mutations which is useful in
|
88
|
+
simulation use-cases.
|
89
|
+
|
90
|
+
See the [power-grid-model-ds documentation](https://power-grid-model-ds.readthedocs.io/en/stable/) for more information.
|
91
|
+
|
92
|
+
## Installation
|
93
|
+
|
94
|
+
### Pip
|
95
|
+
|
96
|
+
```
|
97
|
+
pip install power-grid-model-ds
|
98
|
+
```
|
99
|
+
|
100
|
+
## License
|
101
|
+
|
102
|
+
This project is licensed under the Mozilla Public License, version 2.0 - see [LICENSE](https://github.com/PowerGridModel/power-grid-model-ds/blob/main/LICENSE) for details.
|
103
|
+
|
104
|
+
## Licenses third-party libraries
|
105
|
+
|
106
|
+
This project includes third-party libraries,
|
107
|
+
which are licensed under their own respective Open-Source licenses.
|
108
|
+
SPDX-License-Identifier headers are used to show which license is applicable.
|
109
|
+
The concerning license files can be found in the [LICENSES](https://github.com/PowerGridModel/power-grid-model-ds/tree/main/LICENSES) directory.
|
110
|
+
|
111
|
+
## Contributing
|
112
|
+
|
113
|
+
Please read [CODE_OF_CONDUCT](https://github.com/PowerGridModel/.github/blob/main/CODE_OF_CONDUCT.md) and [CONTRIBUTING](https://github.com/PowerGridModel/.github/blob/main/CONTRIBUTING.md) for details on the process
|
114
|
+
for submitting pull requests to us.
|
115
|
+
|
116
|
+
## Citations
|
117
|
+
|
118
|
+
If you are using Power Grid Model DS in your research work, please consider citing our library using the following references.
|
119
|
+
|
120
|
+
[](https://zenodo.org/record/14825565)
|
121
|
+
|
122
|
+
```bibtex
|
123
|
+
@software{Schouten_PowerGridModel_power-grid-model-ds,
|
124
|
+
author = {Schouten, Jaap and Baaijen, Thijs and Koppen, Vincent and van der Voort, Sven and {Contributors to the LF Energy project Power Grid Model}},
|
125
|
+
doi = {10.5281/zenodo.14825565},
|
126
|
+
license = {MPL-2.0},
|
127
|
+
title = {{PowerGridModel/power-grid-model-ds}},
|
128
|
+
url = {https://github.com/PowerGridModel/power-grid-model-ds}
|
129
|
+
}
|
130
|
+
@software{Xiang_PowerGridModel_power-grid-model,
|
131
|
+
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}},
|
132
|
+
doi = {10.5281/zenodo.8054429},
|
133
|
+
license = {MPL-2.0},
|
134
|
+
title = {{PowerGridModel/power-grid-model}},
|
135
|
+
url = {https://github.com/PowerGridModel/power-grid-model}
|
136
|
+
}
|
137
|
+
@inproceedings{Xiang2023,
|
138
|
+
author = {Xiang, Yu and Salemink, Peter and Stoeller, Bram and Bharambe, Nitish and van Westering, Werner},
|
139
|
+
booktitle={27th International Conference on Electricity Distribution (CIRED 2023)},
|
140
|
+
title={Power grid model: a high-performance distribution grid calculation library},
|
141
|
+
year={2023},
|
142
|
+
volume={2023},
|
143
|
+
number={},
|
144
|
+
pages={1089-1093},
|
145
|
+
keywords={},
|
146
|
+
doi={10.1049/icp.2023.0633}
|
147
|
+
}
|
148
|
+
```
|
149
|
+
|
150
|
+
## Contact
|
151
|
+
|
152
|
+
Please read [SUPPORT](https://github.com/PowerGridModel/.github/blob/main/SUPPORT.md) for how to connect and get into contact with the Power Grid Model project.
|
@@ -1,97 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.2
|
2
|
-
Name: power-grid-model-ds
|
3
|
-
Version: 1.1.2
|
4
|
-
Summary: Power Grid Model extension which provides a grid data structure for simulation and analysis
|
5
|
-
Author-email: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
6
|
-
License: 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-ds
|
9
|
-
Project-URL: Documentation, https://power-grid-model-ds.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
|
-
Keywords: power grid model
|
13
|
-
Classifier: Programming Language :: Python :: 3
|
14
|
-
Classifier: Intended Audience :: Developers
|
15
|
-
Classifier: Intended Audience :: Science/Research
|
16
|
-
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
17
|
-
Classifier: Operating System :: Microsoft :: Windows
|
18
|
-
Classifier: Operating System :: POSIX :: Linux
|
19
|
-
Classifier: Operating System :: MacOS
|
20
|
-
Classifier: Topic :: Scientific/Engineering :: Physics
|
21
|
-
Requires-Python: <3.14,>=3.11
|
22
|
-
Description-Content-Type: text/markdown
|
23
|
-
License-File: LICENSE
|
24
|
-
Requires-Dist: power-grid-model>=1.7
|
25
|
-
Requires-Dist: rustworkx>=0.15.1
|
26
|
-
Requires-Dist: numpy>=1.21
|
27
|
-
Provides-Extra: pandas
|
28
|
-
Requires-Dist: pandas>=2.2.1; extra == "pandas"
|
29
|
-
Provides-Extra: dev
|
30
|
-
Requires-Dist: pylint>=3.1.0; extra == "dev"
|
31
|
-
Requires-Dist: pytest>=8.1.1; extra == "dev"
|
32
|
-
Requires-Dist: coverage>=7.4.4; extra == "dev"
|
33
|
-
Requires-Dist: black>=24.3.0; extra == "dev"
|
34
|
-
Requires-Dist: ruff>=0.3.5; extra == "dev"
|
35
|
-
Requires-Dist: isort>=5.13.2; extra == "dev"
|
36
|
-
Requires-Dist: mypy>=1.9.0; extra == "dev"
|
37
|
-
Requires-Dist: pre-commit>=4; extra == "dev"
|
38
|
-
Provides-Extra: doc
|
39
|
-
Requires-Dist: sphinx; extra == "doc"
|
40
|
-
Requires-Dist: myst-nb; extra == "doc"
|
41
|
-
Requires-Dist: sphinx_rtd_theme; extra == "doc"
|
42
|
-
Requires-Dist: readthedocs-sphinx-search; extra == "doc"
|
43
|
-
Requires-Dist: sphinx-hoverxref; extra == "doc"
|
44
|
-
Requires-Dist: numpydoc; extra == "doc"
|
45
|
-
|
46
|
-
<!--
|
47
|
-
SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
48
|
-
|
49
|
-
SPDX-License-Identifier: MPL-2.0
|
50
|
-
-->
|
51
|
-
|
52
|
-
[](#)
|
53
|
-
|
54
|
-
# Power Grid Model Data Science (DS)
|
55
|
-
|
56
|
-
The Power Grid Model DS project extends the capabilities of the `power-grid-model` calculation core with a modelling and simulation interface. This is aimed at building data science software applications related to or using the power-grid-model project. It defines a `Grid` dataclass which manages the consistency of the complete network.
|
57
|
-
|
58
|
-
Some highlighted features:
|
59
|
-
|
60
|
-
- Using a model definition that corresponds to the power-grid-model, through
|
61
|
-
which it is easy to do efficient grid calculations.
|
62
|
-
- The extended numpy model provides features which make development more
|
63
|
-
pleasant and easy.
|
64
|
-
- Using the graph representation of the network, graph algorithms in rustworkx
|
65
|
-
can be used to analyze the network.
|
66
|
-
- An interface to model network mutations which is useful in
|
67
|
-
simulation use-cases.
|
68
|
-
|
69
|
-
See the [power-grid-model-ds documentation](https://power-grid-model-ds.readthedocs.io/en/stable/) for more information.
|
70
|
-
|
71
|
-
## Installation
|
72
|
-
|
73
|
-
### Pip
|
74
|
-
|
75
|
-
```
|
76
|
-
pip install power-grid-model-ds
|
77
|
-
```
|
78
|
-
## License
|
79
|
-
|
80
|
-
This project is licensed under the Mozilla Public License, version 2.0 - see [LICENSE](https://github.com/PowerGridModel/power-grid-model-ds/blob/main/LICENSE) for details.
|
81
|
-
|
82
|
-
## Licenses third-party libraries
|
83
|
-
|
84
|
-
This project includes third-party libraries,
|
85
|
-
which are licensed under their own respective Open-Source licenses.
|
86
|
-
SPDX-License-Identifier headers are used to show which license is applicable.
|
87
|
-
The concerning license files can be found in the [LICENSES](https://github.com/PowerGridModel/power-grid-model-ds/tree/main/LICENSES) directory.
|
88
|
-
|
89
|
-
## Contributing
|
90
|
-
|
91
|
-
Please read [CODE_OF_CONDUCT](https://github.com/PowerGridModel/.github/blob/main/CODE_OF_CONDUCT.md) and [CONTRIBUTING](https://github.com/PowerGridModel/.github/blob/main/CONTRIBUTING.md) for details on the process
|
92
|
-
for submitting pull requests to us.
|
93
|
-
|
94
|
-
## Contact
|
95
|
-
|
96
|
-
Please read [SUPPORT](https://github.com/PowerGridModel/.github/blob/main/SUPPORT.md) for how to connect and get into contact with the Power Grid Model project.
|
97
|
-
|
@@ -1 +0,0 @@
|
|
1
|
-
1.1.2
|
@@ -1,52 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
3
|
-
|
4
|
-
SPDX-License-Identifier: MPL-2.0
|
5
|
-
-->
|
6
|
-
|
7
|
-
[](#)
|
8
|
-
|
9
|
-
# Power Grid Model Data Science (DS)
|
10
|
-
|
11
|
-
The Power Grid Model DS project extends the capabilities of the `power-grid-model` calculation core with a modelling and simulation interface. This is aimed at building data science software applications related to or using the power-grid-model project. It defines a `Grid` dataclass which manages the consistency of the complete network.
|
12
|
-
|
13
|
-
Some highlighted features:
|
14
|
-
|
15
|
-
- Using a model definition that corresponds to the power-grid-model, through
|
16
|
-
which it is easy to do efficient grid calculations.
|
17
|
-
- The extended numpy model provides features which make development more
|
18
|
-
pleasant and easy.
|
19
|
-
- Using the graph representation of the network, graph algorithms in rustworkx
|
20
|
-
can be used to analyze the network.
|
21
|
-
- An interface to model network mutations which is useful in
|
22
|
-
simulation use-cases.
|
23
|
-
|
24
|
-
See the [power-grid-model-ds documentation](https://power-grid-model-ds.readthedocs.io/en/stable/) for more information.
|
25
|
-
|
26
|
-
## Installation
|
27
|
-
|
28
|
-
### Pip
|
29
|
-
|
30
|
-
```
|
31
|
-
pip install power-grid-model-ds
|
32
|
-
```
|
33
|
-
## License
|
34
|
-
|
35
|
-
This project is licensed under the Mozilla Public License, version 2.0 - see [LICENSE](https://github.com/PowerGridModel/power-grid-model-ds/blob/main/LICENSE) for details.
|
36
|
-
|
37
|
-
## Licenses third-party libraries
|
38
|
-
|
39
|
-
This project includes third-party libraries,
|
40
|
-
which are licensed under their own respective Open-Source licenses.
|
41
|
-
SPDX-License-Identifier headers are used to show which license is applicable.
|
42
|
-
The concerning license files can be found in the [LICENSES](https://github.com/PowerGridModel/power-grid-model-ds/tree/main/LICENSES) directory.
|
43
|
-
|
44
|
-
## Contributing
|
45
|
-
|
46
|
-
Please read [CODE_OF_CONDUCT](https://github.com/PowerGridModel/.github/blob/main/CODE_OF_CONDUCT.md) and [CONTRIBUTING](https://github.com/PowerGridModel/.github/blob/main/CONTRIBUTING.md) for details on the process
|
47
|
-
for submitting pull requests to us.
|
48
|
-
|
49
|
-
## Contact
|
50
|
-
|
51
|
-
Please read [SUPPORT](https://github.com/PowerGridModel/.github/blob/main/SUPPORT.md) for how to connect and get into contact with the Power Grid Model project.
|
52
|
-
|
@@ -1,97 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.2
|
2
|
-
Name: power-grid-model-ds
|
3
|
-
Version: 1.1.2
|
4
|
-
Summary: Power Grid Model extension which provides a grid data structure for simulation and analysis
|
5
|
-
Author-email: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
6
|
-
License: 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-ds
|
9
|
-
Project-URL: Documentation, https://power-grid-model-ds.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
|
-
Keywords: power grid model
|
13
|
-
Classifier: Programming Language :: Python :: 3
|
14
|
-
Classifier: Intended Audience :: Developers
|
15
|
-
Classifier: Intended Audience :: Science/Research
|
16
|
-
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
17
|
-
Classifier: Operating System :: Microsoft :: Windows
|
18
|
-
Classifier: Operating System :: POSIX :: Linux
|
19
|
-
Classifier: Operating System :: MacOS
|
20
|
-
Classifier: Topic :: Scientific/Engineering :: Physics
|
21
|
-
Requires-Python: <3.14,>=3.11
|
22
|
-
Description-Content-Type: text/markdown
|
23
|
-
License-File: LICENSE
|
24
|
-
Requires-Dist: power-grid-model>=1.7
|
25
|
-
Requires-Dist: rustworkx>=0.15.1
|
26
|
-
Requires-Dist: numpy>=1.21
|
27
|
-
Provides-Extra: pandas
|
28
|
-
Requires-Dist: pandas>=2.2.1; extra == "pandas"
|
29
|
-
Provides-Extra: dev
|
30
|
-
Requires-Dist: pylint>=3.1.0; extra == "dev"
|
31
|
-
Requires-Dist: pytest>=8.1.1; extra == "dev"
|
32
|
-
Requires-Dist: coverage>=7.4.4; extra == "dev"
|
33
|
-
Requires-Dist: black>=24.3.0; extra == "dev"
|
34
|
-
Requires-Dist: ruff>=0.3.5; extra == "dev"
|
35
|
-
Requires-Dist: isort>=5.13.2; extra == "dev"
|
36
|
-
Requires-Dist: mypy>=1.9.0; extra == "dev"
|
37
|
-
Requires-Dist: pre-commit>=4; extra == "dev"
|
38
|
-
Provides-Extra: doc
|
39
|
-
Requires-Dist: sphinx; extra == "doc"
|
40
|
-
Requires-Dist: myst-nb; extra == "doc"
|
41
|
-
Requires-Dist: sphinx_rtd_theme; extra == "doc"
|
42
|
-
Requires-Dist: readthedocs-sphinx-search; extra == "doc"
|
43
|
-
Requires-Dist: sphinx-hoverxref; extra == "doc"
|
44
|
-
Requires-Dist: numpydoc; extra == "doc"
|
45
|
-
|
46
|
-
<!--
|
47
|
-
SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
|
48
|
-
|
49
|
-
SPDX-License-Identifier: MPL-2.0
|
50
|
-
-->
|
51
|
-
|
52
|
-
[](#)
|
53
|
-
|
54
|
-
# Power Grid Model Data Science (DS)
|
55
|
-
|
56
|
-
The Power Grid Model DS project extends the capabilities of the `power-grid-model` calculation core with a modelling and simulation interface. This is aimed at building data science software applications related to or using the power-grid-model project. It defines a `Grid` dataclass which manages the consistency of the complete network.
|
57
|
-
|
58
|
-
Some highlighted features:
|
59
|
-
|
60
|
-
- Using a model definition that corresponds to the power-grid-model, through
|
61
|
-
which it is easy to do efficient grid calculations.
|
62
|
-
- The extended numpy model provides features which make development more
|
63
|
-
pleasant and easy.
|
64
|
-
- Using the graph representation of the network, graph algorithms in rustworkx
|
65
|
-
can be used to analyze the network.
|
66
|
-
- An interface to model network mutations which is useful in
|
67
|
-
simulation use-cases.
|
68
|
-
|
69
|
-
See the [power-grid-model-ds documentation](https://power-grid-model-ds.readthedocs.io/en/stable/) for more information.
|
70
|
-
|
71
|
-
## Installation
|
72
|
-
|
73
|
-
### Pip
|
74
|
-
|
75
|
-
```
|
76
|
-
pip install power-grid-model-ds
|
77
|
-
```
|
78
|
-
## License
|
79
|
-
|
80
|
-
This project is licensed under the Mozilla Public License, version 2.0 - see [LICENSE](https://github.com/PowerGridModel/power-grid-model-ds/blob/main/LICENSE) for details.
|
81
|
-
|
82
|
-
## Licenses third-party libraries
|
83
|
-
|
84
|
-
This project includes third-party libraries,
|
85
|
-
which are licensed under their own respective Open-Source licenses.
|
86
|
-
SPDX-License-Identifier headers are used to show which license is applicable.
|
87
|
-
The concerning license files can be found in the [LICENSES](https://github.com/PowerGridModel/power-grid-model-ds/tree/main/LICENSES) directory.
|
88
|
-
|
89
|
-
## Contributing
|
90
|
-
|
91
|
-
Please read [CODE_OF_CONDUCT](https://github.com/PowerGridModel/.github/blob/main/CODE_OF_CONDUCT.md) and [CONTRIBUTING](https://github.com/PowerGridModel/.github/blob/main/CONTRIBUTING.md) for details on the process
|
92
|
-
for submitting pull requests to us.
|
93
|
-
|
94
|
-
## Contact
|
95
|
-
|
96
|
-
Please read [SUPPORT](https://github.com/PowerGridModel/.github/blob/main/SUPPORT.md) for how to connect and get into contact with the Power Grid Model project.
|
97
|
-
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/fancypy.py
RENAMED
File without changes
|
{power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/load_flow.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/utils/misc.py
RENAMED
File without changes
|
File without changes
|
{power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/_core/utils/zip.py
RENAMED
File without changes
|
File without changes
|
{power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/constants.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/generators.py
RENAMED
File without changes
|
{power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds/graph_models.py
RENAMED
File without changes
|
{power_grid_model_ds-1.1.2 → power_grid_model_ds-1.1.3}/src/power_grid_model_ds.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|