ltbams 0.9.6__tar.gz → 0.9.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (179) hide show
  1. {ltbams-0.9.6 → ltbams-0.9.8}/LICENSE +2 -2
  2. {ltbams-0.9.6/ltbams.egg-info → ltbams-0.9.8}/PKG-INFO +7 -5
  3. {ltbams-0.9.6 → ltbams-0.9.8}/README.md +5 -3
  4. {ltbams-0.9.6 → ltbams-0.9.8}/ams/__init__.py +2 -1
  5. {ltbams-0.9.6 → ltbams-0.9.8}/ams/_version.py +3 -3
  6. ltbams-0.9.8/ams/cases/5bus/pjm5bus_uced_ev.xlsx +0 -0
  7. ltbams-0.9.8/ams/cases/matpower/benchmark.json +1594 -0
  8. ltbams-0.9.8/ams/core/matprocessor.py +745 -0
  9. {ltbams-0.9.6 → ltbams-0.9.8}/ams/core/model.py +1 -1
  10. {ltbams-0.9.6 → ltbams-0.9.8}/ams/core/service.py +1 -1
  11. ltbams-0.9.8/ams/extension/__init__.py +5 -0
  12. ltbams-0.9.8/ams/extension/eva.py +401 -0
  13. {ltbams-0.9.6 → ltbams-0.9.8}/ams/interop/andes.py +1 -1
  14. {ltbams-0.9.6 → ltbams-0.9.8}/ams/io/matpower.py +35 -27
  15. {ltbams-0.9.6 → ltbams-0.9.8}/ams/main.py +2 -0
  16. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/__init__.py +2 -2
  17. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/bus.py +7 -0
  18. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/distributed/__init__.py +1 -0
  19. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/distributed/esd1.py +1 -1
  20. ltbams-0.9.8/ams/models/distributed/ev.py +60 -0
  21. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/distributed/pvd1.py +1 -1
  22. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/group.py +1 -1
  23. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/renewable/regc.py +4 -4
  24. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/static/gen.py +1 -1
  25. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/timeslot.py +1 -1
  26. {ltbams-0.9.6 → ltbams-0.9.8}/ams/opt/omodel.py +3 -2
  27. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/routines/pflow.py +3 -5
  28. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/__init__.py +1 -1
  29. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/acopf.py +1 -2
  30. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/dcpf.py +10 -6
  31. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/ed.py +7 -7
  32. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/pflow.py +2 -2
  33. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/routine.py +1 -1
  34. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/rted.py +1 -1
  35. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/uc.py +2 -2
  36. {ltbams-0.9.6 → ltbams-0.9.8}/ams/shared.py +2 -0
  37. {ltbams-0.9.6 → ltbams-0.9.8}/ams/system.py +36 -1
  38. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/conf.py +1 -1
  39. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/formats/pypower.rst +1 -1
  40. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/index.rst +1 -1
  41. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/overview.rst +1 -1
  42. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/index.rst +4 -4
  43. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/modeling/example.rst +1 -1
  44. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/modeling/routine.rst +5 -5
  45. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/release-notes.rst +69 -2
  46. {ltbams-0.9.6 → ltbams-0.9.8/ltbams.egg-info}/PKG-INFO +7 -5
  47. {ltbams-0.9.6 → ltbams-0.9.8}/ltbams.egg-info/SOURCES.txt +5 -0
  48. {ltbams-0.9.6 → ltbams-0.9.8}/ltbams.egg-info/requires.txt +2 -2
  49. {ltbams-0.9.6 → ltbams-0.9.8}/requirements.txt +2 -2
  50. {ltbams-0.9.6 → ltbams-0.9.8}/setup.py +1 -1
  51. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_andes.py +7 -1
  52. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_dctypes.py +3 -3
  53. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_export_csv.py +2 -2
  54. ltbams-0.9.8/tests/test_known_good.py +264 -0
  55. ltbams-0.9.8/tests/test_mats.py +433 -0
  56. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_report.py +4 -4
  57. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_routine.py +12 -7
  58. ltbams-0.9.6/ams/core/matprocessor.py +0 -518
  59. ltbams-0.9.6/tests/test_known_good.py +0 -52
  60. ltbams-0.9.6/tests/test_mats.py +0 -183
  61. {ltbams-0.9.6 → ltbams-0.9.8}/CONTRIBUTING.rst +0 -0
  62. {ltbams-0.9.6 → ltbams-0.9.8}/MANIFEST.in +0 -0
  63. {ltbams-0.9.6 → ltbams-0.9.8}/ams/__main__.py +0 -0
  64. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/5bus/pjm5bus_demo.xlsx +0 -0
  65. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/5bus/pjm5bus_uced.json +0 -0
  66. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/5bus/pjm5bus_uced.xlsx +0 -0
  67. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/5bus/pjm5bus_uced_esd1.xlsx +0 -0
  68. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee123/ieee123.xlsx +0 -0
  69. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee123/ieee123_regcv1.xlsx +0 -0
  70. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee14/ieee14.json +0 -0
  71. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee14/ieee14.raw +0 -0
  72. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee14/ieee14_uced.xlsx +0 -0
  73. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee39/ieee39.xlsx +0 -0
  74. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee39/ieee39_uced.xlsx +0 -0
  75. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee39/ieee39_uced_esd1.xlsx +0 -0
  76. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee39/ieee39_uced_pvd1.xlsx +0 -0
  77. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/ieee39/ieee39_uced_vis.xlsx +0 -0
  78. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/matpower/case118.m +0 -0
  79. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/matpower/case14.m +0 -0
  80. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/matpower/case300.m +0 -0
  81. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/matpower/case39.m +0 -0
  82. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/matpower/case5.m +0 -0
  83. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/matpower/case_ACTIVSg2000.m +0 -0
  84. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/npcc/npcc.m +0 -0
  85. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/npcc/npcc_uced.xlsx +0 -0
  86. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/pglib/pglib_opf_case39_epri__api.m +0 -0
  87. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/wecc/wecc.m +0 -0
  88. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cases/wecc/wecc_uced.xlsx +0 -0
  89. {ltbams-0.9.6 → ltbams-0.9.8}/ams/cli.py +0 -0
  90. {ltbams-0.9.6 → ltbams-0.9.8}/ams/core/__init__.py +0 -0
  91. {ltbams-0.9.6 → ltbams-0.9.8}/ams/core/documenter.py +0 -0
  92. {ltbams-0.9.6 → ltbams-0.9.8}/ams/core/param.py +0 -0
  93. {ltbams-0.9.6 → ltbams-0.9.8}/ams/core/symprocessor.py +0 -0
  94. {ltbams-0.9.6 → ltbams-0.9.8}/ams/core/var.py +0 -0
  95. {ltbams-0.9.6 → ltbams-0.9.8}/ams/interop/__init__.py +0 -0
  96. {ltbams-0.9.6 → ltbams-0.9.8}/ams/io/__init__.py +0 -0
  97. {ltbams-0.9.6 → ltbams-0.9.8}/ams/io/json.py +0 -0
  98. {ltbams-0.9.6 → ltbams-0.9.8}/ams/io/psse.py +0 -0
  99. {ltbams-0.9.6 → ltbams-0.9.8}/ams/io/pypower.py +0 -0
  100. {ltbams-0.9.6 → ltbams-0.9.8}/ams/io/xlsx.py +0 -0
  101. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/area.py +0 -0
  102. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/cost.py +0 -0
  103. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/info.py +0 -0
  104. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/line.py +0 -0
  105. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/region.py +0 -0
  106. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/renewable/__init__.py +0 -0
  107. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/reserve.py +0 -0
  108. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/shunt.py +0 -0
  109. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/static/__init__.py +0 -0
  110. {ltbams-0.9.6 → ltbams-0.9.8}/ams/models/static/pq.py +0 -0
  111. {ltbams-0.9.6 → ltbams-0.9.8}/ams/opt/__init__.py +0 -0
  112. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/__init__.py +0 -0
  113. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/_compat.py +0 -0
  114. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/core/__init__.py +0 -0
  115. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/core/pips.py +0 -0
  116. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/core/ppoption.py +0 -0
  117. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/core/ppver.py +0 -0
  118. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/core/solver.py +0 -0
  119. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/eps.py +0 -0
  120. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/idx.py +0 -0
  121. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/io.py +0 -0
  122. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/make/__init__.py +0 -0
  123. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/make/matrices.py +0 -0
  124. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/make/pdv.py +0 -0
  125. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/routines/__init__.py +0 -0
  126. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/routines/cpf.py +0 -0
  127. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/routines/cpf_callbacks.py +0 -0
  128. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/routines/opf.py +0 -0
  129. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/routines/opffcns.py +0 -0
  130. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/toggle.py +0 -0
  131. {ltbams-0.9.6 → ltbams-0.9.8}/ams/pypower/utils.py +0 -0
  132. {ltbams-0.9.6 → ltbams-0.9.8}/ams/report.py +0 -0
  133. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/cpf.py +0 -0
  134. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/dcopf.py +0 -0
  135. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/dopf.py +0 -0
  136. {ltbams-0.9.6 → ltbams-0.9.8}/ams/routines/type.py +0 -0
  137. {ltbams-0.9.6 → ltbams-0.9.8}/ams/utils/__init__.py +0 -0
  138. {ltbams-0.9.6 → ltbams-0.9.8}/ams/utils/paths.py +0 -0
  139. {ltbams-0.9.6 → ltbams-0.9.8}/docs/Makefile +0 -0
  140. {ltbams-0.9.6 → ltbams-0.9.8}/docs/make.bat +0 -0
  141. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/_templates/autosummary/base.rst +0 -0
  142. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/_templates/autosummary/class.rst +0 -0
  143. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/_templates/autosummary/module.rst +0 -0
  144. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/_templates/autosummary/module_toctree.rst +0 -0
  145. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/api.rst +0 -0
  146. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/examples/index.rst +0 -0
  147. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/copyright.rst +0 -0
  148. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/formats/index.rst +0 -0
  149. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/formats/matpower.rst +0 -0
  150. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/formats/psse.rst +0 -0
  151. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/formats/xlsx.png +0 -0
  152. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/formats/xlsx.rst +0 -0
  153. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/install.rst +0 -0
  154. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/testcase.rst +0 -0
  155. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/getting_started/verification.rst +0 -0
  156. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/images/dcopf_time.png +0 -0
  157. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/images/sponsors/CURENT_Logo_NameOnTrans.png +0 -0
  158. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/images/sponsors/CURENT_Logo_Transparent.png +0 -0
  159. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/images/sponsors/CURENT_Logo_Transparent_Name.png +0 -0
  160. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/images/sponsors/doe.png +0 -0
  161. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/modeling/index.rst +0 -0
  162. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/modeling/model.rst +0 -0
  163. {ltbams-0.9.6 → ltbams-0.9.8}/docs/source/modeling/system.rst +0 -0
  164. {ltbams-0.9.6 → ltbams-0.9.8}/ltbams.egg-info/dependency_links.txt +0 -0
  165. {ltbams-0.9.6 → ltbams-0.9.8}/ltbams.egg-info/entry_points.txt +0 -0
  166. {ltbams-0.9.6 → ltbams-0.9.8}/ltbams.egg-info/top_level.txt +0 -0
  167. {ltbams-0.9.6 → ltbams-0.9.8}/requirements-extra.txt +0 -0
  168. {ltbams-0.9.6 → ltbams-0.9.8}/setup.cfg +0 -0
  169. {ltbams-0.9.6 → ltbams-0.9.8}/tests/__init__.py +0 -0
  170. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_1st_system.py +0 -0
  171. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_addressing.py +0 -0
  172. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_case.py +0 -0
  173. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_cli.py +0 -0
  174. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_group.py +0 -0
  175. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_model.py +0 -0
  176. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_paths.py +0 -0
  177. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_repr.py +0 -0
  178. {ltbams-0.9.6 → ltbams-0.9.8}/tests/test_service.py +0 -0
  179. {ltbams-0.9.6 → ltbams-0.9.8}/versioneer.py +0 -0
