From 19f1e106f8bb70e94e646db6fcacf7ee2ca141af Mon Sep 17 00:00:00 2001 From: Juan Ospina Date: Thu, 16 Feb 2023 11:19:55 -0700 Subject: [PATCH] DOC: Added journal citing information to README and docs. Bumped compat to PMD v0.14.7 --- CHANGELOG.md | 4 +++- Project.toml | 2 +- README.md | 16 ++++++++++++++++ docs/src/index.md | 24 ++++++++++-------------- 4 files changed, 30 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9695f09..8cca336 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,9 @@ ## staged -- Bumped PMITD compatibility of `PMD` to the latest versions (i.e., v0.14.6). +- Bumped PMITD compatibility of `PMD` to the latest versions (i.e., v0.14.7). +- Added journal citing information to `README.md`. +- Added journal citing information to `index` in docs. ## v0.7.6 diff --git a/Project.toml b/Project.toml index 8082be7..359343e 100755 --- a/Project.toml +++ b/Project.toml @@ -18,7 +18,7 @@ Ipopt = "0.9, 1.0.2" JSON = "~0.18, ~0.19, ~0.20, ~0.21" JuMP = "~0.22, ~0.23, 1" PowerModels = "0.19.8" -PowerModelsDistribution = "0.14.6" +PowerModelsDistribution = "0.14.7" SCS = "~1.0, ~1.1" julia = "1.6" diff --git a/README.md b/README.md index 8930fbe..bb474c3 100755 --- a/README.md +++ b/README.md @@ -58,6 +58,22 @@ See [CONTRIBUTING.md] for code contribution guidelines. This code has been developed with the support of the Grant: "Optimized Resilience for Distribution and Transmission Systems" funded by the U.S. Department of Energy (DOE) Office of Electricity (OE) Advanced Grid Modeling (AGM) Research Program under program manager Ali Ghassemian. The research work conducted at Los Alamos National Laboratory is done under the auspices of the National Nuclear Security Administration of the U.S. Department of Energy under Contract No. 89233218CNA000001. The primary developers are Juan Ospina (@juanjospina) and David Fobes (@pseudocubic). +## Citing PowerModelsITD + +If you find `PowerModelsITD` useful for your work, we kindly request that you cite the following [publication](https://doi.org/10.1109/TPWRS.2023.3234725): + +```bibtex +@article{ospina2023modeling, + author={Ospina, Juan and Fobes, David M. and Bent, Russell and Wächter, Andreas}, + journal={IEEE Transactions on Power Systems}, + title={Modeling and Rapid Prototyping of Integrated Transmission-Distribution OPF Formulations with PowerModelsITD.jl}, + year={2023}, + volume={}, + number={}, + pages={1-14}, + doi={10.1109/TPWRS.2023.3234725}} +``` + ## License This code is provided under a BSD license as part of the Multi-Infrastructure Control and Optimization Toolkit (MICOT) project, LA-CC-13-108. diff --git a/docs/src/index.md b/docs/src/index.md index e82e57a..2857b2f 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -31,22 +31,18 @@ The following is a high-level overview of how our documentation is structured. T ## Citing PowerModelsITD.jl -If you find PowerModelsITD.jl useful for your work, we kindly request that you cite the following [publication]: +If you find `PowerModelsITD` useful for your work, we kindly request that you cite the following [publication](https://doi.org/10.1109/TPWRS.2023.3234725): ```bibtex -@article{powermodelsitdresearchpaper, -title = "Modeling and Rapid Prototyping of Integrated Transmission-Distribution OPF Formulations with PowerModelsITD.jl", -journal = "In Submission Process", -volume = "", -pages = "", -year = "2022", -issn = "", -doi = "", -url = "https://lanl-ansi.github.io/PowerModelsITD.jl/stable/index.html", -author = "Juan Ospina and David M. Fobes and Russell Bent and Andreas W\"achter", -keywords = "Nonlinear optimization, Convex optimization, AC optimal power flow, Julia language, Open-source", -abstract = "Conventional electric power systems are composed of different unidirectional power flow stages of generation transmission, and distribution, managed independently by transmission system and distribution system operators. However, as distribution systems increase in complexity due to the integration of distributed energy resources, coordination between transmission and distribution networks will be imperative for the optimal operation of the power grid. However, coupling models and formulations between transmission and distribution is non-trivial, in particular due to common practice of modeling transmission systems as single-phase, and distribution systems as multi-conductor phase-unbalanced. To enable the rapid prototyping of power flow formulations, in particular in the modeling of the boundary conditions between these two seemingly incompatible data models, we introduce PowerModelsITD.jl, a free, open-source toolkit written in Julia for integrated transmission-distribution (ITD) optimization that leverages mature optimization libraries from the InfrastructureModels.jl-ecosystem. The primary objective of the proposed framework is to provide baseline implementations of steady-state ITD optimization problems, while providing a common platform for the evaluation of emerging formulations and optimization problems. In this work, we introduce the nonlinear formulations currently supported in PowerModelsITD.jl, which include AC-polar, AC-rectangular, current-voltage, and a linear network transportation model. Results are validated using combinations of IEEE transmission and distribution networks." -} +@article{ospina2023modeling, + author={Ospina, Juan and Fobes, David M. and Bent, Russell and Wächter, Andreas}, + journal={IEEE Transactions on Power Systems}, + title={Modeling and Rapid Prototyping of Integrated Transmission-Distribution OPF Formulations with PowerModelsITD.jl}, + year={2023}, + volume={}, + number={}, + pages={1-14}, + doi={10.1109/TPWRS.2023.3234725}} ``` ## Acknowledgments