Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nrel-sienna/itlapp.jl
Interface Transfer Limit Calculation WebApp
https://github.com/nrel-sienna/itlapp.jl
Last synced: about 1 month ago
JSON representation
Interface Transfer Limit Calculation WebApp
- Host: GitHub
- URL: https://github.com/nrel-sienna/itlapp.jl
- Owner: NREL-Sienna
- License: bsd-3-clause
- Created: 2024-03-14T15:22:27.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-21T21:49:38.000Z (9 months ago)
- Last Synced: 2024-04-17T14:09:29.954Z (8 months ago)
- Language: CSS
- Size: 433 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ITLApp.jl
The `ITLApp.jl` package provides a GUI for calculating interface transfer limits with
[PowerSystems.jl](https://github.com/NREL-Sienna/PowerSystems.jl) and
[InterfaceLimits.jl](https://github.com/NREL-Sienna/InterfaceLimits.jl)
in a web app interface like the one shown here:![img](sys.png)
## Usage
```julia
julia> ]add https://github.com/nrel-sienna/ITLApp.jl
```### ITLApp
This application allows users to load a load flow case data and calculate interface transfer limits
in a web UI via Plotly Dash. Here's how to start it:```julia
julia> using ITLApp
julia> run_itl_app()
[ Info: Navigate browser to: http://0.0.0.0:8050
[ Info: Listening on: 0.0.0.0:8050
```Open your browser to the IP address and port listed. In this case: `http://0.0.0.0:8050`.
## Developers
Consult https://dash.plotly.com/julia for help extending the UI.
Set the environment variable `SIENNA_DEBUG` to enable hot-reloading of the UI.
Mac or Linux
```
$ export SIENNA_DEBUG=1
# or
$ SIENNA_DEBUG=1 julia --project src/itl_app.jl
```Windows PowerShell
```
$Env:SIENNA_DEBUG = "1"
```## License
PowerApps.jl is released under a BSD [license](https://github.com/NREL/ITLApp.jl/blob/master/LICENSE).
PowerApps.jl has been developed as part of the Sienna
ecosystem at the U.S. Department of Energy's National Renewable Energy Laboratory ([NREL](https://www.nrel.gov/)).