@@ -1,4 +1,4 @@
1
- AMS: Python Software for Dispatch Modeling and Co-Simulation with Dynanic
1
+ AMS: Python Software for Scheduling Modeling and Co-Simulation with Dynanic
2
2
 
3
3
  Copyright (c) 2023-2024 Jinning Wang
4
4
 
@@ -649,7 +649,7 @@ to attach them to the start of each source file to most effectively
649
649
  state the exclusion of warranty; and each file should have at least
650
650
  the "copyright" line and a pointer to where the full notice is found.
651
651
 
652
- AMS, a python software for dispatch modeling and co-simulation with dynanic
652
+ AMS, a python software for scheduling modeling and co-simulation with dynanic
653
653
  Copyright (C) 2023 Jinning Wang
654
654
 
655
655
  This program is free software: you can redistribute it and/or modify
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ltbams
3
- Version: 0.9.6
4
- Summary: Python software for dispatch modeling and co-simulation with dynanic.
3
+ Version: 0.9.8
4
+ Summary: Python software for scheduling modeling and co-simulation with dynanics.
5
5
  Home-page: https://github.com/CURENT/ams
6
6
  Author: Jinning Wang
7
7
  Author-email: jinninggm@gmail.com
@@ -33,7 +33,7 @@ License-File: LICENSE
33
33
 
