-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
# LinearPowerFlow.jl | ||
A simple, easy to use fixed-point linear power flow model based on [[1]](@ref). | ||
|
||
!!! NOTE this package is in the process of deprecation. | ||
The model will be a part of [BusInjectionModel.jl](https://github.com/NLaws/BusInjectionModel.jl), where usage will look like: | ||
```julia | ||
m = JuMP.Model(My.Optimizer) | ||
net = CommonOPF.Network(<from-yaml-or-opendss-file-path>) | ||
BranchFlowModel.build_bim!(m, net, BranchFlowModel.FixedPointLinear) | ||
JuMP.optimize!(m) | ||
# a standard results-getter is a work in progress, for now have to use JuMP.value | ||
``` | ||
where none of the module names are necessary, just added for illustration. | ||
|
||
|
||
### [1] | ||
Bernstein, Andrey, and Emiliano Dall'Anese. "Linear power-flow models in multiphase distribution networks." 2017 IEEE PES Innovative Smart Grid Technologies Conference Europe (ISGT-Europe). IEEE, 2017. | ||
Bernstein, Andrey, and Emiliano Dall'Anese. "Linear power-flow models in multiphase distribution networks." 2017 IEEE PES Innovative Smart Grid Technologies Conference Europe (ISGT-Europe). IEEE, 2017. |