PowSyBl
An open source framework written in Java, that makes it easy to write complex software for power systems simulations and analysis.
https://github.com/powsybl/powsybl-core
Category: Energy Systems
Sub Category: Energy System Modeling Frameworks
Keywords
cim energy-system extensible groovy java modular power-system-simulation power-systems powsybl
Keywords from Contributors
powerflow power-flow loadflow load-flow user-stories klu power-system-analysis power-system cgmes one-line-diagram
Last synced: 13 minutes ago
JSON representation
Repository metadata
A framework to build power system oriented software
- Host: GitHub
- URL: https://github.com/powsybl/powsybl-core
- Owner: powsybl
- License: mpl-2.0
- Created: 2017-09-29T14:51:18.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-04-29T09:05:27.000Z (1 day ago)
- Last Synced: 2025-04-29T10:23:20.828Z (1 day ago)
- Topics: cim, energy-system, extensible, groovy, java, modular, power-system-simulation, power-systems, powsybl
- Language: Java
- Homepage: https://www.powsybl.org
- Size: 53.4 MB
- Stars: 133
- Watchers: 21
- Forks: 45
- Open Issues: 320
- Releases: 109
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Security: security-analysis/pom.xml
README.md
PowSyBl Core
PowSyBl (Power System Blocks) is an open source framework written in Java, that makes it easy to write complex
software for power systems’ simulations and analysis. Its modular approach allows developers to extend or customize its
features.
PowSyBl is part of the LF Energy Foundation, a project of The Linux Foundation that supports open source innovation projects
within the energy and electricity sectors.
Read more at https://www.powsybl.org !
This project and everyone participating in it is governed by the PowSyBl Code of Conduct.
By participating, you are expected to uphold this code. Please report unacceptable behavior to powsybl-tsc@lists.lfenergy.org.
PowSyBl vs PowSyBl Core
This document describes how to build the code of PowSyBl Core. If you just want to run PowSyBl demos, please visit
https://www.powsybl.org/ where downloads will be available soon. If you want guidance on how to start building your own
application based on PowSyBl, please visit the tutorials page.
The PowSyBl Core project is not a standalone project. Read on to learn how to modify the core code, be it for fun, for
diagnosing bugs, for improving your understanding of the framework, or for preparing pull requests to suggest improvements!
PowSyBl Core provides library code to build all kinds of applications for power systems: a complete and extendable grid
model, support for common exchange formats, APIs for power simulations an analysis, and support for local or distributed
computations. For deployment, powsybl-core also provides iTools, a tool to build cross-platform integrated command-line
applications. To build cross-platform graphical applications, please visit the PowSyBl GSE repository
https://github.com/powsybl/powsybl-gse page.
Environment requirements
Powsybl-core project is fully written in Java, so you only need few requirements:
- JDK (17 or greater)
- Maven (3.8.1 or greater) - you could use the embedded maven wrapper instead if you prefer (see Using Maven Wrapper)
To run all the tests, simply launch the following command from the root of the repository:
$> mvn package
Modify some existing tests or create your own new tests to experiment with the framework! If it suits you better, import
the project in an IDE and use the IDE to launch your own main classes. If you know java and maven and want to do things
manually, you can also use maven directly to compute the classpath of all the project jars and run anything you want with it.
Read Contributing.md for more in-depth explanations
on how to run code.
Read Install to generate an installed iTools distribution, a standalone external folder that contains all
the built objects required to run powsybl programs.
Build the documentation
To locally build the readthedocs documentation follow the instructions in the documentation README page.
Install
An iTools distribution can be generated and installed. The installation is a standalone external folder that contains all
the built objects required to run powsybl programs through the itools command-line interface. This repository contains
the install.sh
script to do so easily. By default, the install.sh
will compile code and copy the resulting iTools
distribution to the install folder.
$> ./install.sh
A more detailled description of the install.sh script options follows:
Targets
Target | Description |
---|---|
clean | Clean modules |
compile | Compile modules |
package | Compile modules and create a distributable package |
install | Compile modules and install it |
docs | Generate the documentation (Javadoc) |
help | Display this help |
Options
The install.sh script options are saved in the install.cfg configuration file. This configuration file is loaded and
updated each time you use the install.sh
script.
Global options
Option | Description | Default value |
---|---|---|
--help | Display this help | |
--prefix | Set the installation directory | $HOME/powsybl |
--mvn | Set the maven command to use | mvn |
Default configuration file
# -- Global options --
powsybl_prefix=$HOME/powsybl
powsybl_mvn=mvn
Using Maven Wrapper
If you don't have a proper Maven installed, you could use the Apache Maven Wrapper
scripts provided. They will download a compatible maven distribution and use it automatically.
Configuration
Configure the access to the maven distributions
In order to work properly, Maven Wrapper needs to download 2 artifacts: the maven distribution and the maven wrapper
distribution. By default, these are downloaded from the online Maven repository, but you could use an internal repository instead.
Using a Maven Repository Manager
If you prefer to use an internal Maven Repository Manager instead of retrieving the artefacts from the internet, you should define the following variable in your environment:
MVNW_REPOURL
: the URL to your repository manager (for instancehttps://my_server/repository/maven-public
)
Note that if you need to use this variable, it must be set for each maven command. Else, the Maven Wrapper will try to
retrieve the maven distribution from the online Maven repository (even if one was already downloaded from another location).
Using a proxy to access the Internet
If you don't use an internal Maven Repository, and need to use a proxy to access the Internet, you should:
-
configure the proxy in your terminal (on Linux/MacOS, you can do it via the
http_proxy
andhttps_proxy
environment variables).
This is needed to download the Maven Wrapper distribution ; -
execute at least once the following command:
./mvnw -DproxyHost=XXX -DproxyPort=XXX -Dhttp.proxyUser=XXX -Dhttp.proxyPassword=XXX -Djdk.http.auth.tunneling.disabledSchemes= clean
Notes:
- The 4
XXX
occurrences should be replaced with your configuration; - The
-Djdk.http.auth.tunneling.disabledSchemes=
option should be left empty; - Windows users should use
mvnw.cmd
instead of./mvnw
.
This second step is required to download the Maven distribution.
Once both distributions are retrieved, the proxy configuration isn't needed anymore to use ./mvnw
or mvnw.cmd
commands.
Checking your access configuration
You could check your configuration with the following command:
./mvnw -version
If you encounter any problem, you could specify MVNW_VERBOSE=true
and relaunch the command to have
further information.
install.sh
to use maven wrapper
Configuring To indicate install.sh
to use Maven Wrapper, you need to configure it with the --mvn
option:
./install.sh clean --mvn ./mvnw
You can revert this configuration with the following command:
./install.sh clean --mvn mvn
Usage
Once the configuration is done, you just need to use ./mvnw
instead of mvn
in your commands.
Owner metadata
- Name: PowSyBl
- Login: powsybl
- Email:
- Kind: organization
- Description: Power System Blocks
- Website: https://www.powsybl.org
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/29916668?v=4
- Repositories: 40
- Last ynced at: 2023-03-02T12:15:33.356Z
- Profile URL: https://github.com/powsybl
GitHub Events
Total
- Fork event: 8
- Create event: 174
- Release event: 5
- Issues event: 76
- Watch event: 9
- Delete event: 122
- Member event: 6
- Issue comment event: 1259
- Push event: 1310
- Gollum event: 43
- Pull request review event: 884
- Pull request review comment event: 796
- Pull request event: 293
Last Year
- Fork event: 8
- Create event: 174
- Release event: 5
- Issues event: 76
- Watch event: 9
- Delete event: 122
- Member event: 6
- Issue comment event: 1259
- Push event: 1310
- Gollum event: 43
- Pull request review event: 884
- Pull request review comment event: 796
- Pull request event: 293
Committers metadata
Last synced: 7 days ago
Total Commits: 2,946
Total Committers: 114
Avg Commits per committer: 25.842
Development Distribution Score (DDS): 0.799
Commits in past year: 288
Committers in past year: 43
Avg Commits per committer in past year: 6.698
Development Distribution Score (DDS) in past year: 0.889
Name | Commits | |
---|---|---|
Geoffroy Jamgotchian | g****n@r****m | 593 |
MioRtia | m****a@r****m | 351 |
Mathieu BAGUE | m****e@r****m | 333 |
Luma | z****m@a****s | 222 |
marqueslanauja | 5****a | 141 |
Florian Dupuy | 6****p | 118 |
Coline Piloquet | 5****t | 79 |
Jon Harper | j****7@g****m | 78 |
Olivier Perrin | o****n@r****m | 74 |
yichen88 | 3****8 | 68 |
Anne Tilloy | 4****l | 67 |
Sylvain Leclerc | s****c@r****m | 53 |
EtienneLt | 3****t | 48 |
Thomas ADAM | 5****0 | 45 |
Massimo Ferraro | m****o@t****u | 45 |
Christian Biasuzzi | c****i@q****m | 43 |
Nicolas Rol | n****l@r****m | 41 |
Sébastien Murgey | s****y@r****m | 32 |
marcosmc | d****m@a****s | 26 |
rcourtier | 1****r | 26 |
Bertrand Rix | b****x@g****m | 22 |
jeandemanged | d****e@a****m | 22 |
Aplicaciones en Informática Avanzada | m****a@a****s | 20 |
Paul Bui-Quang | p****g@r****m | 18 |
jlabous | 5****s | 17 |
Lisrte | l****l@r****m | 16 |
calinbanc | 3****c | 15 |
Sophie Frasnedo | 9****s | 14 |
HugoKulesza | 9****a | 13 |
dependabot[bot] | 4****] | 12 |
and 84 more... |
Committer domains:
- rte-france.com: 22
- aia.es: 3
- quinary.com: 2
- techrain.eu: 2
- ntis.zcu.cz: 1
- rse-web.it: 1
- orange.fr: 1
- mailbox.org: 1
- grnatl0255.bureau.si.interne: 1
- ee-ik303.ic.ac.uk: 1
- falcon.grupoaia.es: 1
- telecom-paristech.fr: 1
- ensi-uma.tn: 1
- techrain.it: 1
- artelys.com: 1
Issue and Pull Request metadata
Last synced: 1 day ago
Total issues: 613
Total pull requests: 2,951
Average time to close issues: 11 months
Average time to close pull requests: 23 days
Total issue authors: 75
Total pull request authors: 107
Average comments per issue: 1.12
Average comments per pull request: 1.74
Merged pull request: 2,475
Bot issues: 0
Bot pull requests: 18
Past year issues: 105
Past year pull requests: 390
Past year average time to close issues: about 2 months
Past year average time to close pull requests: 19 days
Past year issue authors: 27
Past year pull request authors: 42
Past year average comments per issue: 0.6
Past year average comments per pull request: 1.63
Past year merged pull request: 263
Past year bot issues: 0
Past year bot pull requests: 3
Top Issue Authors
- mathbagu (82)
- geofjamg (64)
- miovd (63)
- sylvlecl (62)
- annetill (44)
- jonenst (33)
- zamarrenolm (31)
- alicecaron (23)
- flo-dup (23)
- jeandemanged (18)
- So-Fras (13)
- murgeyseb (9)
- rcourtier (9)
- Hadrien-Godard (8)
- tadam50 (8)
Top Pull Request Authors
- geofjamg (404)
- miovd (396)
- zamarrenolm (245)
- mathbagu (220)
- marqueslanauja (171)
- flo-dup (151)
- colinepiloquet (104)
- olperr1 (95)
- jonenst (93)
- annetill (72)
- yichen88 (72)
- rolnico (64)
- EtienneLt (62)
- sylvlecl (58)
- tadam50 (55)
Top Issue Labels
- bug (128)
- IIDM (89)
- CGMES (59)
- enhancement (52)
- Release 06/2025 (49)
- good first issue (24)
- Refactoring (21)
- Security Analysis (17)
- XIIDM (15)
- Feature (14)
- Release 03/2025 (11)
- UCTE (11)
- Performance (9)
- new version XIIDM/JIIDM (9)
- Configuration (9)
- Action DSL (8)
- Breaking Change (8)
- :thumbsup: Top Issue! (7)
- December 2024 release (7)
- Release 09/2025 (7)
- question (6)
- iTools (5)
- Reporter (5)
- AMPL (4)
- Sensitivity (4)
- help wanted (4)
- PSS/E (4)
- PowerFactory (4)
- CIM (3)
- Time series (3)
Top Pull Request Labels
- PR: ready-to-be-merged (705)
- CGMES (373)
- Breaking Change (328)
- bug (317)
- PR: next-release (261)
- IIDM (218)
- PR: waiting-for-review (154)
- Release 03/2025 (80)
- XIIDM (77)
- Doc needed (64)
- June release (55)
- March release (52)
- Release 06/2025 (48)
- extensions (46)
- December 2024 release (39)
- Documentation (39)
- January release (39)
- December release (39)
- UCTE (37)
- PR: do-not-merge (35)
- October 2024 release (34)
- Refactoring (33)
- Deprecated (29)
- PSS/E (27)
- dependencies (27)
- Quality (25)
- Modification (20)
- AFS (18)
- 1EQ 24SSH (18)
- Security Analysis (17)
Package metadata
- Total packages: 100
- Total downloads: unknown
- Total docker downloads: 249,627
- Total dependent packages: 1,616 (may contain duplicates)
- Total dependent repositories: 576 (may contain duplicates)
- Total versions: 8,310
repo1.maven.org: com.powsybl:powsybl-iidm-impl
An IIDM implementation
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-impl/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:11.688Z (1 day ago)
- Versions: 109
- Dependent Packages: 146
- Dependent Repositories: 40
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 0.506%
- Docker downloads count: 3.389%
- Dependent repos count: 3.494%
- Average: 11.985%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-api
An API to describe the network model
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:33.072Z (1 day ago)
- Versions: 109
- Dependent Packages: 101
- Dependent Repositories: 28
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 0.717%
- Docker downloads count: 3.389%
- Dependent repos count: 4.369%
- Average: 12.202%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-commons
A set of miscellaneous utility classes
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-commons/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:33.603Z (1 day ago)
- Versions: 109
- Dependent Packages: 109
- Dependent Repositories: 27
- Docker Downloads: 11,729
-
Rankings:
- Dependent packages count: 0.672%
- Docker downloads count: 3.386%
- Dependent repos count: 4.48%
- Average: 12.214%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-xml-converter
A XML converter implementation for IIDM networks
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-xml-converter/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.0.3 (published over 1 year ago)
- Last Synced: 2025-04-29T16:35:33.784Z (1 day ago)
- Versions: 84
- Dependent Packages: 86
- Dependent Repositories: 28
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 0.821%
- Docker downloads count: 3.389%
- Dependent repos count: 4.369%
- Average: 12.223%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-config-classic
Classic Config Provider
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-config-classic/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:49.543Z (1 day ago)
- Versions: 96
- Dependent Packages: 29
- Dependent Repositories: 44
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 2.202%
- Dependent repos count: 3.277%
- Docker downloads count: 3.389%
- Average: 12.28%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-test
A set of network models for testing
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-test/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:48.921Z (1 day ago)
- Versions: 109
- Dependent Packages: 65
- Dependent Repositories: 29
- Docker Downloads: 6,445
-
Rankings:
- Dependent packages count: 1.072%
- Docker downloads count: 3.652%
- Dependent repos count: 4.282%
- Average: 12.308%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-ucte-converter
A converter implementation for UCTE networks
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-ucte-converter/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:32.128Z (1 day ago)
- Versions: 109
- Dependent Packages: 59
- Dependent Repositories: 20
- Docker Downloads: 5,807
-
Rankings:
- Dependent packages count: 1.146%
- Docker downloads count: 3.675%
- Dependent repos count: 5.351%
- Average: 12.541%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-tools
The powsybl command line tool
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-tools/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:33.296Z (1 day ago)
- Versions: 109
- Dependent Packages: 39
- Dependent Repositories: 13
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 1.703%
- Docker downloads count: 3.389%
- Dependent repos count: 6.735%
- Average: 12.872%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-loadflow-api
An API and a tool to run load-flow computations
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-loadflow-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:49.526Z (1 day ago)
- Versions: 109
- Dependent Packages: 48
- Dependent Repositories: 11
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 1.407%
- Docker downloads count: 3.389%
- Dependent repos count: 7.373%
- Average: 12.941%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-converter-api
An API to import and export IIDM networks
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-converter-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 4.10.2 (published over 2 years ago)
- Last Synced: 2025-04-29T16:35:32.428Z (1 day ago)
- Versions: 65
- Dependent Packages: 51
- Dependent Repositories: 9
- Docker Downloads: 4,745
-
Rankings:
- Dependent packages count: 1.307%
- Docker downloads count: 3.676%
- Dependent repos count: 8.129%
- Average: 13.129%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-triple-store-impl-rdf4j
Triple store implementation using RDF4J
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-triple-store-impl-rdf4j/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:12.812Z (1 day ago)
- Versions: 105
- Dependent Packages: 26
- Dependent Repositories: 17
- Docker Downloads: 1,212
-
Rankings:
- Dependent packages count: 2.553%
- Docker downloads count: 4.72%
- Dependent repos count: 5.842%
- Average: 13.13%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-contingency-api
An API to describe and trigger contingencies
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-contingency-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:48.692Z (1 day ago)
- Versions: 109
- Dependent Packages: 30
- Dependent Repositories: 10
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 2.127%
- Docker downloads count: 3.389%
- Dependent repos count: 7.732%
- Average: 13.156%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cgmes-conversion
Conversion between CGMES and IIDM Network definitions
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes-conversion/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:34.436Z (1 day ago)
- Versions: 105
- Dependent Packages: 22
- Dependent Repositories: 17
- Docker Downloads: 1,212
-
Rankings:
- Dependent packages count: 2.866%
- Docker downloads count: 4.72%
- Dependent repos count: 5.842%
- Average: 13.192%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-extensions
A set of IIDM common extensions
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-extensions/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:12.165Z (1 day ago)
- Versions: 98
- Dependent Packages: 29
- Dependent Repositories: 8
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 2.275%
- Docker downloads count: 3.389%
- Dependent repos count: 8.62%
- Average: 13.363%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cgmes-model
CGMES (Common Grid Model Exchange Specification) network model implemented using a triple store
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes-model/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:19.152Z (1 day ago)
- Versions: 105
- Dependent Packages: 16
- Dependent Repositories: 12
- Docker Downloads: 1,212
-
Rankings:
- Dependent packages count: 3.856%
- Docker downloads count: 4.72%
- Dependent repos count: 6.999%
- Average: 13.622%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-security-analysis-api
An API, an implementation and a tool to run security analysis
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-security-analysis-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:25.830Z (1 day ago)
- Versions: 108
- Dependent Packages: 21
- Dependent Repositories: 7
- Docker Downloads: 9,730
-
Rankings:
- Dependent packages count: 2.995%
- Docker downloads count: 3.433%
- Dependent repos count: 9.197%
- Average: 13.632%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-sensitivity-analysis-api
An API, and a tool to run sensitivity analysis
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-sensitivity-analysis-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:49.078Z (1 day ago)
- Versions: 87
- Dependent Packages: 22
- Dependent Repositories: 6
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 2.866%
- Docker downloads count: 3.389%
- Dependent repos count: 9.932%
- Average: 13.744%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-config-test
Classes to mock the config during tests
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-config-test/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:04.600Z (1 day ago)
- Versions: 96
- Dependent Packages: 151
- Dependent Repositories: 47
-
Rankings:
- Dependent packages count: 0.487%
- Dependent repos count: 3.149%
- Average: 14.042%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-computation-local
A computation implementation to run computations locally
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-computation-local/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:47.828Z (1 day ago)
- Versions: 109
- Dependent Packages: 14
- Dependent Repositories: 5
- Docker Downloads: 10,016
-
Rankings:
- Docker downloads count: 3.389%
- Dependent packages count: 4.387%
- Dependent repos count: 10.844%
- Average: 14.231%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-time-series-api
Time series API
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-time-series-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:06.136Z (1 day ago)
- Versions: 106
- Dependent Packages: 12
- Dependent Repositories: 6
- Docker Downloads: 5,654
-
Rankings:
- Docker downloads count: 3.849%
- Dependent packages count: 5.058%
- Dependent repos count: 9.932%
- Average: 14.274%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-computation
An API to run computations
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-computation/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:12.634Z (1 day ago)
- Versions: 109
- Dependent Packages: 27
- Dependent Repositories: 3
- Docker Downloads: 10,016
-
Rankings:
- Dependent packages count: 2.359%
- Docker downloads count: 3.389%
- Dependent repos count: 13.694%
- Average: 14.395%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-modification
The network modification API and a set of classes implementing it
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-modification/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:05.558Z (1 day ago)
- Versions: 59
- Dependent Packages: 11
- Dependent Repositories: 5
- Docker Downloads: 6,475
-
Rankings:
- Docker downloads count: 3.64%
- Dependent packages count: 5.472%
- Dependent repos count: 10.844%
- Average: 14.498%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-scripting
A tool to run scripts over powsybl
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-scripting/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:49.413Z (1 day ago)
- Versions: 109
- Dependent Packages: 14
- Dependent Repositories: 4
- Docker Downloads: 4,397
-
Rankings:
- Docker downloads count: 3.653%
- Dependent packages count: 4.387%
- Dependent repos count: 12.049%
- Average: 14.524%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-action-util
A set of DSL extensions and utility functions
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-action-util/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.2.4 (published about 1 year ago)
- Last Synced: 2025-04-29T16:35:10.525Z (1 day ago)
- Versions: 94
- Dependent Packages: 15
- Dependent Repositories: 4
- Docker Downloads: 6,314
-
Rankings:
- Docker downloads count: 3.676%
- Dependent packages count: 4.185%
- Dependent repos count: 12.125%
- Average: 14.548%
- Forks count: 26.04%
- Stargazers count: 26.714%
repo1.maven.org: com.powsybl:powsybl-iidm-mergingview
A network merging tool for IIDM model
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-mergingview/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 5.3.2 (published almost 2 years ago)
- Last Synced: 2025-04-29T16:34:47.699Z (1 day ago)
- Versions: 65
- Dependent Packages: 7
- Dependent Repositories: 11
- Docker Downloads: 1,174
-
Rankings:
- Docker downloads count: 4.774%
- Dependent repos count: 7.373%
- Dependent packages count: 8.26%
- Average: 14.588%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-math
A set of mathematical utilities
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-math/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:11.513Z (1 day ago)
- Versions: 109
- Dependent Packages: 16
- Dependent Repositories: 3
- Docker Downloads: 10,016
-
Rankings:
- Docker downloads count: 3.389%
- Dependent packages count: 3.856%
- Dependent repos count: 13.694%
- Average: 14.694%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-triple-store-api
Triple store API
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-triple-store-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:05.786Z (1 day ago)
- Versions: 105
- Dependent Packages: 11
- Dependent Repositories: 5
- Docker Downloads: 1,212
-
Rankings:
- Docker downloads count: 4.72%
- Dependent packages count: 5.472%
- Dependent repos count: 10.844%
- Average: 14.714%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-scripting
IIDM scripting support
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-scripting/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:49.069Z (1 day ago)
- Versions: 95
- Dependent Packages: 9
- Dependent Repositories: 4
- Docker Downloads: 4,397
-
Rankings:
- Docker downloads count: 3.653%
- Dependent packages count: 6.581%
- Dependent repos count: 12.049%
- Average: 14.963%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-entsoe-util
A set of utility classes to work with ENTSO-E files (UCTE-DEF, CIMv1, CGMES...)
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-entsoe-util/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:06.099Z (1 day ago)
- Versions: 109
- Dependent Packages: 6
- Dependent Repositories: 6
- Docker Downloads: 5,807
-
Rankings:
- Docker downloads count: 3.675%
- Dependent packages count: 9.557%
- Dependent repos count: 9.932%
- Average: 15.139%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-ucte-util
Utility classes for UCTE formatted network and files
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-ucte-util/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:05.534Z (1 day ago)
- Versions: 89
- Dependent Packages: 14
- Dependent Repositories: 2
- Docker Downloads: 9,493
-
Rankings:
- Docker downloads count: 3.418%
- Dependent packages count: 4.387%
- Average: 15.271%
- Dependent repos count: 16.016%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-loadflow-results-completion
A tool to complete load-flow results
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-loadflow-results-completion/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:05.929Z (1 day ago)
- Versions: 108
- Dependent Packages: 10
- Dependent Repositories: 2
- Docker Downloads: 8,542
-
Rankings:
- Docker downloads count: 3.504%
- Dependent packages count: 5.98%
- Average: 15.607%
- Dependent repos count: 16.016%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cgmes-extensions
A set of CGMES common extensions
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes-extensions/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.5.1 (published 6 months ago)
- Last Synced: 2024-12-01T00:31:58.020Z (5 months ago)
- Versions: 72
- Dependent Packages: 5
- Dependent Repositories: 5
- Docker Downloads: 3,941
-
Rankings:
- Docker downloads count: 3.857%
- Dependent repos count: 10.844%
- Dependent packages count: 11.32%
- Average: 15.711%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-action-dsl-spi
A set of interfaces to extend the DSL
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-action-dsl-spi/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.2.4 (published about 1 year ago)
- Last Synced: 2025-04-29T16:34:48.052Z (1 day ago)
- Versions: 94
- Dependent Packages: 8
- Dependent Repositories: 2
- Docker Downloads: 6,314
-
Rankings:
- Docker downloads count: 3.662%
- Dependent packages count: 7.339%
- Average: 15.91%
- Dependent repos count: 16.016%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-core
A framework to build power system oriented software
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-core/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:05.146Z (1 day ago)
- Versions: 109
- Dependent Packages: 14
- Dependent Repositories: 12
-
Rankings:
- Dependent packages count: 4.387%
- Dependent repos count: 6.999%
- Average: 15.98%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cgmes-conformity
Test module using ENTSO-E CGMES conformity configurations
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes-conformity/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:48.029Z (1 day ago)
- Versions: 105
- Dependent Packages: 11
- Dependent Repositories: 10
-
Rankings:
- Dependent packages count: 5.472%
- Dependent repos count: 7.732%
- Average: 16.434%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-ieee-cdf-converter
IEEE Common Data Format to IIDM converter
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-ieee-cdf-converter/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:06.589Z (1 day ago)
- Versions: 95
- Dependent Packages: 10
- Dependent Repositories: 13
-
Rankings:
- Dependent packages count: 6.581%
- Dependent repos count: 6.735%
- Average: 16.462%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-loadflow-validation
A tool to check the load-flow results
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-loadflow-validation/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:33.233Z (1 day ago)
- Versions: 109
- Dependent Packages: 9
- Dependent Repositories: 1
- Docker Downloads: 8,542
-
Rankings:
- Docker downloads count: 3.504%
- Dependent packages count: 6.581%
- Average: 16.655%
- Dependent repos count: 20.658%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-security-analysis-default
A default implementation to run security analysis
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-security-analysis-default/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:33.831Z (1 day ago)
- Versions: 72
- Dependent Packages: 3
- Dependent Repositories: 2
-
Rankings:
- Dependent repos count: 16.016%
- Average: 16.672%
- Dependent packages count: 17.328%
repo1.maven.org: com.powsybl:powsybl-shortcircuit-api
An API to run three-phase short-circuit analysis
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-shortcircuit-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:04.507Z (1 day ago)
- Versions: 59
- Dependent Packages: 5
- Dependent Repositories: 3
- Docker Downloads: 5,302
-
Rankings:
- Docker downloads count: 3.684%
- Dependent repos count: 13.694%
- Dependent packages count: 13.75%
- Average: 16.732%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-ucte-network
UCTE-DEF network model
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-ucte-network/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:26.025Z (1 day ago)
- Versions: 109
- Dependent Packages: 6
- Dependent Repositories: 1
- Docker Downloads: 9,779
-
Rankings:
- Docker downloads count: 3.407%
- Dependent packages count: 9.557%
- Average: 17.231%
- Dependent repos count: 20.658%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-matpower-converter
MATPOWER Format to IIDM converter
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-matpower-converter/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:10.646Z (1 day ago)
- Versions: 90
- Dependent Packages: 6
- Dependent Repositories: 9
-
Rankings:
- Dependent repos count: 8.129%
- Dependent packages count: 9.557%
- Average: 17.555%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-action-dsl
A DSL to describe actions, rules and access to network equipments
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-action-dsl/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.2.4 (published about 1 year ago)
- Last Synced: 2024-12-01T00:39:35.829Z (5 months ago)
- Versions: 94
- Dependent Packages: 10
- Dependent Repositories: 4
-
Rankings:
- Dependent packages count: 5.98%
- Dependent repos count: 12.049%
- Average: 17.641%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-ampl-converter
A converter implementation based on CSV-like files
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-ampl-converter/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:19.385Z (1 day ago)
- Versions: 109
- Dependent Packages: 9
- Dependent Repositories: 5
-
Rankings:
- Dependent packages count: 7.339%
- Dependent repos count: 10.844%
- Average: 17.679%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-contingency-dsl
A DSL to describe contingency
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-contingency-dsl/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:12.309Z (1 day ago)
- Versions: 105
- Dependent Packages: 7
- Dependent Repositories: 5
-
Rankings:
- Dependent packages count: 8.26%
- Dependent repos count: 10.844%
- Average: 17.909%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-sensitivity-api
An API, and a tool to run sensitivity computation
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-sensitivity-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 3.6.0 (published over 4 years ago)
- Last Synced: 2025-04-29T16:35:04.797Z (1 day ago)
- Versions: 20
- Dependent Packages: 18
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 3.362%
- Forks count: 18.006%
- Average: 18.103%
- Stargazers count: 19.063%
- Dependent repos count: 31.98%
repo1.maven.org: com.powsybl:powsybl-dynamic-simulation-api
An API and a tool to run dynamic simulation computations
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-dynamic-simulation-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:32.692Z (1 day ago)
- Versions: 95
- Dependent Packages: 8
- Dependent Repositories: 3
-
Rankings:
- Dependent packages count: 7.339%
- Dependent repos count: 13.694%
- Average: 18.391%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-tck
The IIDM Technology Compatibility Kit
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-tck/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:50.356Z (1 day ago)
- Versions: 94
- Dependent Packages: 6
- Dependent Repositories: 4
-
Rankings:
- Dependent packages count: 9.557%
- Dependent repos count: 12.049%
- Average: 18.535%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-reducer
A network reducer for IIDM model
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-reducer/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:50.172Z (1 day ago)
- Versions: 104
- Dependent Packages: 6
- Dependent Repositories: 4
-
Rankings:
- Dependent packages count: 9.557%
- Dependent repos count: 12.049%
- Average: 18.535%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-psse-converter
PSSE Data Format to IIDM converter
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-psse-converter/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:11.483Z (1 day ago)
- Versions: 90
- Dependent Packages: 6
- Dependent Repositories: 4
-
Rankings:
- Dependent packages count: 9.557%
- Dependent repos count: 12.049%
- Average: 18.535%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-dynamic-simulation-dsl
DSL for dynamic simulations
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-dynamic-simulation-dsl/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:11.181Z (1 day ago)
- Versions: 90
- Dependent Packages: 7
- Dependent Repositories: 3
-
Rankings:
- Dependent packages count: 8.26%
- Dependent repos count: 13.694%
- Average: 18.622%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-commons-test
A set of miscellaneous utility classes for testing
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-commons-test/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:34.331Z (1 day ago)
- Versions: 42
- Dependent Packages: 53
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 1.785%
- Average: 18.744%
- Dependent repos count: 20.658%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-triple-store-impl-blazegraph
Triple store implementation using Blazegraph
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-triple-store-impl-blazegraph/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 4.1.2 (published about 4 years ago)
- Last Synced: 2025-04-29T16:35:34.240Z (1 day ago)
- Versions: 31
- Dependent Packages: 9
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.414%
- Forks count: 18.006%
- Average: 18.866%
- Stargazers count: 19.063%
- Dependent repos count: 31.98%
repo1.maven.org: com.powsybl:powsybl-powerfactory-dgs
PowerFactory DGS file support
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-powerfactory-dgs/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:48.712Z (1 day ago)
- Versions: 59
- Dependent Packages: 5
- Dependent Repositories: 4
-
Rankings:
- Dependent packages count: 11.32%
- Dependent repos count: 12.049%
- Average: 18.976%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cgmes-model-test
CGMES network model for testing
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes-model-test/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:08.430Z (1 day ago)
- Versions: 42
- Dependent Packages: 7
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 8.051%
- Forks count: 18.195%
- Average: 19.464%
- Stargazers count: 19.629%
- Dependent repos count: 31.98%
repo1.maven.org: com.powsybl:powsybl-tools-test
Utilities for command line tool testing
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-tools-test/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:48.423Z (1 day ago)
- Versions: 42
- Dependent Packages: 16
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 5.058%
- Average: 19.563%
- Dependent repos count: 20.658%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-powerfactory-converter
PowerFactory to IIDM converter
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-powerfactory-converter/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:32.704Z (1 day ago)
- Versions: 59
- Dependent Packages: 4
- Dependent Repositories: 4
-
Rankings:
- Dependent repos count: 12.049%
- Dependent packages count: 13.75%
- Average: 19.583%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-dsl
A framework to build power system oriented software
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-dsl/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:06.380Z (1 day ago)
- Versions: 105
- Dependent Packages: 10
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 5.98%
- Average: 19.793%
- Dependent repos count: 20.658%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-triple-store-impl-jena
Triple store implementation using Jena
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-triple-store-impl-jena/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 4.8.0 (published about 3 years ago)
- Last Synced: 2025-04-29T16:34:48.507Z (1 day ago)
- Versions: 52
- Dependent Packages: 9
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 6.581%
- Average: 19.943%
- Dependent repos count: 20.658%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-powerfactory-model
PowerFactory data model
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-powerfactory-model/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.5.1 (published 6 months ago)
- Last Synced: 2024-12-01T00:20:38.639Z (5 months ago)
- Versions: 54
- Dependent Packages: 5
- Dependent Repositories: 2
-
Rankings:
- Dependent packages count: 11.32%
- Dependent repos count: 16.016%
- Average: 19.967%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-matpower-model
MATPOWER model
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-matpower-model/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:50.219Z (1 day ago)
- Versions: 90
- Dependent Packages: 5
- Dependent Repositories: 2
-
Rankings:
- Dependent packages count: 11.32%
- Dependent repos count: 16.016%
- Average: 19.967%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-util
A set of utility classes over the IIDM API
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-util/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 3.8.1 (published about 4 years ago)
- Last Synced: 2025-04-29T16:35:32.709Z (1 day ago)
- Versions: 28
- Dependent Packages: 5
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 11.045%
- Forks count: 18.006%
- Stargazers count: 19.063%
- Average: 20.023%
- Dependent repos count: 31.98%
repo1.maven.org: com.powsybl:powsybl-action-simulator
A tool to run simulations with preventive or curative actions
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-action-simulator/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.2.4 (published about 1 year ago)
- Last Synced: 2025-04-29T16:35:04.862Z (1 day ago)
- Versions: 94
- Dependent Packages: 4
- Dependent Repositories: 2
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 16.016%
- Average: 20.575%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-ieee-cdf-model
IEEE Common Data Format model
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-ieee-cdf-model/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:05.040Z (1 day ago)
- Versions: 95
- Dependent Packages: 5
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 11.32%
- Dependent repos count: 20.658%
- Average: 21.128%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-simulation-api
The time domain simulation API
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-simulation-api/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 4.0.1 (published about 4 years ago)
- Last Synced: 2025-04-29T16:34:50.649Z (1 day ago)
- Versions: 32
- Dependent Packages: 5
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 11.32%
- Dependent repos count: 20.658%
- Average: 21.128%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-psse-model
PSS/E raw format data model
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-psse-model/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:10.766Z (1 day ago)
- Versions: 93
- Dependent Packages: 5
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 11.32%
- Dependent repos count: 20.658%
- Average: 21.128%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-scripting-test
Utility classes for script testing
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-scripting-test/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:11.046Z (1 day ago)
- Versions: 42
- Dependent Packages: 3
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 16.904%
- Forks count: 18.195%
- Stargazers count: 19.629%
- Average: 21.677%
- Dependent repos count: 31.98%
repo1.maven.org: com.powsybl:powsybl-psse-model-test
PSS/E raw format test data model
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-psse-model-test/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:48.524Z (1 day ago)
- Versions: 42
- Dependent Packages: 3
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 16.904%
- Forks count: 18.195%
- Stargazers count: 19.629%
- Average: 21.677%
- Dependent repos count: 31.98%
repo1.maven.org: com.powsybl:powsybl-security-analysis-afs
Security analysis runner AFS file, and security analysis service interface
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-security-analysis-afs/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 3.0.0 (published over 5 years ago)
- Last Synced: 2025-04-29T16:35:32.014Z (1 day ago)
- Versions: 13
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 20.658%
- Average: 21.735%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-loadflow-scripting
Use loadflow API in scripts
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-loadflow-scripting/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:25.831Z (1 day ago)
- Versions: 95
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 20.658%
- Average: 21.735%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cim-anonymiser
A tool to anonymize a CIM or CGMES file
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cim-anonymiser/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:19.360Z (1 day ago)
- Versions: 109
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 20.658%
- Average: 21.735%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cim1-converter
A converter implementation for CIM ENTSO-E V1 networks
- Homepage: http://www.powsybl.com
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cim1-converter/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 2.4.1 (published about 6 years ago)
- Last Synced: 2025-04-29T16:35:33.295Z (1 day ago)
- Versions: 8
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 20.658%
- Average: 21.735%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cgmes-model-alternatives
Test module to explore performance of alternative queries
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes-model-alternatives/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:12.695Z (1 day ago)
- Versions: 105
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 20.658%
- Average: 21.735%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-triple-store-test
Test for triple store implementations
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-triple-store-test/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:49.965Z (1 day ago)
- Versions: 105
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 20.658%
- Average: 21.735%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-security-analysis
Security Analysis aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-security-analysis/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:11.858Z (1 day ago)
- Versions: 94
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 20.658%
- Average: 21.735%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm-comparator
A utility class to compare two IIDM network states
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm-comparator/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:33.859Z (1 day ago)
- Versions: 96
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 20.658%
- Average: 21.735%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-dynamic-simulation-tool
Tools to run dynamic simulation computations
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-dynamic-simulation-tool/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:50.171Z (1 day ago)
- Versions: 90
- Dependent Packages: 4
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 13.75%
- Dependent repos count: 20.658%
- Average: 21.802%
- Stargazers count: 26.347%
- Forks count: 26.453%
repo1.maven.org: com.powsybl:powsybl-security-analysis-afs-local
Local implementation of security analysis service.
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-security-analysis-afs-local/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 3.0.0 (published over 5 years ago)
- Last Synced: 2025-04-29T16:35:32.715Z (1 day ago)
- Versions: 13
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-triple-store
Triple store API and implementations
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-triple-store/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:33.420Z (1 day ago)
- Versions: 105
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-action
Action aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-action/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.2.4 (published about 1 year ago)
- Last Synced: 2025-04-29T16:35:33.573Z (1 day ago)
- Versions: 94
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-ucte
UCTE aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-ucte/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:34.557Z (1 day ago)
- Versions: 109
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-matpower
MATPOWER Format parent project
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-matpower/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:32.028Z (1 day ago)
- Versions: 90
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-itools-packager-maven-plugin
iTools packager Maven plugin
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-itools-packager-maven-plugin/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:31.816Z (1 day ago)
- Versions: 107
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cgmes
CGMES aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:29.299Z (1 day ago)
- Versions: 105
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-distribution-core
powsybl-core distribution module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-distribution-core/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:28.915Z (1 day ago)
- Versions: 109
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-iidm
IIDM aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:34:49.665Z (1 day ago)
- Versions: 109
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-dynamic-simulation
Dynamic Simulation aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-dynamic-simulation/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:22.354Z (1 day ago)
- Versions: 95
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-ieee-cdf
IEEE Common Data Format parent project
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-ieee-cdf/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:10.901Z (1 day ago)
- Versions: 95
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-contingency
Contingency aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-contingency/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:11.698Z (1 day ago)
- Versions: 105
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-loadflow
Load-flow aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-loadflow/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.5.1 (published 6 months ago)
- Last Synced: 2024-12-01T00:40:04.371Z (5 months ago)
- Versions: 104
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-time-series
Time series aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-time-series/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:12.301Z (1 day ago)
- Versions: 106
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-psse
PSS/E raw format parent project
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-psse/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:12.003Z (1 day ago)
- Versions: 93
- Dependent Packages: 3
- Dependent Repositories: 1
-
Rankings:
- Dependent packages count: 17.328%
- Dependent repos count: 20.658%
- Average: 22.63%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cim1-model
CIM ENTSO-E V1 model generated by CIM Gateway tool
- Homepage: http://www.powsybl.com
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cim1-model/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 2.4.1 (published about 6 years ago)
- Last Synced: 2025-04-29T16:35:05.022Z (1 day ago)
- Versions: 8
- Dependent Packages: 2
- Dependent Repositories: 0
-
Rankings:
- Forks count: 18.006%
- Stargazers count: 19.063%
- Dependent packages count: 22.361%
- Average: 22.852%
- Dependent repos count: 31.98%
repo1.maven.org: com.powsybl:powsybl-cgmes-gl
Import export CGMES GL profiles
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes-gl/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:05.237Z (1 day ago)
- Versions: 53
- Dependent Packages: 2
- Dependent Repositories: 2
-
Rankings:
- Dependent repos count: 16.016%
- Average: 22.865%
- Dependent packages count: 22.91%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-time-series-dsl
Time series Groovy DSL
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-time-series-dsl/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:23.104Z (1 day ago)
- Versions: 62
- Dependent Packages: 2
- Dependent Repositories: 2
-
Rankings:
- Dependent repos count: 16.016%
- Average: 22.865%
- Dependent packages count: 22.91%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-cgmes-measurements
Allows to post process CGMES import to import measurements
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes-measurements/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:12.004Z (1 day ago)
- Versions: 66
- Dependent Packages: 2
- Dependent Repositories: 1
-
Rankings:
- Dependent repos count: 20.658%
- Dependent packages count: 22.91%
- Average: 24.025%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-computation-local-test
Some utilities for local computation manager testing
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-computation-local-test/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:10.751Z (1 day ago)
- Versions: 42
- Dependent Packages: 2
- Dependent Repositories: 1
-
Rankings:
- Dependent repos count: 20.658%
- Dependent packages count: 22.91%
- Average: 24.025%
- Forks count: 25.901%
- Stargazers count: 26.632%
repo1.maven.org: com.powsybl:powsybl-powerfactory
PowerFactory parent project
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-powerfactory/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:13.649Z (1 day ago)
- Versions: 59
- Dependent Packages: 1
- Dependent Repositories: 1
-
Rankings:
- Dependent repos count: 20.658%
- Forks count: 25.901%
- Average: 26.479%
- Stargazers count: 26.632%
- Dependent packages count: 32.725%
repo1.maven.org: com.powsybl:powsybl-powerfactory-db
PowerFactory DB reader
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-powerfactory-db/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 6.7.0 (published about 1 month ago)
- Last Synced: 2025-04-29T16:35:32.156Z (1 day ago)
- Versions: 53
- Dependent Packages: 1
- Dependent Repositories: 1
-
Rankings:
- Dependent repos count: 20.658%
- Forks count: 25.901%
- Average: 26.479%
- Stargazers count: 26.632%
- Dependent packages count: 32.725%
repo1.maven.org: com.powsybl:powsybl-bom
Powsybl Bill Of Material
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-bom/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 4.0.0-RC1 (published over 4 years ago)
- Last Synced: 2025-04-29T16:35:34.044Z (1 day ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 18.006%
- Stargazers count: 19.063%
- Average: 29.477%
- Dependent repos count: 31.98%
- Dependent packages count: 48.86%
repo1.maven.org: com.powsybl:powsybl-cim1
CIM1 aggregator module
- Homepage: http://www.powsybl.com
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cim1/
- Licenses: Mozilla Public License, Version 2.0
- Latest release: 2.4.1 (published about 6 years ago)
- Last Synced: 2025-04-29T16:35:17.336Z (1 day ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 18.006%
- Stargazers count: 19.063%
- Average: 29.477%
- Dependent repos count: 31.98%
- Dependent packages count: 48.86%
Score: 23.289973109292852