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 Dev Tools are components meant solely for debugging various PowSyBl components - in particular for Single Line Diagram and Network Area Diagram.
PowSyBl diagram-viewer Dev Tool is a JavaFX basic viewer used to display:
- the single line diagrams generated by Single Line Diagram
- the area diagrams generated by Network Area Diagram.
- Go to the diagram-viewer directory:
cd /path/to/diagram-viewer
- Launch the viewer by running
mvn javafx:run
- Select the file you want to import in the viewer
- Once the file is imported, select the substation or the voltage level you want to display; you should obtain something similar to the following screenshot:
Note: alternatively, you can launch the viewer by running DiagramViewer::main
with your favorite IDE.
To do that you need to:
- install JavaFX 21 or above
- add the following vm options in the launch configuration:
--module-path /path/to/javafx/lib --add-modules=javafx.controls,javafx.fxml,javafx.web