34
34
  # LTB AMS
35
35
 
36
- Python Software for Power System Dispatch Modeling and Co-Simulation with Dynanic, serving as the market simulator for the [CURENT Largescale Testbed][LTB Repository].
36
+ Python Software for Power System Scheduling Modeling and Co-Simulation with Dynanic, serving as the market simulator for the [CURENT Largescale Testbed][LTB Repository].
37
37
 
38
38
  [![License: GPL-3.0](https://img.shields.io/badge/License-GPL--3.0-blue.svg)](https://github.com/CURENT/ams/blob/master/LICENSE)
39
39
  ![platforms](https://anaconda.org/conda-forge/ltbams/badges/platforms.svg)
@@ -64,7 +64,7 @@ Python Software for Power System Dispatch Modeling and Co-Simulation with Dynani
64
64
 
65
65
  With the built-in interface with dynamic simulation engine, ANDES, AMS enables Dynamics Interfaced Stability Constrained Production Cost and Market Operation Modeling.
66
66
 
67
- AMS produces credible dispatch results and competitive performance.
67
+ AMS produces credible scheduling results and competitive performance.
68
68
  The following results show the comparison of DCOPF between AMS and other tools.
69
69
 
70
70
  | Cost [\$] | AMS | MATPOWER | pandapower |
@@ -92,6 +92,8 @@ Use the following resources to get involved.
92
92
 
93
93
  # Installation
94
94
 
95
+ ***NOTE:*** ``kvxopt`` is recommended to install via ``conda`` as sometimes ``pip`` struggles to set the correct path for compiled libraries.
96
+
95
97
  AMS is released as ``ltbams`` on PyPI and conda-forge.
96
98
  Install from PyPI using pip:
97
99
 
@@ -112,7 +114,7 @@ pip install git+https://github.com/CURENT/ams.git
112
114
  ```
113
115
 
114
116
  # Sponsors and Contributors
115
- AMS is the dispatch simulation engine for the CURENT Largescale Testbed (LTB).
117
+ AMS is the scheduling simulation engine for the CURENT Largescale Testbed (LTB).
116
118
  More information about CURENT LTB can be found at the [LTB Repository][LTB Repository].
117
119
 
118
120
  This work was supported in part by the Engineering Research Center Program of the National Science Foundation and the Department of Energy
@@ -1,6 +1,6 @@
1
1
  # LTB AMS
2
2
 
3
- Python Software for Power System Dispatch Modeling and Co-Simulation with Dynanic, serving as the market simulator for the [CURENT Largescale Testbed][LTB Repository].
3
+ Python Software for Power System Scheduling Modeling and Co-Simulation with Dynanic, serving as the market simulator for the [CURENT Largescale Testbed][LTB Repository].
4
4
 
5
5
  [![License: GPL-3.0](https://img.shields.io/badge/License-GPL--3.0-blue.svg)](https://github.com/CURENT/ams/blob/master/LICENSE)
6
6
  ![platforms](https://anaconda.org/conda-forge/ltbams/badges/platforms.svg)
@@ -31,7 +31,7 @@ Python Software for Power System Dispatch Modeling and Co-Simulation with Dynani
31
31
 
32
32
  With the built-in interface with dynamic simulation engine, ANDES, AMS enables Dynamics Interfaced Stability Constrained Production Cost and Market Operation Modeling.
33
33
 
34
- AMS produces credible dispatch results and competitive performance.
34
+ AMS produces credible scheduling results and competitive performance.
35
35
  The following results show the comparison of DCOPF between AMS and other tools.
36
36
 
37
37
  | Cost [\$] | AMS | MATPOWER | pandapower |
@@ -59,6 +59,8 @@ Use the following resources to get involved.
59
59
 
60
60
  # Installation
61
61
 
62
+ ***NOTE:*** ``kvxopt`` is recommended to install via ``conda`` as sometimes ``pip`` struggles to set the correct path for compiled libraries.
63
+
62
64
  AMS is released as ``ltbams`` on PyPI and conda-forge.
63
65
  Install from PyPI using pip:
64
66
 
@@ -79,7 +81,7 @@ pip install git+https://github.com/CURENT/ams.git
79
81
  ```
80
82
 
81
83
  # Sponsors and Contributors
82
- AMS is the dispatch simulation engine for the CURENT Largescale Testbed (LTB).
84
+ AMS is the scheduling simulation engine for the CURENT Largescale Testbed (LTB).
83
85
  More information about CURENT LTB can be found at the [LTB Repository][LTB Repository].
84
86
 
85
87
  This work was supported in part by the Engineering Research Center Program of the National Science Foundation and the Department of Energy
@@ -9,6 +9,7 @@ from ams import routines # NOQA
9
9
  from ams import opt # NOQA
10
10
  from ams import pypower # NOQA
11
11
  from ams import report # NOQA
12
+ from ams import extension # NOQA
12
13
 
13
14
  from ams.main import config_logger, load, run # NOQA
14
15
  from ams.utils.paths import get_case # NOQA
@@ -16,4 +17,4 @@ from ams.shared import ppc2df # NOQA
16
17
 
17
18
  __author__ = 'Jining Wang'
18
19
 
19
- __all__ = ['io', 'utils', 'models', 'system']
20
+ __all__ = ['io', 'utils', 'models', 'system', 'extension']
@@ -8,11 +8,11 @@ import json
8
8
 
9
9
  version_json = '''
10
10
  {
11
- "date": "2024-04-21T17:14:28-0400",
11
+ "date": "2024-06-18T14:45:25-0400",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "fcc7e579c8f7453fae3ddebbd0eedbe4e463c1c9",
15
- "version": "0.9.6"
14
+ "full-revisionid": "63b55b4b38c980ba34cd7a2fa97dcffb2e4563d9",
15
+ "version": "0.9.8"
16
16
  }
17
17
  ''' # END VERSION_JSON
18
18