From ac2b6c2aebefb8724a78e49a39e82e58639f6c88 Mon Sep 17 00:00:00 2001 From: jianzhe0726 <96191387+jianzhe0726@users.noreply.github.com> Date: Tue, 21 Feb 2023 18:14:43 -0500 Subject: [PATCH 1/5] Update README.md --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b8c19d..71b9e33 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,20 @@ ### Key features * **High numerical robustness.** Backed by the SAS approach, the PowerSAS tool provides much better convergence than the tools using traditional Newton-type algebraic equation solvers when solving algebraic equations (AE)/ordinary differential equations (ODE)/differential-algebraic equations(DAE). * **Enhanced computational performance.** Due to the analytical nature, PowerSAS provides model-adaptive high-accuracy approximation, which brings significantly extended effective range and much larger steps for steady-state/dynamic analysis. PowerSAS has been used to solve large-scale system cases with 200,000+ buses. -* **Customizable and extensible.** PowerSAS supports flexible customization of grid analysis scenarios, including complex event sequences in extended simulation term. \ No newline at end of file +* **Customizable and extensible.** PowerSAS supports flexible customization of grid analysis scenarios, including complex event sequences in extended simulation term. + +### Citing + +If you are using **PowerSAS.m** in research work to be published, please include explicit citation of our work in your publication. Please place the following entries in your bibliography: + +[1]. J. Liu, R. Yao, F. Qiu, Y. Liu and K. Sun, "PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies," in IEEE Open Access Journal of Power and Energy, doi: 10.1109/OAJPE.2023.3245040. + +The corresponding BiBTex citations are given below: + + @ARTICLE{powersas, + author={Liu, Jianzhe and Yao, Rui and Qiu, Feng and Liu, Yang and Sun, Kai}, + journal={IEEE Open Access Journal of Power and Energy}, + title={PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies}, + year={2023}, + doi={10.1109/OAJPE.2023.3245040} + } From 600e70c70c2ea04c132522ab4bea6711e466c22f Mon Sep 17 00:00:00 2001 From: jianzhe0726 <96191387+jianzhe0726@users.noreply.github.com> Date: Tue, 21 Feb 2023 18:18:14 -0500 Subject: [PATCH 2/5] Updated citing info --- doc/about.md | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/doc/about.md b/doc/about.md index 3dc8189..b2ca0bd 100644 --- a/doc/about.md +++ b/doc/about.md @@ -6,15 +6,32 @@ * Kai Sun, University of Tennessee, Knoxville <> * Jianzhe Liu, Argonne National Laboratory <> +### Citing + +If you are using **PowerSAS.m** in research work to be published, please include explicit citation of our work in your publication. Please place the following entries in your bibliography: + +[1]. J. Liu, R. Yao, F. Qiu, Y. Liu and K. Sun, "PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies," in IEEE Open Access Journal of Power and Energy, doi: 10.1109/OAJPE.2023.3245040. + +The corresponding BiBTex citations are given below: + + @ARTICLE{powersas, + author={Liu, Jianzhe and Yao, Rui and Qiu, Feng and Liu, Yang and Sun, Kai}, + journal={IEEE Open Access Journal of Power and Energy}, + title={PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies}, + year={2023}, + doi={10.1109/OAJPE.2023.3245040} + } + ### Acknowledgement This work is supported by the Laboratory Directed Research and Development (LDRD) program of Argonne National Laboratory, provided by the U.S. Department of Energy Office of Science under Contract No. DE-AC02-06CH11357, and the U.S. Department of Energy Office of Electricity, Advanced Grid Modeling program under Grant DE-OE0000875. ### Publications -* Rui Yao, Kai Sun, Feng Qiu, “Vectorized Efficient Computation of Padé Approximation for Semi-Analytical Simulation of Large-Scale Power Systems,” IEEE Transactions on Power Systems, 34 (5), 3957-3959, 2019. -* Rui Yao, Yang Liu, Kai Sun, Feng Qiu, Jianhui Wang,"Efficient and Robust Dynamic Simulation of Power Systems with Holomorphic Embedding", IEEE Transactions on Power Systems, 35 (2), 938 - 949, 2020. -* Rui Yao, Feng Qiu, "Novel AC Distribution Factor for Efficient Outage Analysis", IEEE Transactions on Power Systems, 35 (6), 4960-4963, 2020. -* Xin Xu, Rui Yao, Kai Sun, Feng Qiu, "A Semi-Analytical Solution Approach for Solving Constant-Coefficient First-Order Partial Differential Equations", IEEE Control Systems Letters, 6, 704-709, 2021. -* Rui Yao, Feng Qiu, Kai Sun, “Contingency Analysis Based on Partitioned and Parallel Holomorphic Embedding”, IEEE Transactions on Power Systems, in press. +* Jianzhe Liu, Rui Yao, Feng Qiu, Yang Liu and Kai Sun, "PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies," in IEEE Open Access Journal of Power and Energy, 2023. +* Rui Yao, Kai Sun and Feng Qiu, “Vectorized Efficient Computation of Padé Approximation for Semi-Analytical Simulation of Large-Scale Power Systems,” IEEE Transactions on Power Systems, 34 (5), 3957-3959, 2019. +* Rui Yao, Yang Liu, Kai Sun and Feng Qiu, Jianhui Wang,"Efficient and Robust Dynamic Simulation of Power Systems with Holomorphic Embedding", IEEE Transactions on Power Systems, 35 (2), 938 - 949, 2020. +* Rui Yao and Feng Qiu, "Novel AC Distribution Factor for Efficient Outage Analysis", IEEE Transactions on Power Systems, 35 (6), 4960-4963, 2020. +* Xin Xu, Rui Yao, Kai Sun and Feng Qiu, "A Semi-Analytical Solution Approach for Solving Constant-Coefficient First-Order Partial Differential Equations", IEEE Control Systems Letters, 6, 704-709, 2021. +* Rui Yao, Feng Qiu and Kai Sun, “Contingency Analysis Based on Partitioned and Parallel Holomorphic Embedding”, IEEE Transactions on Power Systems, 2022. ### License This software is under BSD license. Please refer to LICENSE.md for details. From 94bea6c7cab98d2cf54219fafe831b8a2bb78b46 Mon Sep 17 00:00:00 2001 From: jianzhe0726 <96191387+jianzhe0726@users.noreply.github.com> Date: Tue, 21 Feb 2023 18:19:09 -0500 Subject: [PATCH 3/5] Updated citing info --- doc/about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/about.md b/doc/about.md index b2ca0bd..fc9c2cb 100644 --- a/doc/about.md +++ b/doc/about.md @@ -10,7 +10,7 @@ If you are using **PowerSAS.m** in research work to be published, please include explicit citation of our work in your publication. Please place the following entries in your bibliography: -[1]. J. Liu, R. Yao, F. Qiu, Y. Liu and K. Sun, "PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies," in IEEE Open Access Journal of Power and Energy, doi: 10.1109/OAJPE.2023.3245040. +[1]. J. Liu, R. Yao, F. Qiu, Y. Liu and K. Sun, "PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies," in IEEE Open Access Journal of Power and Energy, In Press. The corresponding BiBTex citations are given below: From ed39bc62fcda2ce5b4d9c751506f839f6927c1aa Mon Sep 17 00:00:00 2001 From: jianzhe0726 <96191387+jianzhe0726@users.noreply.github.com> Date: Tue, 21 Feb 2023 18:19:36 -0500 Subject: [PATCH 4/5] Updated Readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 71b9e33..05de11c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ If you are using **PowerSAS.m** in research work to be published, please include explicit citation of our work in your publication. Please place the following entries in your bibliography: -[1]. J. Liu, R. Yao, F. Qiu, Y. Liu and K. Sun, "PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies," in IEEE Open Access Journal of Power and Energy, doi: 10.1109/OAJPE.2023.3245040. +[1]. J. Liu, R. Yao, F. Qiu, Y. Liu and K. Sun, "PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies," in IEEE Open Access Journal of Power and Energy, In Press. The corresponding BiBTex citations are given below: From 2e648a1bd4f441d62ae8abc7b5900771b1b8340b Mon Sep 17 00:00:00 2001 From: jianzhe0726 <96191387+jianzhe0726@users.noreply.github.com> Date: Fri, 3 Mar 2023 13:13:24 -0500 Subject: [PATCH 5/5] Updated the Bibtex --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05de11c..e2c9a9b 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The corresponding BiBTex citations are given below: @ARTICLE{powersas, author={Liu, Jianzhe and Yao, Rui and Qiu, Feng and Liu, Yang and Sun, Kai}, journal={IEEE Open Access Journal of Power and Energy}, - title={PowerSAS.m – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies}, + title={{PowerSAS.m} – An Open-Source Power System Simulation Toolbox Based on Semi-Analytical Solution Technologies}, year={2023}, doi={10.1109/OAJPE.2023.3245040} }