powsybl-core
A framework to build power system oriented software
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 117 committers (0.9%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.6%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
A framework to build power system oriented software
Basic Info
- Host: GitHub
- Owner: powsybl
- License: mpl-2.0
- Language: Java
- Default Branch: main
- Homepage: https://www.powsybl.org
- Size: 55.6 MB
Statistics
- Stars: 142
- Watchers: 22
- Forks: 48
- Open Issues: 308
- Releases: 114
Topics
Metadata Files
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 --
powsyblprefix=$HOME/powsybl powsyblmvn=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 instance https://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:
1. configure the proxy in your terminal (on Linux/MacOS, you can do it via the http_proxy and https_proxy environment variables).
This is needed to download the Maven Wrapper distribution ;
- execute at least once the following command:
shell ./mvnw -DproxyHost=XXX -DproxyPort=XXX -Dhttp.proxyUser=XXX -Dhttp.proxyPassword=XXX -Djdk.http.auth.tunneling.disabledSchemes= cleanNotes: - The 4
XXXoccurrences should be replaced with your configuration; - The
-Djdk.http.auth.tunneling.disabledSchemes=option should be left empty; - Windows users should use
mvnw.cmdinstead 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:
shell
./mvnw -version
If you encounter any problem, you could specify MVNW_VERBOSE=true and relaunch the command to have
further information.
Configuring install.sh to use maven wrapper
To indicate install.sh to use Maven Wrapper, you need to configure it with the --mvn option:
shell
./install.sh clean --mvn ./mvnw
You can revert this configuration with the following command:
shell
./install.sh clean --mvn mvn
Usage
Once the configuration is done, you just need to use ./mvnw instead of mvn in your commands.
Owner
- Name: PowSyBl
- Login: powsybl
- Kind: organization
- Website: https://www.powsybl.org
- Repositories: 40
- Profile: https://github.com/powsybl
Power System Blocks
GitHub Events
Total
- Fork event: 10
- Create event: 242
- Release event: 8
- Issues event: 113
- Watch event: 12
- Delete event: 180
- Member event: 6
- Issue comment event: 1,888
- Push event: 1,976
- Gollum event: 74
- Pull request review event: 1,385
- Pull request review comment event: 1,184
- Pull request event: 427
Last Year
- Fork event: 10
- Create event: 242
- Release event: 8
- Issues event: 113
- Watch event: 12
- Delete event: 180
- Member event: 6
- Issue comment event: 1,888
- Push event: 1,976
- Gollum event: 74
- Pull request review event: 1,385
- Pull request review comment event: 1,184
- Pull request event: 427
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Geoffroy Jamgotchian | g****n@r****m | 594 |
| MioRtia | m****a@r****m | 351 |
| Mathieu BAGUE | m****e@r****m | 333 |
| Luma | z****m@a****s | 224 |
| marqueslanauja | 5****a | 144 |
| Florian Dupuy | 6****p | 121 |
| Olivier Perrin | o****n@r****m | 92 |
| Coline Piloquet | 5****t | 84 |
| Jon Harper | j****7@g****m | 78 |
| yichen88 | 3****8 | 68 |
| Anne Tilloy | 4****l | 67 |
| Sylvain Leclerc | s****c@r****m | 53 |
| EtienneLt | 3****t | 52 |
| Nicolas Rol | n****l@r****m | 51 |
| Massimo Ferraro | m****o@t****u | 45 |
| Thomas ADAM | 5****0 | 45 |
| Christian Biasuzzi | c****i@q****m | 43 |
| rcourtier | 1****r | 33 |
| Sébastien Murgey | s****y@r****m | 32 |
| jeandemanged | d****e@a****m | 26 |
| marcosmc | d****m@a****s | 26 |
| Bertrand Rix | b****x@g****m | 22 |
| Lisrte | l****l@r****m | 21 |
| Aplicaciones en Informática Avanzada | m****a@a****s | 20 |
| Paul Bui-Quang | p****g@r****m | 18 |
| jlabous | 5****s | 17 |
| alicecaron | a****n@r****m | 17 |
| Sophie Frasnedo | 9****s | 17 |
| calinbanc | 3****c | 15 |
| Giovanni Ferrari | g****i@s****t | 14 |
| and 87 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 604
- Total pull requests: 3,402
- Average time to close issues: 11 months
- Average time to close pull requests: 26 days
- Total issue authors: 78
- Total pull request authors: 111
- Average comments per issue: 1.05
- Average comments per pull request: 1.69
- Merged pull requests: 2,811
- Bot issues: 0
- Bot pull requests: 24
Past Year
- Issues: 98
- Pull requests: 556
- Average time to close issues: about 2 months
- Average time to close pull requests: 22 days
- Issue authors: 26
- Pull request authors: 41
- Average comments per issue: 0.18
- Average comments per pull request: 1.37
- Merged pull requests: 359
- Bot issues: 0
- Bot pull requests: 6
Top Authors
Issue Authors
- mathbagu (82)
- geofjamg (64)
- miovd (62)
- sylvlecl (62)
- annetill (42)
- jonenst (33)
- alicecaron (26)
- zamarrenolm (26)
- flo-dup (20)
- jeandemanged (19)
- So-Fras (14)
- olperr1 (12)
- murgeyseb (9)
- rcourtier (9)
- tadam50 (8)
Pull Request Authors
- geofjamg (416)
- miovd (395)
- zamarrenolm (268)
- mathbagu (220)
- marqueslanauja (205)
- flo-dup (170)
- olperr1 (151)
- colinepiloquet (133)
- rolnico (108)
- jonenst (99)
- annetill (83)
- EtienneLt (80)
- yichen88 (72)
- rcourtier (66)
- sylvlecl (58)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 100
- Total downloads: unknown
- Total docker downloads: 239,611
-
Total dependent packages: 1,523
(may contain duplicates) -
Total dependent repositories: 548
(may contain duplicates) - Total versions: 8,758
- Total advisories: 4
proxy.golang.org: github.com/powsybl/powsybl-core
- Documentation: https://pkg.go.dev/github.com/powsybl/powsybl-core#section-documentation
- License: mpl-2.0
-
Latest release: v6.8.1+incompatible
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
Advisories (2)
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 4.10.2
published over 3 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
Advisories (1)
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.2.4
published almost 2 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 5.3.2
published over 2 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.5.1
published over 1 year ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.2.4
published almost 2 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.2.4
published almost 2 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 3.6.0
published over 5 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 4.8.0
published almost 4 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.5.1
published over 1 year ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 3.8.1
published about 5 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.2.4
published almost 2 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 4.0.1
published about 5 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 2.4.1
published almost 7 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 3.0.0
published over 6 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
repo1.maven.org: com.powsybl:powsybl-iidm
IIDM aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-iidm/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
repo1.maven.org: com.powsybl:powsybl-cgmes
CGMES aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 3.0.0
published over 6 years ago
Rankings
repo1.maven.org: com.powsybl:powsybl-action
Action aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-action/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.2.4
published almost 2 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.5.1
published over 1 year ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
repo1.maven.org: com.powsybl:powsybl-ucte
UCTE aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-ucte/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
repo1.maven.org: com.powsybl:powsybl-contingency
Contingency aggregator module
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-contingency/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 2.4.1
published almost 7 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
repo1.maven.org: com.powsybl:powsybl-cgmes-shortcircuit
CGMES importer for shortcircuit extensions
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cgmes-shortcircuit/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
repo1.maven.org: com.powsybl:powsybl-powerfactory
PowerFactory parent project
- Homepage: https://www.powsybl.org
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-powerfactory/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 6.8.1
published 7 months ago
Rankings
repo1.maven.org: com.powsybl:powsybl-cim1
CIM1 aggregator module
- Homepage: http://www.powsybl.com
- Documentation: https://appdoc.app/artifact/com.powsybl/powsybl-cim1/
- License: Mozilla Public License, Version 2.0
-
Latest release: 2.4.1
published almost 7 years ago
Rankings
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/
- License: Mozilla Public License, Version 2.0
-
Latest release: 4.0.0-RC1
published about 5 years ago