powermcp 0.1.0__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 (2301) hide show
  1. powermcp-0.1.0/.gitignore +108 -0
  2. powermcp-0.1.0/ANDES/README.md +49 -0
  3. powermcp-0.1.0/ANDES/andes_mcp.py +339 -0
  4. powermcp-0.1.0/ANDES/kundur_full.json +942 -0
  5. powermcp-0.1.0/ANDES/requirements.txt +2 -0
  6. powermcp-0.1.0/Egret/README.md +48 -0
  7. powermcp-0.1.0/Egret/egret_mcp.py +185 -0
  8. powermcp-0.1.0/Egret/pglib_opf_case14_ieee.m +214 -0
  9. powermcp-0.1.0/Egret/requirements.txt +2 -0
  10. powermcp-0.1.0/HOPE/README.md +193 -0
  11. powermcp-0.1.0/HOPE/pyproject.toml +21 -0
  12. powermcp-0.1.0/HOPE/src/hope_mcp_server/__init__.py +3 -0
  13. powermcp-0.1.0/HOPE/src/hope_mcp_server/__main__.py +4 -0
  14. powermcp-0.1.0/HOPE/src/hope_mcp_server/chatgpt.py +11 -0
  15. powermcp-0.1.0/HOPE/src/hope_mcp_server/core.py +2090 -0
  16. powermcp-0.1.0/HOPE/src/hope_mcp_server/server.py +440 -0
  17. powermcp-0.1.0/HOPE/uv.lock +738 -0
  18. powermcp-0.1.0/LICENSE +21 -0
  19. powermcp-0.1.0/LTSpice/README.md +60 -0
  20. powermcp-0.1.0/LTSpice/ltspice_mcp.py +389 -0
  21. powermcp-0.1.0/LTSpice/requirements.txt +6 -0
  22. powermcp-0.1.0/OpenDSS/13Bus/IEEE13Node_BusXY.csv +18 -0
  23. powermcp-0.1.0/OpenDSS/13Bus/IEEE13Nodeckt.dss +176 -0
  24. powermcp-0.1.0/OpenDSS/13Bus/IEEE13Nodeckt_com_loadshape.dss +192 -0
  25. powermcp-0.1.0/OpenDSS/13Bus/IEEELineCodes.DSS +213 -0
  26. powermcp-0.1.0/OpenDSS/README.md +127 -0
  27. powermcp-0.1.0/OpenDSS/core/__init__.py +1 -0
  28. powermcp-0.1.0/OpenDSS/core/engine.py +7 -0
  29. powermcp-0.1.0/OpenDSS/core/server.py +21 -0
  30. powermcp-0.1.0/OpenDSS/core/state.py +7 -0
  31. powermcp-0.1.0/OpenDSS/opendss_mcp.py +17 -0
  32. powermcp-0.1.0/OpenDSS/opendss_tools/__init__.py +1 -0
  33. powermcp-0.1.0/OpenDSS/opendss_tools/configuration.py +81 -0
  34. powermcp-0.1.0/OpenDSS/opendss_tools/interactive_view.py +85 -0
  35. powermcp-0.1.0/OpenDSS/opendss_tools/model.py +298 -0
  36. powermcp-0.1.0/OpenDSS/opendss_tools/results.py +356 -0
  37. powermcp-0.1.0/OpenDSS/opendss_tools/simulation.py +36 -0
  38. powermcp-0.1.0/OpenDSS/requirements.txt +2 -0
  39. powermcp-0.1.0/OpenDSS/utils/__init__.py +1 -0
  40. powermcp-0.1.0/OpenDSS/utils/responses.py +46 -0
  41. powermcp-0.1.0/PKG-INFO +285 -0
  42. powermcp-0.1.0/PSCAD/COMPARISON_GUIDE.md +44 -0
  43. powermcp-0.1.0/PSCAD/EXAMPLES.md +61 -0
  44. powermcp-0.1.0/PSCAD/README.md +132 -0
  45. powermcp-0.1.0/PSCAD/mcp_installer.py +103 -0
  46. powermcp-0.1.0/PSCAD/pscad_mcp/__init__.py +2 -0
  47. powermcp-0.1.0/PSCAD/pscad_mcp/core/connection_manager.py +77 -0
  48. powermcp-0.1.0/PSCAD/pscad_mcp/core/executor.py +57 -0
  49. powermcp-0.1.0/PSCAD/pscad_mcp/main.py +46 -0
  50. powermcp-0.1.0/PSCAD/pscad_mcp/tools/app_tools.py +80 -0
  51. powermcp-0.1.0/PSCAD/pscad_mcp/tools/data_tools.py +34 -0
  52. powermcp-0.1.0/PSCAD/pscad_mcp/tools/project_tools.py +104 -0
  53. powermcp-0.1.0/PSCAD/pscad_mcp/tools/simset_tools.py +36 -0
  54. powermcp-0.1.0/PSCAD/pscad_mcp/utils/doc_manager.py +271 -0
  55. powermcp-0.1.0/PSCAD/pyproject.toml +30 -0
  56. powermcp-0.1.0/PSLF/README.md +45 -0
  57. powermcp-0.1.0/PSLF/generate-otg.p +1625 -0
  58. powermcp-0.1.0/PSLF/psec-1.sav +0 -0
  59. powermcp-0.1.0/PSLF/psec-cont.otg +314 -0
  60. powermcp-0.1.0/PSLF/psec.cntl +60 -0
  61. powermcp-0.1.0/PSLF/psec.dycr +36 -0
  62. powermcp-0.1.0/PSLF/psec.dyd +230 -0
  63. powermcp-0.1.0/PSLF/pslf_mcp.py +898 -0
  64. powermcp-0.1.0/PSLF/pslf_test.prompt +12 -0
  65. powermcp-0.1.0/PSLF/requirements.txt +2 -0
  66. powermcp-0.1.0/PSSE/README.md +49 -0
  67. powermcp-0.1.0/PSSE/psse_mcp.py +562 -0
  68. powermcp-0.1.0/PSSE/psspy_command_json/_index.json +15283 -0
  69. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdcchar.json +160 -0
  70. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdcconvchar.json +174 -0
  71. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdcconvcount.json +102 -0
  72. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdcconvcplx.json +154 -0
  73. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdcconvint.json +170 -0
  74. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdcconvreal.json +202 -0
  75. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdcconvtypes.json +62 -0
  76. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdccount.json +90 -0
  77. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdccplx.json +132 -0
  78. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdcint.json +172 -0
  79. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdcreal.json +328 -0
  80. powermcp-0.1.0/PSSE/psspy_command_json/a2trmdctypes.json +62 -0
  81. powermcp-0.1.0/PSSE/psspy_command_json/aareachar.json +98 -0
  82. powermcp-0.1.0/PSSE/psspy_command_json/aareacount.json +68 -0
  83. powermcp-0.1.0/PSSE/psspy_command_json/aareacplx.json +134 -0
  84. powermcp-0.1.0/PSSE/psspy_command_json/aareaint.json +118 -0
  85. powermcp-0.1.0/PSSE/psspy_command_json/aareareal.json +198 -0
  86. powermcp-0.1.0/PSSE/psspy_command_json/aareatypes.json +62 -0
  87. powermcp-0.1.0/PSSE/psspy_command_json/abrnchar.json +200 -0
  88. powermcp-0.1.0/PSSE/psspy_command_json/abrncount.json +142 -0
  89. powermcp-0.1.0/PSSE/psspy_command_json/abrncplx.json +204 -0
  90. powermcp-0.1.0/PSSE/psspy_command_json/abrnint.json +244 -0
  91. powermcp-0.1.0/PSSE/psspy_command_json/abrnreal.json +712 -0
  92. powermcp-0.1.0/PSSE/psspy_command_json/abrntypes.json +62 -0
  93. powermcp-0.1.0/PSSE/psspy_command_json/abuschar.json +94 -0
  94. powermcp-0.1.0/PSSE/psspy_command_json/abuscount.json +68 -0
  95. powermcp-0.1.0/PSSE/psspy_command_json/abuscplx.json +126 -0
  96. powermcp-0.1.0/PSSE/psspy_command_json/abusint.json +118 -0
  97. powermcp-0.1.0/PSSE/psspy_command_json/abusreal.json +130 -0
  98. powermcp-0.1.0/PSSE/psspy_command_json/abustypes.json +62 -0
  99. powermcp-0.1.0/PSSE/psspy_command_json/accc.json +206 -0
  100. powermcp-0.1.0/PSSE/psspy_command_json/accc_2.json +86 -0
  101. powermcp-0.1.0/PSSE/psspy_command_json/accc_multiple_merge.json +86 -0
  102. powermcp-0.1.0/PSSE/psspy_command_json/accc_multiple_run_report.json +320 -0
  103. powermcp-0.1.0/PSSE/psspy_command_json/accc_multiple_run_report_2.json +344 -0
  104. powermcp-0.1.0/PSSE/psspy_command_json/accc_parallel.json +282 -0
  105. powermcp-0.1.0/PSSE/psspy_command_json/accc_parallel_2.json +298 -0
  106. powermcp-0.1.0/PSSE/psspy_command_json/accc_ras.json +78 -0
  107. powermcp-0.1.0/PSSE/psspy_command_json/accc_ras_2.json +102 -0
  108. powermcp-0.1.0/PSSE/psspy_command_json/accc_single_run_report.json +238 -0
  109. powermcp-0.1.0/PSSE/psspy_command_json/accc_single_run_report_2.json +254 -0
  110. powermcp-0.1.0/PSSE/psspy_command_json/accc_single_run_report_3.json +266 -0
  111. powermcp-0.1.0/PSSE/psspy_command_json/accc_single_run_report_4.json +290 -0
  112. powermcp-0.1.0/PSSE/psspy_command_json/accc_single_run_report_5.json +394 -0
  113. powermcp-0.1.0/PSSE/psspy_command_json/accc_single_run_report_6.json +420 -0
  114. powermcp-0.1.0/PSSE/psspy_command_json/accc_trip_cor.json +382 -0
  115. powermcp-0.1.0/PSSE/psspy_command_json/accc_trip_cor_2.json +442 -0
  116. powermcp-0.1.0/PSSE/psspy_command_json/accc_trip_cor_3.json +474 -0
  117. powermcp-0.1.0/PSSE/psspy_command_json/accc_with_cor.json +344 -0
  118. powermcp-0.1.0/PSSE/psspy_command_json/accc_with_cor_2.json +404 -0
  119. powermcp-0.1.0/PSSE/psspy_command_json/accc_with_cor_3.json +436 -0
  120. powermcp-0.1.0/PSSE/psspy_command_json/accc_with_dsp.json +242 -0
  121. powermcp-0.1.0/PSSE/psspy_command_json/accc_with_dsp_2.json +274 -0
  122. powermcp-0.1.0/PSSE/psspy_command_json/accc_with_dsp_3.json +298 -0
  123. powermcp-0.1.0/PSSE/psspy_command_json/accc_with_trip.json +272 -0
  124. powermcp-0.1.0/PSSE/psspy_command_json/accc_with_trip_2.json +304 -0
  125. powermcp-0.1.0/PSSE/psspy_command_json/accc_with_trip_parallel.json +304 -0
  126. powermcp-0.1.0/PSSE/psspy_command_json/accor.json +262 -0
  127. powermcp-0.1.0/PSSE/psspy_command_json/accor_2.json +322 -0
  128. powermcp-0.1.0/PSSE/psspy_command_json/accor_3.json +334 -0
  129. powermcp-0.1.0/PSSE/psspy_command_json/add2windingconditionelement.json +70 -0
  130. powermcp-0.1.0/PSSE/psspy_command_json/add2windingcontingencyelement.json +74 -0
  131. powermcp-0.1.0/PSSE/psspy_command_json/add2windingremedialactionelement.json +86 -0
  132. powermcp-0.1.0/PSSE/psspy_command_json/add3windingconditionelement.json +74 -0
  133. powermcp-0.1.0/PSSE/psspy_command_json/add3windingcontingencyelement.json +78 -0
  134. powermcp-0.1.0/PSSE/psspy_command_json/add3windingremedialactionelement.json +90 -0
  135. powermcp-0.1.0/PSSE/psspy_command_json/add_cct2dco_model.json +82 -0
  136. powermcp-0.1.0/PSSE/psspy_command_json/add_cct2wtd_model.json +98 -0
  137. powermcp-0.1.0/PSSE/psspy_command_json/add_cct3wtd_model.json +102 -0
  138. powermcp-0.1.0/PSSE/psspy_command_json/add_cctbrnd_model.json +98 -0
  139. powermcp-0.1.0/PSSE/psspy_command_json/add_cctbrno_model.json +98 -0
  140. powermcp-0.1.0/PSSE/psspy_command_json/add_cctbuso_model.json +82 -0
  141. powermcp-0.1.0/PSSE/psspy_command_json/add_cctmcno_model.json +90 -0
  142. powermcp-0.1.0/PSSE/psspy_command_json/add_cctmcnp_model.json +90 -0
  143. powermcp-0.1.0/PSSE/psspy_command_json/add_cctmsco_model.json +82 -0
  144. powermcp-0.1.0/PSSE/psspy_command_json/add_cctswso_model.json +86 -0
  145. powermcp-0.1.0/PSSE/psspy_command_json/add_cctswso_model_2.json +90 -0
  146. powermcp-0.1.0/PSSE/psspy_command_json/add_details_to_opf_log.json +50 -0
  147. powermcp-0.1.0/PSSE/psspy_command_json/add_facts_device_model.json +82 -0
  148. powermcp-0.1.0/PSSE/psspy_command_json/add_fctsauxsignal_model.json +94 -0
  149. powermcp-0.1.0/PSSE/psspy_command_json/add_indmac_model.json +94 -0
  150. powermcp-0.1.0/PSSE/psspy_command_json/add_load_model.json +164 -0
  151. powermcp-0.1.0/PSSE/psspy_command_json/add_loadc_model.json +138 -0
  152. powermcp-0.1.0/PSSE/psspy_command_json/add_mtdcauxsignal_model.json +94 -0
  153. powermcp-0.1.0/PSSE/psspy_command_json/add_mtdcline_model.json +82 -0
  154. powermcp-0.1.0/PSSE/psspy_command_json/add_plant_model.json +162 -0
  155. powermcp-0.1.0/PSSE/psspy_command_json/add_relay_model.json +106 -0
  156. powermcp-0.1.0/PSSE/psspy_command_json/add_swshunt_model.json +86 -0
  157. powermcp-0.1.0/PSSE/psspy_command_json/add_swshunt_model_2.json +90 -0
  158. powermcp-0.1.0/PSSE/psspy_command_json/add_ttdcauxsignal_model.json +90 -0
  159. powermcp-0.1.0/PSSE/psspy_command_json/add_ttdcline_model.json +82 -0
  160. powermcp-0.1.0/PSSE/psspy_command_json/add_vsdcauxsignal_model.json +94 -0
  161. powermcp-0.1.0/PSSE/psspy_command_json/add_vsdcline_model.json +82 -0
  162. powermcp-0.1.0/PSSE/psspy_command_json/add_wind_model.json +146 -0
  163. powermcp-0.1.0/PSSE/psspy_command_json/addaclineconditionelement.json +70 -0
  164. powermcp-0.1.0/PSSE/psspy_command_json/addaclinecontingencyelement.json +74 -0
  165. powermcp-0.1.0/PSSE/psspy_command_json/addaclineremedialactionelement.json +86 -0
  166. powermcp-0.1.0/PSSE/psspy_command_json/addbusconditionelement.json +62 -0
  167. powermcp-0.1.0/PSSE/psspy_command_json/addbuscontingencyelement.json +66 -0
  168. powermcp-0.1.0/PSSE/psspy_command_json/addbusremedialactionelement.json +78 -0
  169. powermcp-0.1.0/PSSE/psspy_command_json/addcondition.json +54 -0
  170. powermcp-0.1.0/PSSE/psspy_command_json/addconditionelement.json +66 -0
  171. powermcp-0.1.0/PSSE/psspy_command_json/addcontingency.json +42 -0
  172. powermcp-0.1.0/PSSE/psspy_command_json/addcontingencyelement.json +70 -0
  173. powermcp-0.1.0/PSSE/psspy_command_json/adddcconvconditionelement.json +66 -0
  174. powermcp-0.1.0/PSSE/psspy_command_json/adddcconvcontingencyelement.json +70 -0
  175. powermcp-0.1.0/PSSE/psspy_command_json/adddcconvremedialactionelement.json +82 -0
  176. powermcp-0.1.0/PSSE/psspy_command_json/adddclineconditionelement.json +62 -0
  177. powermcp-0.1.0/PSSE/psspy_command_json/adddclinecontingencyelement.json +66 -0
  178. powermcp-0.1.0/PSSE/psspy_command_json/adddclineremedialactionelement.json +78 -0
  179. powermcp-0.1.0/PSSE/psspy_command_json/addfixshuntconditionelement.json +66 -0
  180. powermcp-0.1.0/PSSE/psspy_command_json/addfixshuntcontingencyelement.json +70 -0
  181. powermcp-0.1.0/PSSE/psspy_command_json/addfixshuntremedialactionelement.json +82 -0
  182. powermcp-0.1.0/PSSE/psspy_command_json/addgenconditionelement.json +66 -0
  183. powermcp-0.1.0/PSSE/psspy_command_json/addgencontingencyelement.json +70 -0
  184. powermcp-0.1.0/PSSE/psspy_command_json/addgenremedialactionelement.json +82 -0
  185. powermcp-0.1.0/PSSE/psspy_command_json/addloadconditionelement.json +66 -0
  186. powermcp-0.1.0/PSSE/psspy_command_json/addloadcontingencyelement.json +70 -0
  187. powermcp-0.1.0/PSSE/psspy_command_json/addloadremedialactionelement.json +82 -0
  188. powermcp-0.1.0/PSSE/psspy_command_json/addmodellibrary.json +38 -0
  189. powermcp-0.1.0/PSSE/psspy_command_json/addnestedcondition.json +34 -0
  190. powermcp-0.1.0/PSSE/psspy_command_json/addpythonconditionelement.json +70 -0
  191. powermcp-0.1.0/PSSE/psspy_command_json/addpythoncontingencyelement.json +62 -0
  192. powermcp-0.1.0/PSSE/psspy_command_json/addpythonremedialactionelement.json +74 -0
  193. powermcp-0.1.0/PSSE/psspy_command_json/addremedialaction.json +46 -0
  194. powermcp-0.1.0/PSSE/psspy_command_json/addremedialactionelement.json +82 -0
  195. powermcp-0.1.0/PSSE/psspy_command_json/addsubconditionelement.json +62 -0
  196. powermcp-0.1.0/PSSE/psspy_command_json/addsubcontingencyelement.json +66 -0
  197. powermcp-0.1.0/PSSE/psspy_command_json/addsubremedialactionelement.json +78 -0
  198. powermcp-0.1.0/PSSE/psspy_command_json/addvscdcconditionelement.json +62 -0
  199. powermcp-0.1.0/PSSE/psspy_command_json/addvscdccontingencyelement.json +66 -0
  200. powermcp-0.1.0/PSSE/psspy_command_json/addvscdcremedialactionelement.json +78 -0
  201. powermcp-0.1.0/PSSE/psspy_command_json/afactsbuschar.json +180 -0
  202. powermcp-0.1.0/PSSE/psspy_command_json/afactsbuscount.json +124 -0
  203. powermcp-0.1.0/PSSE/psspy_command_json/afactsbuscplx.json +184 -0
  204. powermcp-0.1.0/PSSE/psspy_command_json/afactsbusint.json +204 -0
  205. powermcp-0.1.0/PSSE/psspy_command_json/afactsbusreal.json +248 -0
  206. powermcp-0.1.0/PSSE/psspy_command_json/afactsbustypes.json +62 -0
  207. powermcp-0.1.0/PSSE/psspy_command_json/afactschar.json +150 -0
  208. powermcp-0.1.0/PSSE/psspy_command_json/afactscount.json +112 -0
  209. powermcp-0.1.0/PSSE/psspy_command_json/afactscplx.json +170 -0
  210. powermcp-0.1.0/PSSE/psspy_command_json/afactsint.json +170 -0
  211. powermcp-0.1.0/PSSE/psspy_command_json/afactsreal.json +314 -0
  212. powermcp-0.1.0/PSSE/psspy_command_json/afactstypes.json +62 -0
  213. powermcp-0.1.0/PSSE/psspy_command_json/aflowchar.json +166 -0
  214. powermcp-0.1.0/PSSE/psspy_command_json/aflowcount.json +120 -0
  215. powermcp-0.1.0/PSSE/psspy_command_json/aflowcplx.json +154 -0
  216. powermcp-0.1.0/PSSE/psspy_command_json/aflowint.json +198 -0
  217. powermcp-0.1.0/PSSE/psspy_command_json/aflowreal.json +266 -0
  218. powermcp-0.1.0/PSSE/psspy_command_json/aflowtypes.json +62 -0
  219. powermcp-0.1.0/PSSE/psspy_command_json/afxshntbuschar.json +106 -0
  220. powermcp-0.1.0/PSSE/psspy_command_json/afxshntbuscount.json +80 -0
  221. powermcp-0.1.0/PSSE/psspy_command_json/afxshntbuscplx.json +142 -0
  222. powermcp-0.1.0/PSSE/psspy_command_json/afxshntbusint.json +134 -0
  223. powermcp-0.1.0/PSSE/psspy_command_json/afxshntbusreal.json +158 -0
  224. powermcp-0.1.0/PSSE/psspy_command_json/afxshntbustypes.json +62 -0
  225. powermcp-0.1.0/PSSE/psspy_command_json/afxshuntchar.json +106 -0
  226. powermcp-0.1.0/PSSE/psspy_command_json/afxshuntcount.json +76 -0
  227. powermcp-0.1.0/PSSE/psspy_command_json/afxshuntcplx.json +126 -0
  228. powermcp-0.1.0/PSSE/psspy_command_json/afxshuntint.json +114 -0
  229. powermcp-0.1.0/PSSE/psspy_command_json/afxshuntreal.json +126 -0
  230. powermcp-0.1.0/PSSE/psspy_command_json/afxshunttypes.json +62 -0
  231. powermcp-0.1.0/PSSE/psspy_command_json/agcapcount.json +46 -0
  232. powermcp-0.1.0/PSSE/psspy_command_json/agcapreal.json +70 -0
  233. powermcp-0.1.0/PSSE/psspy_command_json/agenbuschar.json +114 -0
  234. powermcp-0.1.0/PSSE/psspy_command_json/agenbuscount.json +80 -0
  235. powermcp-0.1.0/PSSE/psspy_command_json/agenbuscplx.json +118 -0
  236. powermcp-0.1.0/PSSE/psspy_command_json/agenbusint.json +142 -0
  237. powermcp-0.1.0/PSSE/psspy_command_json/agenbusreal.json +210 -0
  238. powermcp-0.1.0/PSSE/psspy_command_json/agenbustypes.json +62 -0
  239. powermcp-0.1.0/PSSE/psspy_command_json/aindmacbuschar.json +130 -0
  240. powermcp-0.1.0/PSSE/psspy_command_json/aindmacbuscount.json +104 -0
  241. powermcp-0.1.0/PSSE/psspy_command_json/aindmacbuscplx.json +142 -0
  242. powermcp-0.1.0/PSSE/psspy_command_json/aindmacbusint.json +150 -0
  243. powermcp-0.1.0/PSSE/psspy_command_json/aindmacbusreal.json +158 -0
  244. powermcp-0.1.0/PSSE/psspy_command_json/aindmacbustypes.json +62 -0
  245. powermcp-0.1.0/PSSE/psspy_command_json/aindmacchar.json +138 -0
  246. powermcp-0.1.0/PSSE/psspy_command_json/aindmaccount.json +108 -0
  247. powermcp-0.1.0/PSSE/psspy_command_json/aindmaccplx.json +158 -0
  248. powermcp-0.1.0/PSSE/psspy_command_json/aindmacint.json +178 -0
  249. powermcp-0.1.0/PSSE/psspy_command_json/aindmacreal.json +274 -0
  250. powermcp-0.1.0/PSSE/psspy_command_json/aindmactypes.json +62 -0
  251. powermcp-0.1.0/PSSE/psspy_command_json/alert.json +15 -0
  252. powermcp-0.1.0/PSSE/psspy_command_json/alert_output.json +104 -0
  253. powermcp-0.1.0/PSSE/psspy_command_json/allow_pssuserpf.json +50 -0
  254. powermcp-0.1.0/PSSE/psspy_command_json/aloadchar.json +110 -0
  255. powermcp-0.1.0/PSSE/psspy_command_json/aloadcount.json +76 -0
  256. powermcp-0.1.0/PSSE/psspy_command_json/aloadcplx.json +190 -0
  257. powermcp-0.1.0/PSSE/psspy_command_json/aloadint.json +142 -0
  258. powermcp-0.1.0/PSSE/psspy_command_json/aloadreal.json +178 -0
  259. powermcp-0.1.0/PSSE/psspy_command_json/aloadtypes.json +62 -0
  260. powermcp-0.1.0/PSSE/psspy_command_json/alodbuschar.json +130 -0
  261. powermcp-0.1.0/PSSE/psspy_command_json/alodbuscount.json +104 -0
  262. powermcp-0.1.0/PSSE/psspy_command_json/alodbuscplx.json +198 -0
  263. powermcp-0.1.0/PSSE/psspy_command_json/alodbusint.json +158 -0
  264. powermcp-0.1.0/PSSE/psspy_command_json/alodbusreal.json +214 -0
  265. powermcp-0.1.0/PSSE/psspy_command_json/alodbustypes.json +62 -0
  266. powermcp-0.1.0/PSSE/psspy_command_json/alph.json +54 -0
  267. powermcp-0.1.0/PSSE/psspy_command_json/amachchar.json +118 -0
  268. powermcp-0.1.0/PSSE/psspy_command_json/amachcount.json +76 -0
  269. powermcp-0.1.0/PSSE/psspy_command_json/amachcplx.json +134 -0
  270. powermcp-0.1.0/PSSE/psspy_command_json/amachint.json +154 -0
  271. powermcp-0.1.0/PSSE/psspy_command_json/amachreal.json +214 -0
  272. powermcp-0.1.0/PSSE/psspy_command_json/amachtypes.json +62 -0
  273. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdcchar.json +128 -0
  274. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdcconvchar.json +158 -0
  275. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdcconvcount.json +102 -0
  276. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdcconvcplx.json +154 -0
  277. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdcconvint.json +170 -0
  278. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdcconvreal.json +250 -0
  279. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdcconvtypes.json +62 -0
  280. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdccount.json +90 -0
  281. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdccplx.json +116 -0
  282. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdcint.json +132 -0
  283. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdcreal.json +128 -0
  284. powermcp-0.1.0/PSSE/psspy_command_json/amultitrmdctypes.json +62 -0
  285. powermcp-0.1.0/PSSE/psspy_command_json/anodechar.json +82 -0
  286. powermcp-0.1.0/PSSE/psspy_command_json/anodecount.json +46 -0
  287. powermcp-0.1.0/PSSE/psspy_command_json/anodeint.json +90 -0
  288. powermcp-0.1.0/PSSE/psspy_command_json/anodereal.json +82 -0
  289. powermcp-0.1.0/PSSE/psspy_command_json/anodetypes.json +62 -0
  290. powermcp-0.1.0/PSSE/psspy_command_json/ansi.json +162 -0
  291. powermcp-0.1.0/PSSE/psspy_command_json/ansi_2.json +190 -0
  292. powermcp-0.1.0/PSSE/psspy_command_json/ansi_3.json +194 -0
  293. powermcp-0.1.0/PSSE/psspy_command_json/aownerchar.json +90 -0
  294. powermcp-0.1.0/PSSE/psspy_command_json/aownercount.json +68 -0
  295. powermcp-0.1.0/PSSE/psspy_command_json/aownercplx.json +134 -0
  296. powermcp-0.1.0/PSSE/psspy_command_json/aownerint.json +122 -0
  297. powermcp-0.1.0/PSSE/psspy_command_json/aownerreal.json +182 -0
  298. powermcp-0.1.0/PSSE/psspy_command_json/aownertypes.json +62 -0
  299. powermcp-0.1.0/PSSE/psspy_command_json/apierrstr.json +42 -0
  300. powermcp-0.1.0/PSSE/psspy_command_json/append_accc.json +138 -0
  301. powermcp-0.1.0/PSSE/psspy_command_json/append_ras.json +38 -0
  302. powermcp-0.1.0/PSSE/psspy_command_json/appendrecording.json +46 -0
  303. powermcp-0.1.0/PSSE/psspy_command_json/apply_alternate_step_size.json +50 -0
  304. powermcp-0.1.0/PSSE/psspy_command_json/apply_automatic_scaling.json +50 -0
  305. powermcp-0.1.0/PSSE/psspy_command_json/apply_var_limits.json +58 -0
  306. powermcp-0.1.0/PSSE/psspy_command_json/ardat.json +118 -0
  307. powermcp-0.1.0/PSSE/psspy_command_json/area.json +54 -0
  308. powermcp-0.1.0/PSSE/psspy_command_json/area_2.json +76 -0
  309. powermcp-0.1.0/PSSE/psspy_command_json/area_data.json +70 -0
  310. powermcp-0.1.0/PSSE/psspy_command_json/area_zone.json +54 -0
  311. powermcp-0.1.0/PSSE/psspy_command_json/aredat.json +66 -0
  312. powermcp-0.1.0/PSSE/psspy_command_json/areint.json +54 -0
  313. powermcp-0.1.0/PSSE/psspy_command_json/arenam.json +38 -0
  314. powermcp-0.1.0/PSSE/psspy_command_json/arenum.json +38 -0
  315. powermcp-0.1.0/PSSE/psspy_command_json/areuse.json +36 -0
  316. powermcp-0.1.0/PSSE/psspy_command_json/aritoj.json +46 -0
  317. powermcp-0.1.0/PSSE/psspy_command_json/arnm.json +100 -0
  318. powermcp-0.1.0/PSSE/psspy_command_json/arnm_2.json +112 -0
  319. powermcp-0.1.0/PSSE/psspy_command_json/ascc.json +162 -0
  320. powermcp-0.1.0/PSSE/psspy_command_json/ascc_1a.json +216 -0
  321. powermcp-0.1.0/PSSE/psspy_command_json/ascc_2.json +204 -0
  322. powermcp-0.1.0/PSSE/psspy_command_json/ascc_3.json +404 -0
  323. powermcp-0.1.0/PSSE/psspy_command_json/ascc_scfile.json +58 -0
  324. powermcp-0.1.0/PSSE/psspy_command_json/astaswdevchar.json +94 -0
  325. powermcp-0.1.0/PSSE/psspy_command_json/astaswdevcount.json +46 -0
  326. powermcp-0.1.0/PSSE/psspy_command_json/astaswdevcplx.json +74 -0
  327. powermcp-0.1.0/PSSE/psspy_command_json/astaswdevint.json +102 -0
  328. powermcp-0.1.0/PSSE/psspy_command_json/astaswdevreal.json +138 -0
  329. powermcp-0.1.0/PSSE/psspy_command_json/astaswdevtypes.json +62 -0
  330. powermcp-0.1.0/PSSE/psspy_command_json/astationchar.json +70 -0
  331. powermcp-0.1.0/PSSE/psspy_command_json/astationcount.json +46 -0
  332. powermcp-0.1.0/PSSE/psspy_command_json/astationint.json +86 -0
  333. powermcp-0.1.0/PSSE/psspy_command_json/astationreal.json +78 -0
  334. powermcp-0.1.0/PSSE/psspy_command_json/astationtypes.json +62 -0
  335. powermcp-0.1.0/PSSE/psspy_command_json/astr.json +176 -0
  336. powermcp-0.1.0/PSSE/psspy_command_json/aswshchar.json +126 -0
  337. powermcp-0.1.0/PSSE/psspy_command_json/aswshcount.json +76 -0
  338. powermcp-0.1.0/PSSE/psspy_command_json/aswshcplx.json +114 -0
  339. powermcp-0.1.0/PSSE/psspy_command_json/aswshint.json +218 -0
  340. powermcp-0.1.0/PSSE/psspy_command_json/aswshreal.json +342 -0
  341. powermcp-0.1.0/PSSE/psspy_command_json/aswshtypes.json +62 -0
  342. powermcp-0.1.0/PSSE/psspy_command_json/aswshuntbuschar.json +106 -0
  343. powermcp-0.1.0/PSSE/psspy_command_json/aswshuntbuscount.json +80 -0
  344. powermcp-0.1.0/PSSE/psspy_command_json/aswshuntbuscplx.json +110 -0
  345. powermcp-0.1.0/PSSE/psspy_command_json/aswshuntbusint.json +134 -0
  346. powermcp-0.1.0/PSSE/psspy_command_json/aswshuntbusreal.json +158 -0
  347. powermcp-0.1.0/PSSE/psspy_command_json/aswshuntbustypes.json +62 -0
  348. powermcp-0.1.0/PSSE/psspy_command_json/asys.json +42 -0
  349. powermcp-0.1.0/PSSE/psspy_command_json/asysdef.json +46 -0
  350. powermcp-0.1.0/PSSE/psspy_command_json/asysinit.json +30 -0
  351. powermcp-0.1.0/PSSE/psspy_command_json/aterminalchar.json +110 -0
  352. powermcp-0.1.0/PSSE/psspy_command_json/aterminalcount.json +46 -0
  353. powermcp-0.1.0/PSSE/psspy_command_json/aterminalint.json +98 -0
  354. powermcp-0.1.0/PSSE/psspy_command_json/aterminaltypes.json +62 -0
  355. powermcp-0.1.0/PSSE/psspy_command_json/atr3char.json +188 -0
  356. powermcp-0.1.0/PSSE/psspy_command_json/atr3count.json +126 -0
  357. powermcp-0.1.0/PSSE/psspy_command_json/atr3cplx.json +268 -0
  358. powermcp-0.1.0/PSSE/psspy_command_json/atr3int.json +252 -0
  359. powermcp-0.1.0/PSSE/psspy_command_json/atr3real.json +184 -0
  360. powermcp-0.1.0/PSSE/psspy_command_json/atr3types.json +62 -0
  361. powermcp-0.1.0/PSSE/psspy_command_json/atrnchar.json +212 -0
  362. powermcp-0.1.0/PSSE/psspy_command_json/atrncount.json +126 -0
  363. powermcp-0.1.0/PSSE/psspy_command_json/atrncplx.json +236 -0
  364. powermcp-0.1.0/PSSE/psspy_command_json/atrnint.json +296 -0
  365. powermcp-0.1.0/PSSE/psspy_command_json/atrnreal.json +748 -0
  366. powermcp-0.1.0/PSSE/psspy_command_json/atrntypes.json +62 -0
  367. powermcp-0.1.0/PSSE/psspy_command_json/aulist.json +76 -0
  368. powermcp-0.1.0/PSSE/psspy_command_json/auxmod_pack.json +25 -0
  369. powermcp-0.1.0/PSSE/psspy_command_json/auxmod_unconnected.json +46 -0
  370. powermcp-0.1.0/PSSE/psspy_command_json/auxmod_user.json +46 -0
  371. powermcp-0.1.0/PSSE/psspy_command_json/avoltagedroopchar.json +50 -0
  372. powermcp-0.1.0/PSSE/psspy_command_json/avoltagedroopcount.json +29 -0
  373. powermcp-0.1.0/PSSE/psspy_command_json/avoltagedroopint.json +62 -0
  374. powermcp-0.1.0/PSSE/psspy_command_json/avoltagedroopreal.json +90 -0
  375. powermcp-0.1.0/PSSE/psspy_command_json/avscdcchar.json +132 -0
  376. powermcp-0.1.0/PSSE/psspy_command_json/avscdcconvchar.json +170 -0
  377. powermcp-0.1.0/PSSE/psspy_command_json/avscdcconvcount.json +106 -0
  378. powermcp-0.1.0/PSSE/psspy_command_json/avscdcconvcplx.json +158 -0
  379. powermcp-0.1.0/PSSE/psspy_command_json/avscdcconvint.json +170 -0
  380. powermcp-0.1.0/PSSE/psspy_command_json/avscdcconvreal.json +250 -0
  381. powermcp-0.1.0/PSSE/psspy_command_json/avscdcconvtypes.json +62 -0
  382. powermcp-0.1.0/PSSE/psspy_command_json/avscdccount.json +94 -0
  383. powermcp-0.1.0/PSSE/psspy_command_json/avscdccplx.json +120 -0
  384. powermcp-0.1.0/PSSE/psspy_command_json/avscdcint.json +144 -0
  385. powermcp-0.1.0/PSSE/psspy_command_json/avscdcreal.json +152 -0
  386. powermcp-0.1.0/PSSE/psspy_command_json/avscdctypes.json +62 -0
  387. powermcp-0.1.0/PSSE/psspy_command_json/awndchar.json +212 -0
  388. powermcp-0.1.0/PSSE/psspy_command_json/awndcount.json +130 -0
  389. powermcp-0.1.0/PSSE/psspy_command_json/awndcplx.json +188 -0
  390. powermcp-0.1.0/PSSE/psspy_command_json/awndint.json +300 -0
  391. powermcp-0.1.0/PSSE/psspy_command_json/awndreal.json +740 -0
  392. powermcp-0.1.0/PSSE/psspy_command_json/awndtypes.json +62 -0
  393. powermcp-0.1.0/PSSE/psspy_command_json/azmutchar.json +188 -0
  394. powermcp-0.1.0/PSSE/psspy_command_json/azmutcount.json +130 -0
  395. powermcp-0.1.0/PSSE/psspy_command_json/azmutcplx.json +152 -0
  396. powermcp-0.1.0/PSSE/psspy_command_json/azmutint.json +180 -0
  397. powermcp-0.1.0/PSSE/psspy_command_json/azmutreal.json +164 -0
  398. powermcp-0.1.0/PSSE/psspy_command_json/azmuttypes.json +62 -0
  399. powermcp-0.1.0/PSSE/psspy_command_json/azonechar.json +90 -0
  400. powermcp-0.1.0/PSSE/psspy_command_json/azonecount.json +68 -0
  401. powermcp-0.1.0/PSSE/psspy_command_json/azonecplx.json +134 -0
  402. powermcp-0.1.0/PSSE/psspy_command_json/azoneint.json +106 -0
  403. powermcp-0.1.0/PSSE/psspy_command_json/azonereal.json +182 -0
  404. powermcp-0.1.0/PSSE/psspy_command_json/azonetypes.json +62 -0
  405. powermcp-0.1.0/PSSE/psspy_command_json/bad_iter_coarse_limit.json +38 -0
  406. powermcp-0.1.0/PSSE/psspy_command_json/bad_iter_fine_limit.json +38 -0
  407. powermcp-0.1.0/PSSE/psspy_command_json/base_frequency.json +38 -0
  408. powermcp-0.1.0/PSSE/psspy_command_json/beginreport.json +10 -0
  409. powermcp-0.1.0/PSSE/psspy_command_json/bgen.json +76 -0
  410. powermcp-0.1.0/PSSE/psspy_command_json/bkdy.json +126 -0
  411. powermcp-0.1.0/PSSE/psspy_command_json/branch_app_r_x_channel.json +102 -0
  412. powermcp-0.1.0/PSSE/psspy_command_json/branch_chng.json +160 -0
  413. powermcp-0.1.0/PSSE/psspy_command_json/branch_chng_3.json +234 -0
  414. powermcp-0.1.0/PSSE/psspy_command_json/branch_data.json +176 -0
  415. powermcp-0.1.0/PSSE/psspy_command_json/branch_data_3.json +234 -0
  416. powermcp-0.1.0/PSSE/psspy_command_json/branch_mva_channel.json +94 -0
  417. powermcp-0.1.0/PSSE/psspy_command_json/branch_p_and_q_channel.json +102 -0
  418. powermcp-0.1.0/PSSE/psspy_command_json/branch_p_channel.json +94 -0
  419. powermcp-0.1.0/PSSE/psspy_command_json/brch.json +142 -0
  420. powermcp-0.1.0/PSSE/psspy_command_json/brch_2.json +146 -0
  421. powermcp-0.1.0/PSSE/psspy_command_json/brncur.json +54 -0
  422. powermcp-0.1.0/PSSE/psspy_command_json/brndat.json +118 -0
  423. powermcp-0.1.0/PSSE/psspy_command_json/brndt2.json +102 -0
  424. powermcp-0.1.0/PSSE/psspy_command_json/brnflo.json +50 -0
  425. powermcp-0.1.0/PSSE/psspy_command_json/brnint.json +130 -0
  426. powermcp-0.1.0/PSSE/psspy_command_json/brnmsc.json +158 -0
  427. powermcp-0.1.0/PSSE/psspy_command_json/brnmva.json +50 -0
  428. powermcp-0.1.0/PSSE/psspy_command_json/brnnam.json +50 -0
  429. powermcp-0.1.0/PSSE/psspy_command_json/brnstt.json +58 -0
  430. powermcp-0.1.0/PSSE/psspy_command_json/bsnm.json +238 -0
  431. powermcp-0.1.0/PSSE/psspy_command_json/bsys.json +96 -0
  432. powermcp-0.1.0/PSSE/psspy_command_json/bsysadd.json +92 -0
  433. powermcp-0.1.0/PSSE/psspy_command_json/bsysdef.json +46 -0
  434. powermcp-0.1.0/PSSE/psspy_command_json/bsysdelo.json +46 -0
  435. powermcp-0.1.0/PSSE/psspy_command_json/bsysinit.json +30 -0
  436. powermcp-0.1.0/PSSE/psspy_command_json/bsysisdef.json +32 -0
  437. powermcp-0.1.0/PSSE/psspy_command_json/bsysmem.json +38 -0
  438. powermcp-0.1.0/PSSE/psspy_command_json/bsyso.json +38 -0
  439. powermcp-0.1.0/PSSE/psspy_command_json/bsysrcl.json +46 -0
  440. powermcp-0.1.0/PSSE/psspy_command_json/bus_chng_3.json +112 -0
  441. powermcp-0.1.0/PSSE/psspy_command_json/bus_chng_4.json +132 -0
  442. powermcp-0.1.0/PSSE/psspy_command_json/bus_data.json +104 -0
  443. powermcp-0.1.0/PSSE/psspy_command_json/bus_data_2.json +96 -0
  444. powermcp-0.1.0/PSSE/psspy_command_json/bus_data_3.json +112 -0
  445. powermcp-0.1.0/PSSE/psspy_command_json/bus_data_4.json +136 -0
  446. powermcp-0.1.0/PSSE/psspy_command_json/bus_frequency_channel.json +58 -0
  447. powermcp-0.1.0/PSSE/psspy_command_json/bus_input.json +50 -0
  448. powermcp-0.1.0/PSSE/psspy_command_json/bus_number.json +54 -0
  449. powermcp-0.1.0/PSSE/psspy_command_json/bus_output.json +50 -0
  450. powermcp-0.1.0/PSSE/psspy_command_json/bus_size_level.json +42 -0
  451. powermcp-0.1.0/PSSE/psspy_command_json/busdat.json +90 -0
  452. powermcp-0.1.0/PSSE/psspy_command_json/busdt1.json +160 -0
  453. powermcp-0.1.0/PSSE/psspy_command_json/busdt2.json +164 -0
  454. powermcp-0.1.0/PSSE/psspy_command_json/busexs.json +30 -0
  455. powermcp-0.1.0/PSSE/psspy_command_json/busint.json +70 -0
  456. powermcp-0.1.0/PSSE/psspy_command_json/busmsm.json +38 -0
  457. powermcp-0.1.0/PSSE/psspy_command_json/busn.json +42 -0
  458. powermcp-0.1.0/PSSE/psspy_command_json/busordpos.json +58 -0
  459. powermcp-0.1.0/PSSE/psspy_command_json/bussectdat.json +98 -0
  460. powermcp-0.1.0/PSSE/psspy_command_json/bussectdt1.json +172 -0
  461. powermcp-0.1.0/PSSE/psspy_command_json/bussectdt2.json +172 -0
  462. powermcp-0.1.0/PSSE/psspy_command_json/bussectexs.json +38 -0
  463. powermcp-0.1.0/PSSE/psspy_command_json/bussectint.json +78 -0
  464. powermcp-0.1.0/PSSE/psspy_command_json/ca_iterations.json +38 -0
  465. powermcp-0.1.0/PSSE/psspy_command_json/case.json +42 -0
  466. powermcp-0.1.0/PSSE/psspy_command_json/case_title_data.json +42 -0
  467. powermcp-0.1.0/PSSE/psspy_command_json/casolution_parameters.json +96 -0
  468. powermcp-0.1.0/PSSE/psspy_command_json/casolution_parameters_2.json +100 -0
  469. powermcp-0.1.0/PSSE/psspy_command_json/casolution_parameters_3.json +104 -0
  470. powermcp-0.1.0/PSSE/psspy_command_json/cct2dco_list.json +76 -0
  471. powermcp-0.1.0/PSSE/psspy_command_json/cct2dcomod_remove.json +42 -0
  472. powermcp-0.1.0/PSSE/psspy_command_json/cct2dcomod_status.json +62 -0
  473. powermcp-0.1.0/PSSE/psspy_command_json/cct2wtd_list.json +76 -0
  474. powermcp-0.1.0/PSSE/psspy_command_json/cct2wtdmod_remove.json +50 -0
  475. powermcp-0.1.0/PSSE/psspy_command_json/cct2wtdmod_status.json +70 -0
  476. powermcp-0.1.0/PSSE/psspy_command_json/cct3wtd_list.json +76 -0
  477. powermcp-0.1.0/PSSE/psspy_command_json/cct3wtdmod_remove.json +54 -0
  478. powermcp-0.1.0/PSSE/psspy_command_json/cct3wtdmod_status.json +74 -0
  479. powermcp-0.1.0/PSSE/psspy_command_json/cctbrnd_list.json +76 -0
  480. powermcp-0.1.0/PSSE/psspy_command_json/cctbrndmod_remove.json +50 -0
  481. powermcp-0.1.0/PSSE/psspy_command_json/cctbrndmod_status.json +70 -0
  482. powermcp-0.1.0/PSSE/psspy_command_json/cctbrno_list.json +76 -0
  483. powermcp-0.1.0/PSSE/psspy_command_json/cctbrnomod_remove.json +54 -0
  484. powermcp-0.1.0/PSSE/psspy_command_json/cctbrnomod_status.json +74 -0
  485. powermcp-0.1.0/PSSE/psspy_command_json/cctbuso_list.json +76 -0
  486. powermcp-0.1.0/PSSE/psspy_command_json/cctbusomod_remove.json +42 -0
  487. powermcp-0.1.0/PSSE/psspy_command_json/cctbusomod_status.json +62 -0
  488. powermcp-0.1.0/PSSE/psspy_command_json/cctmcno_list.json +76 -0
  489. powermcp-0.1.0/PSSE/psspy_command_json/cctmcnomod_remove.json +50 -0
  490. powermcp-0.1.0/PSSE/psspy_command_json/cctmcnomod_status.json +70 -0
  491. powermcp-0.1.0/PSSE/psspy_command_json/cctmcnp_list.json +76 -0
  492. powermcp-0.1.0/PSSE/psspy_command_json/cctmcnpmod_remove.json +50 -0
  493. powermcp-0.1.0/PSSE/psspy_command_json/cctmcnpmod_status.json +70 -0
  494. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_2dco.json +46 -0
  495. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_2wtd.json +58 -0
  496. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_3wtd.json +62 -0
  497. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_brnd.json +58 -0
  498. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_brno.json +58 -0
  499. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_buso.json +46 -0
  500. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_mcno.json +50 -0
  501. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_mcnp.json +50 -0
  502. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_msco.json +46 -0
  503. powermcp-0.1.0/PSSE/psspy_command_json/cctmdlnam_swso_2.json +54 -0
  504. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_2dco.json +102 -0
  505. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_2wtd.json +110 -0
  506. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_3wtd.json +114 -0
  507. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_brnd.json +110 -0
  508. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_brno.json +114 -0
  509. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_buso.json +102 -0
  510. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_mcno.json +106 -0
  511. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_mcnp.json +106 -0
  512. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_msco.json +98 -0
  513. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_swso.json +106 -0
  514. powermcp-0.1.0/PSSE/psspy_command_json/cctmind_swso_2.json +110 -0
  515. powermcp-0.1.0/PSSE/psspy_command_json/cctmod_pack.json +25 -0
  516. powermcp-0.1.0/PSSE/psspy_command_json/cctmod_user.json +46 -0
  517. powermcp-0.1.0/PSSE/psspy_command_json/cctmsco_list.json +76 -0
  518. powermcp-0.1.0/PSSE/psspy_command_json/cctmscomod_remove.json +38 -0
  519. powermcp-0.1.0/PSSE/psspy_command_json/cctmscomod_status.json +58 -0
  520. powermcp-0.1.0/PSSE/psspy_command_json/cctswso_list.json +76 -0
  521. powermcp-0.1.0/PSSE/psspy_command_json/cctswsomod_remove.json +42 -0
  522. powermcp-0.1.0/PSSE/psspy_command_json/cctswsomod_remove_2.json +46 -0
  523. powermcp-0.1.0/PSSE/psspy_command_json/cctswsomod_status.json +62 -0
  524. powermcp-0.1.0/PSSE/psspy_command_json/cctswsomod_status_2.json +66 -0
  525. powermcp-0.1.0/PSSE/psspy_command_json/change_cct2dcomod_chricn.json +66 -0
  526. powermcp-0.1.0/PSSE/psspy_command_json/change_cct2dcomod_con.json +66 -0
  527. powermcp-0.1.0/PSSE/psspy_command_json/change_cct2dcomod_icon.json +66 -0
  528. powermcp-0.1.0/PSSE/psspy_command_json/change_cct2dcomod_var.json +66 -0
  529. powermcp-0.1.0/PSSE/psspy_command_json/change_cct2wtdmod_chricn.json +78 -0
  530. powermcp-0.1.0/PSSE/psspy_command_json/change_cct2wtdmod_con.json +78 -0
  531. powermcp-0.1.0/PSSE/psspy_command_json/change_cct2wtdmod_icon.json +78 -0
  532. powermcp-0.1.0/PSSE/psspy_command_json/change_cct2wtdmod_var.json +78 -0
  533. powermcp-0.1.0/PSSE/psspy_command_json/change_cct3wtdmod_chricn.json +82 -0
  534. powermcp-0.1.0/PSSE/psspy_command_json/change_cct3wtdmod_con.json +82 -0
  535. powermcp-0.1.0/PSSE/psspy_command_json/change_cct3wtdmod_icon.json +82 -0
  536. powermcp-0.1.0/PSSE/psspy_command_json/change_cct3wtdmod_var.json +82 -0
  537. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbrndmod_chricn.json +78 -0
  538. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbrndmod_con.json +78 -0
  539. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbrndmod_icon.json +78 -0
  540. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbrndmod_var.json +78 -0
  541. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbrnomod_chricn.json +78 -0
  542. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbrnomod_con.json +78 -0
  543. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbrnomod_icon.json +78 -0
  544. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbrnomod_var.json +78 -0
  545. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbusomod_chricn.json +66 -0
  546. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbusomod_con.json +66 -0
  547. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbusomod_icon.json +66 -0
  548. powermcp-0.1.0/PSSE/psspy_command_json/change_cctbusomod_var.json +66 -0
  549. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmcnomod_chricn.json +74 -0
  550. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmcnomod_con.json +74 -0
  551. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmcnomod_icon.json +74 -0
  552. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmcnomod_var.json +74 -0
  553. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmcnpmod_chricn.json +74 -0
  554. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmcnpmod_con.json +74 -0
  555. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmcnpmod_icon.json +74 -0
  556. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmcnpmod_var.json +74 -0
  557. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmscomod_chricn.json +66 -0
  558. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmscomod_con.json +66 -0
  559. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmscomod_icon.json +66 -0
  560. powermcp-0.1.0/PSSE/psspy_command_json/change_cctmscomod_var.json +66 -0
  561. powermcp-0.1.0/PSSE/psspy_command_json/change_cctswsomod_chricn.json +66 -0
  562. powermcp-0.1.0/PSSE/psspy_command_json/change_cctswsomod_chricn_2.json +70 -0
  563. powermcp-0.1.0/PSSE/psspy_command_json/change_cctswsomod_con.json +66 -0
  564. powermcp-0.1.0/PSSE/psspy_command_json/change_cctswsomod_con_2.json +70 -0
  565. powermcp-0.1.0/PSSE/psspy_command_json/change_cctswsomod_icon.json +66 -0
  566. powermcp-0.1.0/PSSE/psspy_command_json/change_cctswsomod_icon_2.json +70 -0
  567. powermcp-0.1.0/PSSE/psspy_command_json/change_cctswsomod_var.json +66 -0
  568. powermcp-0.1.0/PSSE/psspy_command_json/change_cctswsomod_var_2.json +70 -0
  569. powermcp-0.1.0/PSSE/psspy_command_json/change_channel.json +54 -0
  570. powermcp-0.1.0/PSSE/psspy_command_json/change_channel_out_file.json +42 -0
  571. powermcp-0.1.0/PSSE/psspy_command_json/change_chricn.json +38 -0
  572. powermcp-0.1.0/PSSE/psspy_command_json/change_con.json +38 -0
  573. powermcp-0.1.0/PSSE/psspy_command_json/change_fctmod_chricn.json +66 -0
  574. powermcp-0.1.0/PSSE/psspy_command_json/change_fctmod_con.json +66 -0
  575. powermcp-0.1.0/PSSE/psspy_command_json/change_fctmod_data.json +86 -0
  576. powermcp-0.1.0/PSSE/psspy_command_json/change_fctmod_icon.json +66 -0
  577. powermcp-0.1.0/PSSE/psspy_command_json/change_fctmod_var.json +66 -0
  578. powermcp-0.1.0/PSSE/psspy_command_json/change_fctsauxmod_chricn.json +74 -0
  579. powermcp-0.1.0/PSSE/psspy_command_json/change_fctsauxmod_con.json +74 -0
  580. powermcp-0.1.0/PSSE/psspy_command_json/change_fctsauxmod_data.json +94 -0
  581. powermcp-0.1.0/PSSE/psspy_command_json/change_fctsauxmod_icon.json +74 -0
  582. powermcp-0.1.0/PSSE/psspy_command_json/change_fctsauxmod_var.json +74 -0
  583. powermcp-0.1.0/PSSE/psspy_command_json/change_gref.json +50 -0
  584. powermcp-0.1.0/PSSE/psspy_command_json/change_icon.json +38 -0
  585. powermcp-0.1.0/PSSE/psspy_command_json/change_immod_chricn.json +74 -0
  586. powermcp-0.1.0/PSSE/psspy_command_json/change_immod_con.json +74 -0
  587. powermcp-0.1.0/PSSE/psspy_command_json/change_immod_icon.json +74 -0
  588. powermcp-0.1.0/PSSE/psspy_command_json/change_immod_var.json +74 -0
  589. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmod_chricn.json +78 -0
  590. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmod_con.json +78 -0
  591. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmod_data.json +140 -0
  592. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmod_icon.json +78 -0
  593. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmod_var.json +82 -0
  594. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmodc_cdesc.json +138 -0
  595. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmodc_chricn.json +150 -0
  596. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmodc_con.json +150 -0
  597. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmodc_icon.json +150 -0
  598. powermcp-0.1.0/PSSE/psspy_command_json/change_ldmodc_var.json +154 -0
  599. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdcauxmod_chricn.json +74 -0
  600. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdcauxmod_con.json +74 -0
  601. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdcauxmod_data.json +94 -0
  602. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdcauxmod_icon.json +74 -0
  603. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdcauxmod_var.json +74 -0
  604. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdclmod_chricn.json +66 -0
  605. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdclmod_con.json +66 -0
  606. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdclmod_data.json +82 -0
  607. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdclmod_icon.json +66 -0
  608. powermcp-0.1.0/PSSE/psspy_command_json/change_mtdclmod_var.json +66 -0
  609. powermcp-0.1.0/PSSE/psspy_command_json/change_plmod_chricn.json +78 -0
  610. powermcp-0.1.0/PSSE/psspy_command_json/change_plmod_con.json +78 -0
  611. powermcp-0.1.0/PSSE/psspy_command_json/change_plmod_data.json +134 -0
  612. powermcp-0.1.0/PSSE/psspy_command_json/change_plmod_icon.json +78 -0
  613. powermcp-0.1.0/PSSE/psspy_command_json/change_plmod_var.json +78 -0
  614. powermcp-0.1.0/PSSE/psspy_command_json/change_rlmod_chricn.json +86 -0
  615. powermcp-0.1.0/PSSE/psspy_command_json/change_rlmod_con.json +86 -0
  616. powermcp-0.1.0/PSSE/psspy_command_json/change_rlmod_data.json +102 -0
  617. powermcp-0.1.0/PSSE/psspy_command_json/change_rlmod_icon.json +86 -0
  618. powermcp-0.1.0/PSSE/psspy_command_json/change_rlmod_var.json +86 -0
  619. powermcp-0.1.0/PSSE/psspy_command_json/change_state.json +54 -0
  620. powermcp-0.1.0/PSSE/psspy_command_json/change_swsmod_chricn.json +70 -0
  621. powermcp-0.1.0/PSSE/psspy_command_json/change_swsmod_chricn_2.json +74 -0
  622. powermcp-0.1.0/PSSE/psspy_command_json/change_swsmod_con.json +70 -0
  623. powermcp-0.1.0/PSSE/psspy_command_json/change_swsmod_con_2.json +74 -0
  624. powermcp-0.1.0/PSSE/psspy_command_json/change_swsmod_icon.json +70 -0
  625. powermcp-0.1.0/PSSE/psspy_command_json/change_swsmod_icon_2.json +74 -0
  626. powermcp-0.1.0/PSSE/psspy_command_json/change_swsmod_var.json +70 -0
  627. powermcp-0.1.0/PSSE/psspy_command_json/change_swsmod_var_2.json +74 -0
  628. powermcp-0.1.0/PSSE/psspy_command_json/change_swsref.json +46 -0
  629. powermcp-0.1.0/PSSE/psspy_command_json/change_swsref_2.json +50 -0
  630. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdcauxmod_chricn.json +74 -0
  631. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdcauxmod_con.json +74 -0
  632. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdcauxmod_data.json +94 -0
  633. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdcauxmod_icon.json +74 -0
  634. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdcauxmod_var.json +74 -0
  635. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdclmod_chricn.json +66 -0
  636. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdclmod_con.json +66 -0
  637. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdclmod_data.json +86 -0
  638. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdclmod_icon.json +66 -0
  639. powermcp-0.1.0/PSSE/psspy_command_json/change_ttdclmod_var.json +66 -0
  640. powermcp-0.1.0/PSSE/psspy_command_json/change_var.json +38 -0
  641. powermcp-0.1.0/PSSE/psspy_command_json/change_vref.json +54 -0
  642. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdcauxmod_chricn.json +74 -0
  643. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdcauxmod_con.json +74 -0
  644. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdcauxmod_data.json +94 -0
  645. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdcauxmod_icon.json +74 -0
  646. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdcauxmod_var.json +74 -0
  647. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdclmod_chricn.json +66 -0
  648. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdclmod_con.json +66 -0
  649. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdclmod_data.json +86 -0
  650. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdclmod_icon.json +66 -0
  651. powermcp-0.1.0/PSSE/psspy_command_json/change_vsdclmod_var.json +66 -0
  652. powermcp-0.1.0/PSSE/psspy_command_json/change_wnmod_chricn.json +82 -0
  653. powermcp-0.1.0/PSSE/psspy_command_json/change_wnmod_con.json +82 -0
  654. powermcp-0.1.0/PSSE/psspy_command_json/change_wnmod_icon.json +82 -0
  655. powermcp-0.1.0/PSSE/psspy_command_json/change_wnmod_var.json +82 -0
  656. powermcp-0.1.0/PSSE/psspy_command_json/changediagcontour.json +117 -0
  657. powermcp-0.1.0/PSSE/psspy_command_json/check_powerflow_data.json +156 -0
  658. powermcp-0.1.0/PSSE/psspy_command_json/check_sequence_data.json +112 -0
  659. powermcp-0.1.0/PSSE/psspy_command_json/checkdiagfile.json +10 -0
  660. powermcp-0.1.0/PSSE/psspy_command_json/checkvoltagelimits.json +94 -0
  661. powermcp-0.1.0/PSSE/psspy_command_json/chkcntduplicon.json +38 -0
  662. powermcp-0.1.0/PSSE/psspy_command_json/chkcntduplidfx.json +38 -0
  663. powermcp-0.1.0/PSSE/psspy_command_json/chktre.json +35 -0
  664. powermcp-0.1.0/PSSE/psspy_command_json/chnval.json +42 -0
  665. powermcp-0.1.0/PSSE/psspy_command_json/chsb.json +292 -0
  666. powermcp-0.1.0/PSSE/psspy_command_json/clamp_nonoptimized_gens.json +50 -0
  667. powermcp-0.1.0/PSSE/psspy_command_json/clearalertoutput.json +10 -0
  668. powermcp-0.1.0/PSSE/psspy_command_json/clearprogressoutput.json +10 -0
  669. powermcp-0.1.0/PSSE/psspy_command_json/close_powerflow.json +25 -0
  670. powermcp-0.1.0/PSSE/psspy_command_json/close_report.json +25 -0
  671. powermcp-0.1.0/PSSE/psspy_command_json/closediagfile.json +10 -0
  672. powermcp-0.1.0/PSSE/psspy_command_json/closeeventstudyfile.json +10 -0
  673. powermcp-0.1.0/PSSE/psspy_command_json/closescenariofile.json +10 -0
  674. powermcp-0.1.0/PSSE/psspy_command_json/cmpr.json +176 -0
  675. powermcp-0.1.0/PSSE/psspy_command_json/cntb.json +192 -0
  676. powermcp-0.1.0/PSSE/psspy_command_json/cong.json +66 -0
  677. powermcp-0.1.0/PSSE/psspy_command_json/conl.json +148 -0
  678. powermcp-0.1.0/PSSE/psspy_command_json/connectivity_check.json +50 -0
  679. powermcp-0.1.0/PSSE/psspy_command_json/constrain_interface_flows.json +50 -0
  680. powermcp-0.1.0/PSSE/psspy_command_json/control_area_interchange.json +54 -0
  681. powermcp-0.1.0/PSSE/psspy_command_json/convert_section_to_bus.json +74 -0
  682. powermcp-0.1.0/PSSE/psspy_command_json/crctrun.json +170 -0
  683. powermcp-0.1.0/PSSE/psspy_command_json/crt_plot_channel.json +62 -0
  684. powermcp-0.1.0/PSSE/psspy_command_json/csv_to_rawx.json +50 -0
  685. powermcp-0.1.0/PSSE/psspy_command_json/csv_to_rawx_with_metamodel.json +50 -0
  686. powermcp-0.1.0/PSSE/psspy_command_json/dc2auxmind.json +102 -0
  687. powermcp-0.1.0/PSSE/psspy_command_json/dc2auxmnam.json +50 -0
  688. powermcp-0.1.0/PSSE/psspy_command_json/dc2dat.json +178 -0
  689. powermcp-0.1.0/PSSE/psspy_command_json/dc2dat_2.json +178 -0
  690. powermcp-0.1.0/PSSE/psspy_command_json/dc2int.json +102 -0
  691. powermcp-0.1.0/PSSE/psspy_command_json/dc2int_2.json +102 -0
  692. powermcp-0.1.0/PSSE/psspy_command_json/dc2mind.json +98 -0
  693. powermcp-0.1.0/PSSE/psspy_command_json/dc2mnam.json +46 -0
  694. powermcp-0.1.0/PSSE/psspy_command_json/dc_tap_adjustment.json +50 -0
  695. powermcp-0.1.0/PSSE/psspy_command_json/dccc.json +172 -0
  696. powermcp-0.1.0/PSSE/psspy_command_json/dccc_2.json +188 -0
  697. powermcp-0.1.0/PSSE/psspy_command_json/dccor.json +218 -0
  698. powermcp-0.1.0/PSSE/psspy_command_json/dccor_2.json +238 -0
  699. powermcp-0.1.0/PSSE/psspy_command_json/dclf.json +182 -0
  700. powermcp-0.1.0/PSSE/psspy_command_json/dclf_2.json +188 -0
  701. powermcp-0.1.0/PSSE/psspy_command_json/dclist.json +96 -0
  702. powermcp-0.1.0/PSSE/psspy_command_json/dclmod_pack.json +25 -0
  703. powermcp-0.1.0/PSSE/psspy_command_json/dclmod_unconnected.json +46 -0
  704. powermcp-0.1.0/PSSE/psspy_command_json/dclmod_user.json +46 -0
  705. powermcp-0.1.0/PSSE/psspy_command_json/dcnauxmind.json +102 -0
  706. powermcp-0.1.0/PSSE/psspy_command_json/dcnauxmnam.json +50 -0
  707. powermcp-0.1.0/PSSE/psspy_command_json/dcncin.json +62 -0
  708. powermcp-0.1.0/PSSE/psspy_command_json/dcncin_2.json +62 -0
  709. powermcp-0.1.0/PSSE/psspy_command_json/dcndat.json +158 -0
  710. powermcp-0.1.0/PSSE/psspy_command_json/dcndat_2.json +158 -0
  711. powermcp-0.1.0/PSSE/psspy_command_json/dcnint.json +50 -0
  712. powermcp-0.1.0/PSSE/psspy_command_json/dcnint_2.json +50 -0
  713. powermcp-0.1.0/PSSE/psspy_command_json/dcnmind.json +98 -0
  714. powermcp-0.1.0/PSSE/psspy_command_json/dcnmnam.json +46 -0
  715. powermcp-0.1.0/PSSE/psspy_command_json/dcpscopf.json +270 -0
  716. powermcp-0.1.0/PSSE/psspy_command_json/delete_all_plot_channels.json +25 -0
  717. powermcp-0.1.0/PSSE/psspy_command_json/deletediagcontour.json +10 -0
  718. powermcp-0.1.0/PSSE/psspy_command_json/deltmpfiles.json +21 -0
  719. powermcp-0.1.0/PSSE/psspy_command_json/dfax.json +118 -0
  720. powermcp-0.1.0/PSSE/psspy_command_json/dfax_2.json +130 -0
  721. powermcp-0.1.0/PSSE/psspy_command_json/dfax_contingency.json +54 -0
  722. powermcp-0.1.0/PSSE/psspy_command_json/dfti.json +254 -0
  723. powermcp-0.1.0/PSSE/psspy_command_json/diff.json +398 -0
  724. powermcp-0.1.0/PSSE/psspy_command_json/dist_3phase_bus_fault.json +120 -0
  725. powermcp-0.1.0/PSSE/psspy_command_json/dist_3wind_close.json +62 -0
  726. powermcp-0.1.0/PSSE/psspy_command_json/dist_3wind_fault.json +108 -0
  727. powermcp-0.1.0/PSSE/psspy_command_json/dist_3wind_trip.json +58 -0
  728. powermcp-0.1.0/PSSE/psspy_command_json/dist_branch_close.json +58 -0
  729. powermcp-0.1.0/PSSE/psspy_command_json/dist_branch_fault.json +104 -0
  730. powermcp-0.1.0/PSSE/psspy_command_json/dist_branch_trip.json +54 -0
  731. powermcp-0.1.0/PSSE/psspy_command_json/dist_bus_fault.json +68 -0
  732. powermcp-0.1.0/PSSE/psspy_command_json/dist_bus_fault_2.json +130 -0
  733. powermcp-0.1.0/PSSE/psspy_command_json/dist_bus_fault_3.json +182 -0
  734. powermcp-0.1.0/PSSE/psspy_command_json/dist_bus_trip.json +42 -0
  735. powermcp-0.1.0/PSSE/psspy_command_json/dist_clear_fault.json +82 -0
  736. powermcp-0.1.0/PSSE/psspy_command_json/dist_def_3phase_bus_fault.json +124 -0
  737. powermcp-0.1.0/PSSE/psspy_command_json/dist_def_3wind_fault.json +112 -0
  738. powermcp-0.1.0/PSSE/psspy_command_json/dist_def_branch_fault.json +108 -0
  739. powermcp-0.1.0/PSSE/psspy_command_json/dist_def_scmu_fault_3.json +148 -0
  740. powermcp-0.1.0/PSSE/psspy_command_json/dist_def_spcb_fault_2.json +196 -0
  741. powermcp-0.1.0/PSSE/psspy_command_json/dist_machine_trip.json +50 -0
  742. powermcp-0.1.0/PSSE/psspy_command_json/dist_scmu_fault.json +108 -0
  743. powermcp-0.1.0/PSSE/psspy_command_json/dist_scmu_fault_2.json +112 -0
  744. powermcp-0.1.0/PSSE/psspy_command_json/dist_scmu_fault_3.json +152 -0
  745. powermcp-0.1.0/PSSE/psspy_command_json/dist_spcb_fault.json +176 -0
  746. powermcp-0.1.0/PSSE/psspy_command_json/dist_spcb_fault_2.json +192 -0
  747. powermcp-0.1.0/PSSE/psspy_command_json/dlst.json +82 -0
  748. powermcp-0.1.0/PSSE/psspy_command_json/dmpc.json +136 -0
  749. powermcp-0.1.0/PSSE/psspy_command_json/docu.json +356 -0
  750. powermcp-0.1.0/PSSE/psspy_command_json/dropmodellibrary.json +42 -0
  751. powermcp-0.1.0/PSSE/psspy_command_json/dropmodelprogram.json +38 -0
  752. powermcp-0.1.0/PSSE/psspy_command_json/dscn.json +34 -0
  753. powermcp-0.1.0/PSSE/psspy_command_json/dscval.json +58 -0
  754. powermcp-0.1.0/PSSE/psspy_command_json/dsival.json +58 -0
  755. powermcp-0.1.0/PSSE/psspy_command_json/dsrval.json +70 -0
  756. powermcp-0.1.0/PSSE/psspy_command_json/duplicate_cntlabel_check.json +50 -0
  757. powermcp-0.1.0/PSSE/psspy_command_json/dyda.json +374 -0
  758. powermcp-0.1.0/PSSE/psspy_command_json/dynamics_solution_param_2.json +112 -0
  759. powermcp-0.1.0/PSSE/psspy_command_json/dynamics_solution_params.json +120 -0
  760. powermcp-0.1.0/PSSE/psspy_command_json/dynamicsmode.json +46 -0
  761. powermcp-0.1.0/PSSE/psspy_command_json/dynexportcsv.json +42 -0
  762. powermcp-0.1.0/PSSE/psspy_command_json/dyre_add.json +74 -0
  763. powermcp-0.1.0/PSSE/psspy_command_json/dyre_new.json +74 -0
  764. powermcp-0.1.0/PSSE/psspy_command_json/ecdi.json +144 -0
  765. powermcp-0.1.0/PSSE/psspy_command_json/echo.json +34 -0
  766. powermcp-0.1.0/PSSE/psspy_command_json/eeqv.json +106 -0
  767. powermcp-0.1.0/PSSE/psspy_command_json/enablediagcontour.json +117 -0
  768. powermcp-0.1.0/PSSE/psspy_command_json/eqrd.json +112 -0
  769. powermcp-0.1.0/PSSE/psspy_command_json/erun.json +50 -0
  770. powermcp-0.1.0/PSSE/psspy_command_json/estr_open_circuit_test.json +62 -0
  771. powermcp-0.1.0/PSSE/psspy_command_json/estr_response_ratio_test.json +82 -0
  772. powermcp-0.1.0/PSSE/psspy_command_json/exam.json +54 -0
  773. powermcp-0.1.0/PSSE/psspy_command_json/exportbuslocfile.json +15 -0
  774. powermcp-0.1.0/PSSE/psspy_command_json/exportbuslocfile_2.json +31 -0
  775. powermcp-0.1.0/PSSE/psspy_command_json/exportimagefile.json +47 -0
  776. powermcp-0.1.0/PSSE/psspy_command_json/exportimagefile_2.json +67 -0
  777. powermcp-0.1.0/PSSE/psspy_command_json/extr.json +72 -0
  778. powermcp-0.1.0/PSSE/psspy_command_json/fact.json +29 -0
  779. powermcp-0.1.0/PSSE/psspy_command_json/facts_chng_2.json +182 -0
  780. powermcp-0.1.0/PSSE/psspy_command_json/facts_chng_3.json +190 -0
  781. powermcp-0.1.0/PSSE/psspy_command_json/facts_data.json +174 -0
  782. powermcp-0.1.0/PSSE/psspy_command_json/facts_data_2.json +182 -0
  783. powermcp-0.1.0/PSSE/psspy_command_json/facts_data_3.json +190 -0
  784. powermcp-0.1.0/PSSE/psspy_command_json/fcdauxmind.json +102 -0
  785. powermcp-0.1.0/PSSE/psspy_command_json/fcdauxmnam.json +50 -0
  786. powermcp-0.1.0/PSSE/psspy_command_json/fcddat.json +234 -0
  787. powermcp-0.1.0/PSSE/psspy_command_json/fcddat_2.json +234 -0
  788. powermcp-0.1.0/PSSE/psspy_command_json/fcdint.json +78 -0
  789. powermcp-0.1.0/PSSE/psspy_command_json/fcdint_2.json +86 -0
  790. powermcp-0.1.0/PSSE/psspy_command_json/fcdmind.json +98 -0
  791. powermcp-0.1.0/PSSE/psspy_command_json/fcdmnam.json +42 -0
  792. powermcp-0.1.0/PSSE/psspy_command_json/fclist.json +76 -0
  793. powermcp-0.1.0/PSSE/psspy_command_json/fctmod_pack.json +25 -0
  794. powermcp-0.1.0/PSSE/psspy_command_json/fctmod_remove.json +38 -0
  795. powermcp-0.1.0/PSSE/psspy_command_json/fctmod_status.json +58 -0
  796. powermcp-0.1.0/PSSE/psspy_command_json/fctmod_unconnected.json +46 -0
  797. powermcp-0.1.0/PSSE/psspy_command_json/fctmod_user.json +46 -0
  798. powermcp-0.1.0/PSSE/psspy_command_json/fctsauxmod_remove.json +46 -0
  799. powermcp-0.1.0/PSSE/psspy_command_json/fctsauxmod_status.json +66 -0
  800. powermcp-0.1.0/PSSE/psspy_command_json/fdns.json +174 -0
  801. powermcp-0.1.0/PSSE/psspy_command_json/fetch_adjvar_term_node.json +50 -0
  802. powermcp-0.1.0/PSSE/psspy_command_json/fetch_indmachine_term_node.json +50 -0
  803. powermcp-0.1.0/PSSE/psspy_command_json/fetch_load_term_node.json +50 -0
  804. powermcp-0.1.0/PSSE/psspy_command_json/fetch_machine_term_node.json +50 -0
  805. powermcp-0.1.0/PSSE/psspy_command_json/fetch_shunt_term_node.json +50 -0
  806. powermcp-0.1.0/PSSE/psspy_command_json/fetch_sws_shunt_term_node.json +42 -0
  807. powermcp-0.1.0/PSSE/psspy_command_json/fetch_sws_shunt_term_node_2.json +50 -0
  808. powermcp-0.1.0/PSSE/psspy_command_json/file_overwrite.json +50 -0
  809. powermcp-0.1.0/PSSE/psspy_command_json/filein.json +34 -0
  810. powermcp-0.1.0/PSSE/psspy_command_json/final_opf_barrier_coeff.json +38 -0
  811. powermcp-0.1.0/PSSE/psspy_command_json/find.json +38 -0
  812. powermcp-0.1.0/PSSE/psspy_command_json/flat.json +112 -0
  813. powermcp-0.1.0/PSSE/psspy_command_json/flat_2.json +172 -0
  814. powermcp-0.1.0/PSSE/psspy_command_json/flat_start.json +50 -0
  815. powermcp-0.1.0/PSSE/psspy_command_json/fnsl.json +174 -0
  816. powermcp-0.1.0/PSSE/psspy_command_json/fxsdt1.json +94 -0
  817. powermcp-0.1.0/PSSE/psspy_command_json/fxsdt2.json +94 -0
  818. powermcp-0.1.0/PSSE/psspy_command_json/fxsint.json +78 -0
  819. powermcp-0.1.0/PSSE/psspy_command_json/gcap.json +80 -0
  820. powermcp-0.1.0/PSSE/psspy_command_json/gcap_2.json +76 -0
  821. powermcp-0.1.0/PSSE/psspy_command_json/gdif.json +106 -0
  822. powermcp-0.1.0/PSSE/psspy_command_json/gencnv.json +15 -0
  823. powermcp-0.1.0/PSSE/psspy_command_json/gendat.json +46 -0
  824. powermcp-0.1.0/PSSE/psspy_command_json/gendsp.json +152 -0
  825. powermcp-0.1.0/PSSE/psspy_command_json/gendsp_2.json +146 -0
  826. powermcp-0.1.0/PSSE/psspy_command_json/gendt1.json +46 -0
  827. powermcp-0.1.0/PSSE/psspy_command_json/gens.json +98 -0
  828. powermcp-0.1.0/PSSE/psspy_command_json/gensectdat.json +54 -0
  829. powermcp-0.1.0/PSSE/psspy_command_json/gensectdt1.json +54 -0
  830. powermcp-0.1.0/PSSE/psspy_command_json/geol.json +72 -0
  831. powermcp-0.1.0/PSSE/psspy_command_json/get_char_length.json +38 -0
  832. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_acline_char.json +62 -0
  833. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_acline_int.json +62 -0
  834. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_acline_logical.json +62 -0
  835. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_acline_real.json +62 -0
  836. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_area_char.json +54 -0
  837. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_area_int.json +54 -0
  838. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_area_logical.json +54 -0
  839. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_area_real.json +54 -0
  840. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_bus_char.json +54 -0
  841. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_bus_int.json +54 -0
  842. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_bus_logical.json +54 -0
  843. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_bus_real.json +54 -0
  844. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_char.json +58 -0
  845. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_facts_char.json +54 -0
  846. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_facts_int.json +54 -0
  847. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_facts_logical.json +54 -0
  848. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_facts_real.json +54 -0
  849. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_fixshunt_char.json +58 -0
  850. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_fixshunt_int.json +58 -0
  851. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_fixshunt_logical.json +58 -0
  852. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_fixshunt_real.json +58 -0
  853. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_generator_char.json +58 -0
  854. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_generator_int.json +58 -0
  855. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_generator_logical.json +58 -0
  856. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_generator_real.json +58 -0
  857. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_gne_char.json +54 -0
  858. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_gne_int.json +54 -0
  859. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_gne_logical.json +54 -0
  860. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_gne_real.json +54 -0
  861. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_iatrans_char.json +62 -0
  862. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_iatrans_int.json +62 -0
  863. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_iatrans_logical.json +62 -0
  864. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_iatrans_real.json +62 -0
  865. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_indmach_char.json +58 -0
  866. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_indmach_int.json +58 -0
  867. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_indmach_logical.json +58 -0
  868. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_indmach_real.json +58 -0
  869. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_int.json +58 -0
  870. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_load_char.json +58 -0
  871. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_load_int.json +58 -0
  872. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_load_logical.json +58 -0
  873. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_load_real.json +58 -0
  874. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_logical.json +58 -0
  875. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_msline_char.json +62 -0
  876. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_msline_int.json +62 -0
  877. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_msline_logical.json +62 -0
  878. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_msline_real.json +62 -0
  879. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_ntermdc_char.json +54 -0
  880. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_ntermdc_int.json +54 -0
  881. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_ntermdc_logical.json +54 -0
  882. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_ntermdc_real.json +54 -0
  883. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_owner_char.json +54 -0
  884. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_owner_int.json +54 -0
  885. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_owner_logical.json +54 -0
  886. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_owner_real.json +54 -0
  887. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_rating_char.json +54 -0
  888. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_rating_int.json +54 -0
  889. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_rating_logical.json +54 -0
  890. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_rating_real.json +54 -0
  891. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_real.json +58 -0
  892. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_rowcount.json +38 -0
  893. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_sub_char.json +54 -0
  894. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_sub_int.json +54 -0
  895. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_sub_logical.json +54 -0
  896. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_sub_real.json +54 -0
  897. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_subnode_char.json +58 -0
  898. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_subnode_int.json +58 -0
  899. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_subnode_logical.json +58 -0
  900. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_subnode_real.json +58 -0
  901. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_subswd_char.json +66 -0
  902. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_subswd_int.json +66 -0
  903. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_subswd_logical.json +66 -0
  904. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_subswd_real.json +66 -0
  905. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_swshunt_char.json +58 -0
  906. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_swshunt_int.json +58 -0
  907. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_swshunt_logical.json +58 -0
  908. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_swshunt_real.json +58 -0
  909. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_sysswd_char.json +62 -0
  910. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_sysswd_int.json +62 -0
  911. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_sysswd_logical.json +62 -0
  912. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_sysswd_real.json +62 -0
  913. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_transformer_char.json +66 -0
  914. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_transformer_int.json +66 -0
  915. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_transformer_logical.json +66 -0
  916. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_transformer_real.json +66 -0
  917. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_twotermdc_char.json +54 -0
  918. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_twotermdc_int.json +54 -0
  919. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_twotermdc_logical.json +54 -0
  920. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_twotermdc_real.json +54 -0
  921. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_vscdc_char.json +54 -0
  922. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_vscdc_int.json +54 -0
  923. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_vscdc_logical.json +54 -0
  924. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_vscdc_real.json +54 -0
  925. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_zone_char.json +54 -0
  926. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_zone_int.json +54 -0
  927. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_zone_logical.json +54 -0
  928. powermcp-0.1.0/PSSE/psspy_command_json/get_ext_zone_real.json +54 -0
  929. powermcp-0.1.0/PSSE/psspy_command_json/get_mstate.json +47 -0
  930. powermcp-0.1.0/PSSE/psspy_command_json/getbatdefaults.json +19 -0
  931. powermcp-0.1.0/PSSE/psspy_command_json/getcontingencysavedcase.json +46 -0
  932. powermcp-0.1.0/PSSE/psspy_command_json/getdefaultchar.json +15 -0
  933. powermcp-0.1.0/PSSE/psspy_command_json/getdefaultint.json +15 -0
  934. powermcp-0.1.0/PSSE/psspy_command_json/getdefaultreal.json +15 -0
  935. powermcp-0.1.0/PSSE/psspy_command_json/gethomepath.json +15 -0
  936. powermcp-0.1.0/PSSE/psspy_command_json/getloadedmodules.json +10 -0
  937. powermcp-0.1.0/PSSE/psspy_command_json/getmodellibraries.json +15 -0
  938. powermcp-0.1.0/PSSE/psspy_command_json/getmodelprograms.json +23 -0
  939. powermcp-0.1.0/PSSE/psspy_command_json/getmodfunclist.json +10 -0
  940. powermcp-0.1.0/PSSE/psspy_command_json/gettspfprofilebyelement.json +38 -0
  941. powermcp-0.1.0/PSSE/psspy_command_json/gettspfprofilecountbyelement.json +34 -0
  942. powermcp-0.1.0/PSSE/psspy_command_json/gettspfprofiledata.json +46 -0
  943. powermcp-0.1.0/PSSE/psspy_command_json/gettspfprofiledatabyset.json +42 -0
  944. powermcp-0.1.0/PSSE/psspy_command_json/gettspfprofiledatacolumncount.json +38 -0
  945. powermcp-0.1.0/PSSE/psspy_command_json/gettspfprofiledatacount.json +42 -0
  946. powermcp-0.1.0/PSSE/psspy_command_json/gexmbus.json +15 -0
  947. powermcp-0.1.0/PSSE/psspy_command_json/gic.json +268 -0
  948. powermcp-0.1.0/PSSE/psspy_command_json/gic_2.json +450 -0
  949. powermcp-0.1.0/PSSE/psspy_command_json/gic_2tdc.json +54 -0
  950. powermcp-0.1.0/PSSE/psspy_command_json/gic_2tdc_chng.json +54 -0
  951. powermcp-0.1.0/PSSE/psspy_command_json/gic_2tdc_purg.json +38 -0
  952. powermcp-0.1.0/PSSE/psspy_command_json/gic_3.json +462 -0
  953. powermcp-0.1.0/PSSE/psspy_command_json/gic_4.json +510 -0
  954. powermcp-0.1.0/PSSE/psspy_command_json/gic_5.json +574 -0
  955. powermcp-0.1.0/PSSE/psspy_command_json/gic_6.json +722 -0
  956. powermcp-0.1.0/PSSE/psspy_command_json/gic_7.json +718 -0
  957. powermcp-0.1.0/PSSE/psspy_command_json/gic_8.json +886 -0
  958. powermcp-0.1.0/PSSE/psspy_command_json/gic_branch_efield_nn.json +170 -0
  959. powermcp-0.1.0/PSSE/psspy_command_json/gic_brn.json +66 -0
  960. powermcp-0.1.0/PSSE/psspy_command_json/gic_brn_chng.json +66 -0
  961. powermcp-0.1.0/PSSE/psspy_command_json/gic_brn_purg.json +38 -0
  962. powermcp-0.1.0/PSSE/psspy_command_json/gic_earth1d_usr.json +62 -0
  963. powermcp-0.1.0/PSSE/psspy_command_json/gic_earth1d_usr_chng.json +62 -0
  964. powermcp-0.1.0/PSSE/psspy_command_json/gic_earth1d_usr_purg.json +30 -0
  965. powermcp-0.1.0/PSSE/psspy_command_json/gic_efield_waveshape.json +34 -0
  966. powermcp-0.1.0/PSSE/psspy_command_json/gic_efield_waveshape_ref.json +25 -0
  967. powermcp-0.1.0/PSSE/psspy_command_json/gic_efield_waveshape_supp.json +25 -0
  968. powermcp-0.1.0/PSSE/psspy_command_json/gic_facts.json +54 -0
  969. powermcp-0.1.0/PSSE/psspy_command_json/gic_facts_chng.json +54 -0
  970. powermcp-0.1.0/PSSE/psspy_command_json/gic_facts_purg.json +38 -0
  971. powermcp-0.1.0/PSSE/psspy_command_json/gic_fxsh.json +50 -0
  972. powermcp-0.1.0/PSSE/psspy_command_json/gic_fxsh_chng.json +50 -0
  973. powermcp-0.1.0/PSSE/psspy_command_json/gic_fxsh_purg.json +34 -0
  974. powermcp-0.1.0/PSSE/psspy_command_json/gic_load.json +50 -0
  975. powermcp-0.1.0/PSSE/psspy_command_json/gic_load_chng.json +50 -0
  976. powermcp-0.1.0/PSSE/psspy_command_json/gic_load_purg.json +34 -0
  977. powermcp-0.1.0/PSSE/psspy_command_json/gic_mtdc.json +54 -0
  978. powermcp-0.1.0/PSSE/psspy_command_json/gic_mtdc_chng.json +54 -0
  979. powermcp-0.1.0/PSSE/psspy_command_json/gic_mtdc_purg.json +38 -0
  980. powermcp-0.1.0/PSSE/psspy_command_json/gic_mvarloss_scaling_factors.json +70 -0
  981. powermcp-0.1.0/PSSE/psspy_command_json/gic_new.json +29 -0
  982. powermcp-0.1.0/PSSE/psspy_command_json/gic_pf.json +64 -0
  983. powermcp-0.1.0/PSSE/psspy_command_json/gic_pf_options.json +162 -0
  984. powermcp-0.1.0/PSSE/psspy_command_json/gic_purg.json +25 -0
  985. powermcp-0.1.0/PSSE/psspy_command_json/gic_read.json +34 -0
  986. powermcp-0.1.0/PSSE/psspy_command_json/gic_read_efield_grid.json +54 -0
  987. powermcp-0.1.0/PSSE/psspy_command_json/gic_substn.json +56 -0
  988. powermcp-0.1.0/PSSE/psspy_command_json/gic_substn_chng.json +56 -0
  989. powermcp-0.1.0/PSSE/psspy_command_json/gic_substn_purg.json +30 -0
  990. powermcp-0.1.0/PSSE/psspy_command_json/gic_swsh.json +50 -0
  991. powermcp-0.1.0/PSSE/psspy_command_json/gic_swsh_chng.json +50 -0
  992. powermcp-0.1.0/PSSE/psspy_command_json/gic_swsh_purg.json +34 -0
  993. powermcp-0.1.0/PSSE/psspy_command_json/gic_thermal_impact.json +54 -0
  994. powermcp-0.1.0/PSSE/psspy_command_json/gic_thermal_impact_1.json +74 -0
  995. powermcp-0.1.0/PSSE/psspy_command_json/gic_trn.json +160 -0
  996. powermcp-0.1.0/PSSE/psspy_command_json/gic_trn_chng.json +160 -0
  997. powermcp-0.1.0/PSSE/psspy_command_json/gic_trn_purg.json +42 -0
  998. powermcp-0.1.0/PSSE/psspy_command_json/gic_vscdc.json +54 -0
  999. powermcp-0.1.0/PSSE/psspy_command_json/gic_vscdc_chng.json +54 -0
  1000. powermcp-0.1.0/PSSE/psspy_command_json/gic_vscdc_purg.json +38 -0
  1001. powermcp-0.1.0/PSSE/psspy_command_json/gic_write.json +34 -0
  1002. powermcp-0.1.0/PSSE/psspy_command_json/gic_write_stn.json +34 -0
  1003. powermcp-0.1.0/PSSE/psspy_command_json/gmb_add_facts_dev_model.json +90 -0
  1004. powermcp-0.1.0/PSSE/psspy_command_json/gmb_add_plant_model.json +118 -0
  1005. powermcp-0.1.0/PSSE/psspy_command_json/gmb_add_swshunt_model.json +94 -0
  1006. powermcp-0.1.0/PSSE/psspy_command_json/gmb_add_swshunt_model_2.json +98 -0
  1007. powermcp-0.1.0/PSSE/psspy_command_json/gne_chng.json +130 -0
  1008. powermcp-0.1.0/PSSE/psspy_command_json/gne_data.json +130 -0
  1009. powermcp-0.1.0/PSSE/psspy_command_json/gnechr.json +58 -0
  1010. powermcp-0.1.0/PSSE/psspy_command_json/gnedat.json +62 -0
  1011. powermcp-0.1.0/PSSE/psspy_command_json/gneint.json +90 -0
  1012. powermcp-0.1.0/PSSE/psspy_command_json/gnestatus.json +58 -0
  1013. powermcp-0.1.0/PSSE/psspy_command_json/gnet.json +54 -0
  1014. powermcp-0.1.0/PSSE/psspy_command_json/growbus.json +23 -0
  1015. powermcp-0.1.0/PSSE/psspy_command_json/growbuslevels.json +27 -0
  1016. powermcp-0.1.0/PSSE/psspy_command_json/growdiagram.json +31 -0
  1017. powermcp-0.1.0/PSSE/psspy_command_json/growdiagram_2.json +195 -0
  1018. powermcp-0.1.0/PSSE/psspy_command_json/growstation.json +15 -0
  1019. powermcp-0.1.0/PSSE/psspy_command_json/grpg.json +24 -0
  1020. powermcp-0.1.0/PSSE/psspy_command_json/grun.json +50 -0
  1021. powermcp-0.1.0/PSSE/psspy_command_json/gstr.json +66 -0
  1022. powermcp-0.1.0/PSSE/psspy_command_json/har_2tdc.json +60 -0
  1023. powermcp-0.1.0/PSSE/psspy_command_json/har_2tdc_chng.json +60 -0
  1024. powermcp-0.1.0/PSSE/psspy_command_json/har_2tdc_purg.json +34 -0
  1025. powermcp-0.1.0/PSSE/psspy_command_json/har_analysis.json +248 -0
  1026. powermcp-0.1.0/PSSE/psspy_command_json/har_analysis_2.json +580 -0
  1027. powermcp-0.1.0/PSSE/psspy_command_json/har_brn.json +74 -0
  1028. powermcp-0.1.0/PSSE/psspy_command_json/har_brn_chng.json +74 -0
  1029. powermcp-0.1.0/PSSE/psspy_command_json/har_brn_purg.json +38 -0
  1030. powermcp-0.1.0/PSSE/psspy_command_json/har_create_pfcase.json +70 -0
  1031. powermcp-0.1.0/PSSE/psspy_command_json/har_cursrc.json +62 -0
  1032. powermcp-0.1.0/PSSE/psspy_command_json/har_cursrc_chng.json +62 -0
  1033. powermcp-0.1.0/PSSE/psspy_command_json/har_cursrc_chng_name.json +50 -0
  1034. powermcp-0.1.0/PSSE/psspy_command_json/har_cursrc_chng_onept.json +46 -0
  1035. powermcp-0.1.0/PSSE/psspy_command_json/har_cursrc_name.json +50 -0
  1036. powermcp-0.1.0/PSSE/psspy_command_json/har_cursrc_onept.json +46 -0
  1037. powermcp-0.1.0/PSSE/psspy_command_json/har_cursrc_purg.json +30 -0
  1038. powermcp-0.1.0/PSSE/psspy_command_json/har_cursrc_purg_onept.json +34 -0
  1039. powermcp-0.1.0/PSSE/psspy_command_json/har_exists_dstn_results.json +27 -0
  1040. powermcp-0.1.0/PSSE/psspy_command_json/har_exists_fscan_results.json +27 -0
  1041. powermcp-0.1.0/PSSE/psspy_command_json/har_export_dstn.json +110 -0
  1042. powermcp-0.1.0/PSSE/psspy_command_json/har_export_fscan.json +42 -0
  1043. powermcp-0.1.0/PSSE/psspy_command_json/har_facts.json +82 -0
  1044. powermcp-0.1.0/PSSE/psspy_command_json/har_facts_chng.json +82 -0
  1045. powermcp-0.1.0/PSSE/psspy_command_json/har_facts_purg.json +38 -0
  1046. powermcp-0.1.0/PSSE/psspy_command_json/har_impchar.json +50 -0
  1047. powermcp-0.1.0/PSSE/psspy_command_json/har_impchar_chng.json +50 -0
  1048. powermcp-0.1.0/PSSE/psspy_command_json/har_impchar_chng_name.json +34 -0
  1049. powermcp-0.1.0/PSSE/psspy_command_json/har_impchar_chng_onept.json +50 -0
  1050. powermcp-0.1.0/PSSE/psspy_command_json/har_impchar_name.json +34 -0
  1051. powermcp-0.1.0/PSSE/psspy_command_json/har_impchar_onept.json +50 -0
  1052. powermcp-0.1.0/PSSE/psspy_command_json/har_impchar_purg.json +30 -0
  1053. powermcp-0.1.0/PSSE/psspy_command_json/har_impchar_purg_onept.json +34 -0
  1054. powermcp-0.1.0/PSSE/psspy_command_json/har_indmc.json +78 -0
  1055. powermcp-0.1.0/PSSE/psspy_command_json/har_indmc_chng.json +78 -0
  1056. powermcp-0.1.0/PSSE/psspy_command_json/har_indmc_purg.json +34 -0
  1057. powermcp-0.1.0/PSSE/psspy_command_json/har_load.json +78 -0
  1058. powermcp-0.1.0/PSSE/psspy_command_json/har_load_chng.json +78 -0
  1059. powermcp-0.1.0/PSSE/psspy_command_json/har_load_purg.json +34 -0
  1060. powermcp-0.1.0/PSSE/psspy_command_json/har_mach.json +78 -0
  1061. powermcp-0.1.0/PSSE/psspy_command_json/har_mach_chng.json +78 -0
  1062. powermcp-0.1.0/PSSE/psspy_command_json/har_mach_purg.json +34 -0
  1063. powermcp-0.1.0/PSSE/psspy_command_json/har_mtdc.json +60 -0
  1064. powermcp-0.1.0/PSSE/psspy_command_json/har_mtdc_chng.json +60 -0
  1065. powermcp-0.1.0/PSSE/psspy_command_json/har_mtdc_purg.json +34 -0
  1066. powermcp-0.1.0/PSSE/psspy_command_json/har_new.json +25 -0
  1067. powermcp-0.1.0/PSSE/psspy_command_json/har_passive_filter.json +116 -0
  1068. powermcp-0.1.0/PSSE/psspy_command_json/har_passive_filter_chng.json +116 -0
  1069. powermcp-0.1.0/PSSE/psspy_command_json/har_passive_filter_purg.json +34 -0
  1070. powermcp-0.1.0/PSSE/psspy_command_json/har_purg.json +25 -0
  1071. powermcp-0.1.0/PSSE/psspy_command_json/har_set_par_lodmdl_cigre_measurement.json +70 -0
  1072. powermcp-0.1.0/PSSE/psspy_command_json/har_set_par_lodmdl_cigre_motive.json +62 -0
  1073. powermcp-0.1.0/PSSE/psspy_command_json/har_set_par_lodmdl_cigre_passive.json +58 -0
  1074. powermcp-0.1.0/PSSE/psspy_command_json/har_set_par_lodmdl_ieee_2rl_parallel.json +74 -0
  1075. powermcp-0.1.0/PSSE/psspy_command_json/har_set_par_lodmdl_ieee_im.json +66 -0
  1076. powermcp-0.1.0/PSSE/psspy_command_json/har_set_par_lodmdl_ieee_measurement.json +70 -0
  1077. powermcp-0.1.0/PSSE/psspy_command_json/har_set_par_lodmdl_ieee_skin.json +62 -0
  1078. powermcp-0.1.0/PSSE/psspy_command_json/har_set_par_lodmdl_large_async_motor.json +82 -0
  1079. powermcp-0.1.0/PSSE/psspy_command_json/har_set_resn_thresholds.json +67 -0
  1080. powermcp-0.1.0/PSSE/psspy_command_json/har_set_resn_thresholds_default.json +10 -0
  1081. powermcp-0.1.0/PSSE/psspy_command_json/har_trn.json +82 -0
  1082. powermcp-0.1.0/PSSE/psspy_command_json/har_trn_chng.json +82 -0
  1083. powermcp-0.1.0/PSSE/psspy_command_json/har_trn_purg.json +42 -0
  1084. powermcp-0.1.0/PSSE/psspy_command_json/har_vltsrc.json +58 -0
  1085. powermcp-0.1.0/PSSE/psspy_command_json/har_vltsrc_chng.json +58 -0
  1086. powermcp-0.1.0/PSSE/psspy_command_json/har_vltsrc_chng_name.json +46 -0
  1087. powermcp-0.1.0/PSSE/psspy_command_json/har_vltsrc_chng_onept.json +46 -0
  1088. powermcp-0.1.0/PSSE/psspy_command_json/har_vltsrc_name.json +46 -0
  1089. powermcp-0.1.0/PSSE/psspy_command_json/har_vltsrc_onept.json +46 -0
  1090. powermcp-0.1.0/PSSE/psspy_command_json/har_vltsrc_purg.json +30 -0
  1091. powermcp-0.1.0/PSSE/psspy_command_json/har_vltsrc_purg_onept.json +34 -0
  1092. powermcp-0.1.0/PSSE/psspy_command_json/har_vscdc.json +60 -0
  1093. powermcp-0.1.0/PSSE/psspy_command_json/har_vscdc_chng.json +60 -0
  1094. powermcp-0.1.0/PSSE/psspy_command_json/har_vscdc_purg.json +34 -0
  1095. powermcp-0.1.0/PSSE/psspy_command_json/iecs.json +154 -0
  1096. powermcp-0.1.0/PSSE/psspy_command_json/iecs_2.json +248 -0
  1097. powermcp-0.1.0/PSSE/psspy_command_json/iecs_3.json +274 -0
  1098. powermcp-0.1.0/PSSE/psspy_command_json/iecs_4.json +416 -0
  1099. powermcp-0.1.0/PSSE/psspy_command_json/iecs_scfile.json +58 -0
  1100. powermcp-0.1.0/PSSE/psspy_command_json/immod_pack.json +25 -0
  1101. powermcp-0.1.0/PSSE/psspy_command_json/immod_remove.json +46 -0
  1102. powermcp-0.1.0/PSSE/psspy_command_json/immod_status.json +66 -0
  1103. powermcp-0.1.0/PSSE/psspy_command_json/immod_unconnected.json +46 -0
  1104. powermcp-0.1.0/PSSE/psspy_command_json/immod_user.json +46 -0
  1105. powermcp-0.1.0/PSSE/psspy_command_json/imnet.json +72 -0
  1106. powermcp-0.1.0/PSSE/psspy_command_json/imoutage.json +90 -0
  1107. powermcp-0.1.0/PSSE/psspy_command_json/impc.json +66 -0
  1108. powermcp-0.1.0/PSSE/psspy_command_json/impedance_correction_data.json +74 -0
  1109. powermcp-0.1.0/PSSE/psspy_command_json/impedance_correction_data_3.json +66 -0
  1110. powermcp-0.1.0/PSSE/psspy_command_json/implement_transfer.json +232 -0
  1111. powermcp-0.1.0/PSSE/psspy_command_json/implement_transfer_2.json +250 -0
  1112. powermcp-0.1.0/PSSE/psspy_command_json/import_ecdi.json +50 -0
  1113. powermcp-0.1.0/PSSE/psspy_command_json/importdrawfile.json +15 -0
  1114. powermcp-0.1.0/PSSE/psspy_command_json/importimagefile.json +15 -0
  1115. powermcp-0.1.0/PSSE/psspy_command_json/imposeprofile.json +126 -0
  1116. powermcp-0.1.0/PSSE/psspy_command_json/increment_gref.json +54 -0
  1117. powermcp-0.1.0/PSSE/psspy_command_json/increment_swsref.json +50 -0
  1118. powermcp-0.1.0/PSSE/psspy_command_json/increment_swsref_2.json +54 -0
  1119. powermcp-0.1.0/PSSE/psspy_command_json/increment_vref.json +54 -0
  1120. powermcp-0.1.0/PSSE/psspy_command_json/inddt1.json +206 -0
  1121. powermcp-0.1.0/PSSE/psspy_command_json/inddt2.json +94 -0
  1122. powermcp-0.1.0/PSSE/psspy_command_json/indint.json +110 -0
  1123. powermcp-0.1.0/PSSE/psspy_command_json/induction_machine_chng.json +196 -0
  1124. powermcp-0.1.0/PSSE/psspy_command_json/induction_machine_data.json +204 -0
  1125. powermcp-0.1.0/PSSE/psspy_command_json/ini2dc.json +25 -0
  1126. powermcp-0.1.0/PSSE/psspy_command_json/inibrn.json +38 -0
  1127. powermcp-0.1.0/PSSE/psspy_command_json/inibrn_2.json +66 -0
  1128. powermcp-0.1.0/PSSE/psspy_command_json/inibrx.json +42 -0
  1129. powermcp-0.1.0/PSSE/psspy_command_json/inibrx_2.json +70 -0
  1130. powermcp-0.1.0/PSSE/psspy_command_json/inibus.json +30 -0
  1131. powermcp-0.1.0/PSSE/psspy_command_json/inibus_2.json +68 -0
  1132. powermcp-0.1.0/PSSE/psspy_command_json/inibux.json +30 -0
  1133. powermcp-0.1.0/PSSE/psspy_command_json/inifax.json +25 -0
  1134. powermcp-0.1.0/PSSE/psspy_command_json/inifxs.json +34 -0
  1135. powermcp-0.1.0/PSSE/psspy_command_json/iniind.json +34 -0
  1136. powermcp-0.1.0/PSSE/psspy_command_json/inilod.json +34 -0
  1137. powermcp-0.1.0/PSSE/psspy_command_json/inimac.json +34 -0
  1138. powermcp-0.1.0/PSSE/psspy_command_json/inimdc.json +25 -0
  1139. powermcp-0.1.0/PSSE/psspy_command_json/inimsl.json +46 -0
  1140. powermcp-0.1.0/PSSE/psspy_command_json/ininam.json +30 -0
  1141. powermcp-0.1.0/PSSE/psspy_command_json/ininam_2.json +68 -0
  1142. powermcp-0.1.0/PSSE/psspy_command_json/ininax.json +30 -0
  1143. powermcp-0.1.0/PSSE/psspy_command_json/inistabussect.json +30 -0
  1144. powermcp-0.1.0/PSSE/psspy_command_json/inistanode.json +30 -0
  1145. powermcp-0.1.0/PSSE/psspy_command_json/inistaswdev.json +30 -0
  1146. powermcp-0.1.0/PSSE/psspy_command_json/inisws.json +34 -0
  1147. powermcp-0.1.0/PSSE/psspy_command_json/initial_opf_barrier_coeff.json +38 -0
  1148. powermcp-0.1.0/PSSE/psspy_command_json/initie.json +34 -0
  1149. powermcp-0.1.0/PSSE/psspy_command_json/initix.json +34 -0
  1150. powermcp-0.1.0/PSSE/psspy_command_json/inivsc.json +25 -0
  1151. powermcp-0.1.0/PSSE/psspy_command_json/inlf.json +170 -0
  1152. powermcp-0.1.0/PSSE/psspy_command_json/inlf_2.json +182 -0
  1153. powermcp-0.1.0/PSSE/psspy_command_json/inta.json +54 -0
  1154. powermcp-0.1.0/PSSE/psspy_command_json/interface_flow_cost_coeff.json +38 -0
  1155. powermcp-0.1.0/PSSE/psspy_command_json/intz.json +54 -0
  1156. powermcp-0.1.0/PSSE/psspy_command_json/ioflush.json +10 -0
  1157. powermcp-0.1.0/PSSE/psspy_command_json/island.json +29 -0
  1158. powermcp-0.1.0/PSSE/psspy_command_json/isolate2dclinebybreaker.json +42 -0
  1159. powermcp-0.1.0/PSSE/psspy_command_json/isolate3wtbybreaker.json +70 -0
  1160. powermcp-0.1.0/PSSE/psspy_command_json/isolate_levels.json +54 -0
  1161. powermcp-0.1.0/PSSE/psspy_command_json/isolatebusbybreaker.json +46 -0
  1162. powermcp-0.1.0/PSSE/psspy_command_json/isolatefactsbybreaker.json +42 -0
  1163. powermcp-0.1.0/PSSE/psspy_command_json/isolateindmachinebybreaker.json +54 -0
  1164. powermcp-0.1.0/PSSE/psspy_command_json/isolatelinebybreaker.json +66 -0
  1165. powermcp-0.1.0/PSSE/psspy_command_json/isolateloadbybreaker.json +54 -0
  1166. powermcp-0.1.0/PSSE/psspy_command_json/isolatemachinebybreaker.json +54 -0
  1167. powermcp-0.1.0/PSSE/psspy_command_json/isolatemslinebybreaker.json +62 -0
  1168. powermcp-0.1.0/PSSE/psspy_command_json/isolatemtdclinebybreaker.json +42 -0
  1169. powermcp-0.1.0/PSSE/psspy_command_json/isolatenodebybreaker.json +54 -0
  1170. powermcp-0.1.0/PSSE/psspy_command_json/isolateshuntbybreaker.json +54 -0
  1171. powermcp-0.1.0/PSSE/psspy_command_json/isolateswdbybreaker.json +70 -0
  1172. powermcp-0.1.0/PSSE/psspy_command_json/isolateswshuntbybreaker.json +50 -0
  1173. powermcp-0.1.0/PSSE/psspy_command_json/isolateswshuntbybreaker_2.json +54 -0
  1174. powermcp-0.1.0/PSSE/psspy_command_json/isolatevscdclinebybreaker.json +42 -0
  1175. powermcp-0.1.0/PSSE/psspy_command_json/iterat.json +15 -0
  1176. powermcp-0.1.0/PSSE/psspy_command_json/join.json +74 -0
  1177. powermcp-0.1.0/PSSE/psspy_command_json/lamp.json +54 -0
  1178. powermcp-0.1.0/PSSE/psspy_command_json/last_pf.json +81 -0
  1179. powermcp-0.1.0/PSSE/psspy_command_json/launch_program.json +28 -0
  1180. powermcp-0.1.0/PSSE/psspy_command_json/ldclist.json +148 -0
  1181. powermcp-0.1.0/PSSE/psspy_command_json/ldlist.json +92 -0
  1182. powermcp-0.1.0/PSSE/psspy_command_json/ldmod_pack.json +25 -0
  1183. powermcp-0.1.0/PSSE/psspy_command_json/ldmod_remove.json +96 -0
  1184. powermcp-0.1.0/PSSE/psspy_command_json/ldmod_status.json +114 -0
  1185. powermcp-0.1.0/PSSE/psspy_command_json/ldmod_status2.json +84 -0
  1186. powermcp-0.1.0/PSSE/psspy_command_json/ldmod_unconnected.json +46 -0
  1187. powermcp-0.1.0/PSSE/psspy_command_json/ldmod_user.json +46 -0
  1188. powermcp-0.1.0/PSSE/psspy_command_json/ldmodc_pack.json +25 -0
  1189. powermcp-0.1.0/PSSE/psspy_command_json/ldmodc_remove.json +148 -0
  1190. powermcp-0.1.0/PSSE/psspy_command_json/ldmodc_status.json +158 -0
  1191. powermcp-0.1.0/PSSE/psspy_command_json/ldmodc_unconnected.json +46 -0
  1192. powermcp-0.1.0/PSSE/psspy_command_json/ldmodc_user.json +46 -0
  1193. powermcp-0.1.0/PSSE/psspy_command_json/line_shunt_reporting.json +50 -0
  1194. powermcp-0.1.0/PSSE/psspy_command_json/lines_per_page.json +76 -0
  1195. powermcp-0.1.0/PSSE/psspy_command_json/lines_per_page_one_device.json +66 -0
  1196. powermcp-0.1.0/PSSE/psspy_command_json/list.json +210 -0
  1197. powermcp-0.1.0/PSSE/psspy_command_json/list_channel_models.json +50 -0
  1198. powermcp-0.1.0/PSSE/psspy_command_json/listcontingencysavedcases.json +54 -0
  1199. powermcp-0.1.0/PSSE/psspy_command_json/llrf.json +132 -0
  1200. powermcp-0.1.0/PSSE/psspy_command_json/lmodind.json +128 -0
  1201. powermcp-0.1.0/PSSE/psspy_command_json/lmodnam.json +70 -0
  1202. powermcp-0.1.0/PSSE/psspy_command_json/load_array_channel.json +78 -0
  1203. powermcp-0.1.0/PSSE/psspy_command_json/load_chng_4.json +116 -0
  1204. powermcp-0.1.0/PSSE/psspy_command_json/load_chng_5.json +128 -0
  1205. powermcp-0.1.0/PSSE/psspy_command_json/load_chng_6.json +132 -0
  1206. powermcp-0.1.0/PSSE/psspy_command_json/load_data.json +112 -0
  1207. powermcp-0.1.0/PSSE/psspy_command_json/load_data_3.json +116 -0
  1208. powermcp-0.1.0/PSSE/psspy_command_json/load_data_4.json +120 -0
  1209. powermcp-0.1.0/PSSE/psspy_command_json/load_data_5.json +132 -0
  1210. powermcp-0.1.0/PSSE/psspy_command_json/load_data_6.json +140 -0
  1211. powermcp-0.1.0/PSSE/psspy_command_json/load_reduction.json +72 -0
  1212. powermcp-0.1.0/PSSE/psspy_command_json/lodcnv.json +15 -0
  1213. powermcp-0.1.0/PSSE/psspy_command_json/loddt1.json +112 -0
  1214. powermcp-0.1.0/PSSE/psspy_command_json/loddt2.json +112 -0
  1215. powermcp-0.1.0/PSSE/psspy_command_json/lodind.json +42 -0
  1216. powermcp-0.1.0/PSSE/psspy_command_json/lodint.json +102 -0
  1217. powermcp-0.1.0/PSSE/psspy_command_json/lodtype.json +50 -0
  1218. powermcp-0.1.0/PSSE/psspy_command_json/long_title_data.json +38 -0
  1219. powermcp-0.1.0/PSSE/psspy_command_json/lout.json +54 -0
  1220. powermcp-0.1.0/PSSE/psspy_command_json/lsto.json +154 -0
  1221. powermcp-0.1.0/PSSE/psspy_command_json/ltap.json +86 -0
  1222. powermcp-0.1.0/PSSE/psspy_command_json/maccc.json +450 -0
  1223. powermcp-0.1.0/PSSE/psspy_command_json/maccc_2.json +502 -0
  1224. powermcp-0.1.0/PSSE/psspy_command_json/maccc_3.json +470 -0
  1225. powermcp-0.1.0/PSSE/psspy_command_json/maccc_parallel.json +494 -0
  1226. powermcp-0.1.0/PSSE/psspy_command_json/maccc_parallel_2.json +462 -0
  1227. powermcp-0.1.0/PSSE/psspy_command_json/maccc_trip_cor.json +582 -0
  1228. powermcp-0.1.0/PSSE/psspy_command_json/maccc_trip_cor_2.json +658 -0
  1229. powermcp-0.1.0/PSSE/psspy_command_json/maccc_trip_cor_3.json +698 -0
  1230. powermcp-0.1.0/PSSE/psspy_command_json/maccc_trip_cor_4.json +666 -0
  1231. powermcp-0.1.0/PSSE/psspy_command_json/maccc_with_cor.json +544 -0
  1232. powermcp-0.1.0/PSSE/psspy_command_json/maccc_with_cor_2.json +620 -0
  1233. powermcp-0.1.0/PSSE/psspy_command_json/maccc_with_cor_3.json +660 -0
  1234. powermcp-0.1.0/PSSE/psspy_command_json/maccc_with_cor_4.json +628 -0
  1235. powermcp-0.1.0/PSSE/psspy_command_json/maccc_with_trip.json +488 -0
  1236. powermcp-0.1.0/PSSE/psspy_command_json/maccc_with_trip_2.json +540 -0
  1237. powermcp-0.1.0/PSSE/psspy_command_json/maccc_with_trip_3.json +508 -0
  1238. powermcp-0.1.0/PSSE/psspy_command_json/maccc_with_trip_parallel.json +540 -0
  1239. powermcp-0.1.0/PSSE/psspy_command_json/maccc_with_trip_parallel_2.json +508 -0
  1240. powermcp-0.1.0/PSSE/psspy_command_json/macchr.json +78 -0
  1241. powermcp-0.1.0/PSSE/psspy_command_json/macdat.json +202 -0
  1242. powermcp-0.1.0/PSSE/psspy_command_json/macdt2.json +102 -0
  1243. powermcp-0.1.0/PSSE/psspy_command_json/machine_app_r_x_channel.json +98 -0
  1244. powermcp-0.1.0/PSSE/psspy_command_json/machine_array_channel.json +166 -0
  1245. powermcp-0.1.0/PSSE/psspy_command_json/machine_cap_curve_chng.json +94 -0
  1246. powermcp-0.1.0/PSSE/psspy_command_json/machine_cap_curve_data.json +90 -0
  1247. powermcp-0.1.0/PSSE/psspy_command_json/machine_chng_2.json +164 -0
  1248. powermcp-0.1.0/PSSE/psspy_command_json/machine_chng_3.json +168 -0
  1249. powermcp-0.1.0/PSSE/psspy_command_json/machine_chng_4.json +172 -0
  1250. powermcp-0.1.0/PSSE/psspy_command_json/machine_data.json +168 -0
  1251. powermcp-0.1.0/PSSE/psspy_command_json/machine_data_2.json +172 -0
  1252. powermcp-0.1.0/PSSE/psspy_command_json/machine_data_3.json +180 -0
  1253. powermcp-0.1.0/PSSE/psspy_command_json/machine_data_4.json +184 -0
  1254. powermcp-0.1.0/PSSE/psspy_command_json/machine_iterm_channel.json +94 -0
  1255. powermcp-0.1.0/PSSE/psspy_command_json/macind.json +42 -0
  1256. powermcp-0.1.0/PSSE/psspy_command_json/macint.json +134 -0
  1257. powermcp-0.1.0/PSSE/psspy_command_json/macstt.json +42 -0
  1258. powermcp-0.1.0/PSSE/psspy_command_json/matrix_growth_factor.json +38 -0
  1259. powermcp-0.1.0/PSSE/psspy_command_json/maxmsm.json +33 -0
  1260. powermcp-0.1.0/PSSE/psspy_command_json/mbid2dc.json +46 -0
  1261. powermcp-0.1.0/PSSE/psspy_command_json/mbid3wnd.json +66 -0
  1262. powermcp-0.1.0/PSSE/psspy_command_json/mbidatrn.json +58 -0
  1263. powermcp-0.1.0/PSSE/psspy_command_json/mbidbrn.json +62 -0
  1264. powermcp-0.1.0/PSSE/psspy_command_json/mbidfacts.json +46 -0
  1265. powermcp-0.1.0/PSSE/psspy_command_json/mbidgne.json +46 -0
  1266. powermcp-0.1.0/PSSE/psspy_command_json/mbidindmac.json +54 -0
  1267. powermcp-0.1.0/PSSE/psspy_command_json/mbidload.json +54 -0
  1268. powermcp-0.1.0/PSSE/psspy_command_json/mbidmac.json +54 -0
  1269. powermcp-0.1.0/PSSE/psspy_command_json/mbidmdc.json +46 -0
  1270. powermcp-0.1.0/PSSE/psspy_command_json/mbidmsl.json +58 -0
  1271. powermcp-0.1.0/PSSE/psspy_command_json/mbidncs.json +46 -0
  1272. powermcp-0.1.0/PSSE/psspy_command_json/mbidshunt.json +54 -0
  1273. powermcp-0.1.0/PSSE/psspy_command_json/mbidswshunt.json +54 -0
  1274. powermcp-0.1.0/PSSE/psspy_command_json/mbidvd.json +46 -0
  1275. powermcp-0.1.0/PSSE/psspy_command_json/mbidvsc.json +46 -0
  1276. powermcp-0.1.0/PSSE/psspy_command_json/mcre.json +74 -0
  1277. powermcp-0.1.0/PSSE/psspy_command_json/mdlind.json +152 -0
  1278. powermcp-0.1.0/PSSE/psspy_command_json/mdllibcnt.json +15 -0
  1279. powermcp-0.1.0/PSSE/psspy_command_json/mdlnam.json +102 -0
  1280. powermcp-0.1.0/PSSE/psspy_command_json/mdlpgmcnt.json +15 -0
  1281. powermcp-0.1.0/PSSE/psspy_command_json/minimize_adj_bus_shunts.json +50 -0
  1282. powermcp-0.1.0/PSSE/psspy_command_json/minimize_fuel_cost.json +50 -0
  1283. powermcp-0.1.0/PSSE/psspy_command_json/minimize_interface_flows.json +50 -0
  1284. powermcp-0.1.0/PSSE/psspy_command_json/minimize_load_adjustments.json +50 -0
  1285. powermcp-0.1.0/PSSE/psspy_command_json/minimize_p_losses.json +50 -0
  1286. powermcp-0.1.0/PSSE/psspy_command_json/minimize_p_slack.json +50 -0
  1287. powermcp-0.1.0/PSSE/psspy_command_json/minimize_q_losses.json +50 -0
  1288. powermcp-0.1.0/PSSE/psspy_command_json/minimize_q_slack.json +50 -0
  1289. powermcp-0.1.0/PSSE/psspy_command_json/minimize_reactive_reserve.json +50 -0
  1290. powermcp-0.1.0/PSSE/psspy_command_json/minimize_series_comp.json +50 -0
  1291. powermcp-0.1.0/PSSE/psspy_command_json/mlst.json +132 -0
  1292. powermcp-0.1.0/PSSE/psspy_command_json/modr.json +122 -0
  1293. powermcp-0.1.0/PSSE/psspy_command_json/mov_alpha.json +54 -0
  1294. powermcp-0.1.0/PSSE/psspy_command_json/mov_iterations.json +54 -0
  1295. powermcp-0.1.0/PSSE/psspy_command_json/mov_tolerance.json +54 -0
  1296. powermcp-0.1.0/PSSE/psspy_command_json/move3wnd.json +78 -0
  1297. powermcp-0.1.0/PSSE/psspy_command_json/movebrn.json +74 -0
  1298. powermcp-0.1.0/PSSE/psspy_command_json/moveindmac.json +66 -0
  1299. powermcp-0.1.0/PSSE/psspy_command_json/moveindmacs.json +54 -0
  1300. powermcp-0.1.0/PSSE/psspy_command_json/moveload.json +66 -0
  1301. powermcp-0.1.0/PSSE/psspy_command_json/moveloads.json +54 -0
  1302. powermcp-0.1.0/PSSE/psspy_command_json/movemac.json +70 -0
  1303. powermcp-0.1.0/PSSE/psspy_command_json/moveplnt.json +54 -0
  1304. powermcp-0.1.0/PSSE/psspy_command_json/moveshunt.json +66 -0
  1305. powermcp-0.1.0/PSSE/psspy_command_json/moveshunts.json +54 -0
  1306. powermcp-0.1.0/PSSE/psspy_command_json/movesws.json +46 -0
  1307. powermcp-0.1.0/PSSE/psspy_command_json/moveswshunt.json +66 -0
  1308. powermcp-0.1.0/PSSE/psspy_command_json/moveswshunts.json +54 -0
  1309. powermcp-0.1.0/PSSE/psspy_command_json/mrun.json +78 -0
  1310. powermcp-0.1.0/PSSE/psspy_command_json/mslv.json +142 -0
  1311. powermcp-0.1.0/PSSE/psspy_command_json/mstr.json +70 -0
  1312. powermcp-0.1.0/PSSE/psspy_command_json/msum.json +25 -0
  1313. powermcp-0.1.0/PSSE/psspy_command_json/mtdc.json +29 -0
  1314. powermcp-0.1.0/PSSE/psspy_command_json/mtdcauxmod_remove.json +46 -0
  1315. powermcp-0.1.0/PSSE/psspy_command_json/mtdcauxmod_status.json +66 -0
  1316. powermcp-0.1.0/PSSE/psspy_command_json/mtdclmod_remove.json +38 -0
  1317. powermcp-0.1.0/PSSE/psspy_command_json/mtdclmod_status.json +58 -0
  1318. powermcp-0.1.0/PSSE/psspy_command_json/multi_section_line_data.json +110 -0
  1319. powermcp-0.1.0/PSSE/psspy_command_json/multi_section_line_edit.json +86 -0
  1320. powermcp-0.1.0/PSSE/psspy_command_json/multi_term_dc_bus_data.json +102 -0
  1321. powermcp-0.1.0/PSSE/psspy_command_json/multi_term_dc_convr_data.json +178 -0
  1322. powermcp-0.1.0/PSSE/psspy_command_json/multi_term_dc_line_chng.json +102 -0
  1323. powermcp-0.1.0/PSSE/psspy_command_json/multi_term_dc_line_data.json +102 -0
  1324. powermcp-0.1.0/PSSE/psspy_command_json/multi_term_dc_link_data.json +100 -0
  1325. powermcp-0.1.0/PSSE/psspy_command_json/multisection_reporting.json +50 -0
  1326. powermcp-0.1.0/PSSE/psspy_command_json/mwmi.json +178 -0
  1327. powermcp-0.1.0/PSSE/psspy_command_json/mwomwmsf.json +42 -0
  1328. powermcp-0.1.0/PSSE/psspy_command_json/mwomwosf.json +42 -0
  1329. powermcp-0.1.0/PSSE/psspy_command_json/n11_accc.json +316 -0
  1330. powermcp-0.1.0/PSSE/psspy_command_json/n11_accc_2.json +432 -0
  1331. powermcp-0.1.0/PSSE/psspy_command_json/n11_accc_3.json +372 -0
  1332. powermcp-0.1.0/PSSE/psspy_command_json/n11_accc_parallel.json +436 -0
  1333. powermcp-0.1.0/PSSE/psspy_command_json/n11_accc_parallel_2.json +376 -0
  1334. powermcp-0.1.0/PSSE/psspy_command_json/n11_accc_pscopf.json +580 -0
  1335. powermcp-0.1.0/PSSE/psspy_command_json/n11_accc_pscopf_2.json +604 -0
  1336. powermcp-0.1.0/PSSE/psspy_command_json/n11_accc_pscopf_3.json +544 -0
  1337. powermcp-0.1.0/PSSE/psspy_command_json/natono.json +34 -0
  1338. powermcp-0.1.0/PSSE/psspy_command_json/netg.json +54 -0
  1339. powermcp-0.1.0/PSSE/psspy_command_json/new_dimension.json +38 -0
  1340. powermcp-0.1.0/PSSE/psspy_command_json/newcas.json +42 -0
  1341. powermcp-0.1.0/PSSE/psspy_command_json/newcase_2.json +82 -0
  1342. powermcp-0.1.0/PSSE/psspy_command_json/newdiagfile.json +10 -0
  1343. powermcp-0.1.0/PSSE/psspy_command_json/newopf.json +25 -0
  1344. powermcp-0.1.0/PSSE/psspy_command_json/newscenariofile.json +15 -0
  1345. powermcp-0.1.0/PSSE/psspy_command_json/newseq.json +25 -0
  1346. powermcp-0.1.0/PSSE/psspy_command_json/newton_tolerance.json +38 -0
  1347. powermcp-0.1.0/PSSE/psspy_command_json/nextdiagfiledataset.json +10 -0
  1348. powermcp-0.1.0/PSSE/psspy_command_json/non_divergent.json +50 -0
  1349. powermcp-0.1.0/PSSE/psspy_command_json/non_trans_percent_units.json +50 -0
  1350. powermcp-0.1.0/PSSE/psspy_command_json/nopf.json +66 -0
  1351. powermcp-0.1.0/PSSE/psspy_command_json/notona.json +38 -0
  1352. powermcp-0.1.0/PSSE/psspy_command_json/notonasect.json +42 -0
  1353. powermcp-0.1.0/PSSE/psspy_command_json/nsol.json +162 -0
  1354. powermcp-0.1.0/PSSE/psspy_command_json/number_threads.json +38 -0
  1355. powermcp-0.1.0/PSSE/psspy_command_json/nxt2dc.json +37 -0
  1356. powermcp-0.1.0/PSSE/psspy_command_json/nxtbrn.json +42 -0
  1357. powermcp-0.1.0/PSSE/psspy_command_json/nxtbrn3.json +46 -0
  1358. powermcp-0.1.0/PSSE/psspy_command_json/nxtbrn3_2.json +58 -0
  1359. powermcp-0.1.0/PSSE/psspy_command_json/nxtbrn_2.json +50 -0
  1360. powermcp-0.1.0/PSSE/psspy_command_json/nxtbus.json +41 -0
  1361. powermcp-0.1.0/PSSE/psspy_command_json/nxtbus_2.json +45 -0
  1362. powermcp-0.1.0/PSSE/psspy_command_json/nxtfax.json +37 -0
  1363. powermcp-0.1.0/PSSE/psspy_command_json/nxtfxs.json +38 -0
  1364. powermcp-0.1.0/PSSE/psspy_command_json/nxtind.json +38 -0
  1365. powermcp-0.1.0/PSSE/psspy_command_json/nxtlod.json +38 -0
  1366. powermcp-0.1.0/PSSE/psspy_command_json/nxtmac.json +38 -0
  1367. powermcp-0.1.0/PSSE/psspy_command_json/nxtmdc.json +37 -0
  1368. powermcp-0.1.0/PSSE/psspy_command_json/nxtmsl.json +45 -0
  1369. powermcp-0.1.0/PSSE/psspy_command_json/nxtstabussect.json +42 -0
  1370. powermcp-0.1.0/PSSE/psspy_command_json/nxtstanode.json +38 -0
  1371. powermcp-0.1.0/PSSE/psspy_command_json/nxtstaswdev.json +46 -0
  1372. powermcp-0.1.0/PSSE/psspy_command_json/nxtsws.json +38 -0
  1373. powermcp-0.1.0/PSSE/psspy_command_json/nxttie.json +41 -0
  1374. powermcp-0.1.0/PSSE/psspy_command_json/nxttie3.json +45 -0
  1375. powermcp-0.1.0/PSSE/psspy_command_json/nxtvsc.json +37 -0
  1376. powermcp-0.1.0/PSSE/psspy_command_json/okstrt.json +29 -0
  1377. powermcp-0.1.0/PSSE/psspy_command_json/open_bus_voltage_limits.json +50 -0
  1378. powermcp-0.1.0/PSSE/psspy_command_json/openaccfile.json +57 -0
  1379. powermcp-0.1.0/PSSE/psspy_command_json/openaccfile_2.json +85 -0
  1380. powermcp-0.1.0/PSSE/psspy_command_json/openbuslocfile.json +15 -0
  1381. powermcp-0.1.0/PSSE/psspy_command_json/opendiagfile.json +15 -0
  1382. powermcp-0.1.0/PSSE/psspy_command_json/openeventstudyfile.json +15 -0
  1383. powermcp-0.1.0/PSSE/psspy_command_json/openscenariofile.json +15 -0
  1384. powermcp-0.1.0/PSSE/psspy_command_json/openun.json +15 -0
  1385. powermcp-0.1.0/PSSE/psspy_command_json/opf_adjbrx_indv.json +120 -0
  1386. powermcp-0.1.0/PSSE/psspy_command_json/opf_adjbrx_subsys.json +192 -0
  1387. powermcp-0.1.0/PSSE/psspy_command_json/opf_adjload_tbl.json +112 -0
  1388. powermcp-0.1.0/PSSE/psspy_command_json/opf_adjvar_indv.json +116 -0
  1389. powermcp-0.1.0/PSSE/psspy_command_json/opf_adjvar_indv_2.json +144 -0
  1390. powermcp-0.1.0/PSSE/psspy_command_json/opf_adjvar_subsys.json +242 -0
  1391. powermcp-0.1.0/PSSE/psspy_command_json/opf_apdsp_tbl.json +96 -0
  1392. powermcp-0.1.0/PSSE/psspy_command_json/opf_barrier_step_length.json +38 -0
  1393. powermcp-0.1.0/PSSE/psspy_command_json/opf_brflw_3wt_indv.json +140 -0
  1394. powermcp-0.1.0/PSSE/psspy_command_json/opf_brflw_brn_indv.json +132 -0
  1395. powermcp-0.1.0/PSSE/psspy_command_json/opf_brflw_subsys.json +262 -0
  1396. powermcp-0.1.0/PSSE/psspy_command_json/opf_bus_indv.json +112 -0
  1397. powermcp-0.1.0/PSSE/psspy_command_json/opf_bus_indv_2.json +132 -0
  1398. powermcp-0.1.0/PSSE/psspy_command_json/opf_bus_subsys.json +236 -0
  1399. powermcp-0.1.0/PSSE/psspy_command_json/opf_change_3wt_flow_id.json +78 -0
  1400. powermcp-0.1.0/PSSE/psspy_command_json/opf_change_adjvar_id.json +58 -0
  1401. powermcp-0.1.0/PSSE/psspy_command_json/opf_change_brn_flow_id.json +70 -0
  1402. powermcp-0.1.0/PSSE/psspy_command_json/opf_clamp_decay_factor.json +38 -0
  1403. powermcp-0.1.0/PSSE/psspy_command_json/opf_csttbl_lin.json +62 -0
  1404. powermcp-0.1.0/PSSE/psspy_command_json/opf_csttbl_poly.json +62 -0
  1405. powermcp-0.1.0/PSSE/psspy_command_json/opf_csttbl_quad.json +66 -0
  1406. powermcp-0.1.0/PSSE/psspy_command_json/opf_final_clamp_tol.json +38 -0
  1407. powermcp-0.1.0/PSSE/psspy_command_json/opf_fix_all_generators.json +50 -0
  1408. powermcp-0.1.0/PSSE/psspy_command_json/opf_fix_phase_shifters.json +50 -0
  1409. powermcp-0.1.0/PSSE/psspy_command_json/opf_fix_switched_shunts.json +50 -0
  1410. powermcp-0.1.0/PSSE/psspy_command_json/opf_fix_tap_ratios.json +50 -0
  1411. powermcp-0.1.0/PSSE/psspy_command_json/opf_fixed_voltage_penalty.json +38 -0
  1412. powermcp-0.1.0/PSSE/psspy_command_json/opf_gen_rcap_indv.json +108 -0
  1413. powermcp-0.1.0/PSSE/psspy_command_json/opf_gen_rcap_subsys.json +204 -0
  1414. powermcp-0.1.0/PSSE/psspy_command_json/opf_gendsp_indv.json +50 -0
  1415. powermcp-0.1.0/PSSE/psspy_command_json/opf_gendsp_subsys.json +84 -0
  1416. powermcp-0.1.0/PSSE/psspy_command_json/opf_genrsv_indv.json +62 -0
  1417. powermcp-0.1.0/PSSE/psspy_command_json/opf_genrsv_subsys.json +110 -0
  1418. powermcp-0.1.0/PSSE/psspy_command_json/opf_initial_clamp_tol.json +38 -0
  1419. powermcp-0.1.0/PSSE/psspy_command_json/opf_interior_shift_factor.json +38 -0
  1420. powermcp-0.1.0/PSSE/psspy_command_json/opf_intflw_3wt.json +66 -0
  1421. powermcp-0.1.0/PSSE/psspy_command_json/opf_intflw_brn.json +62 -0
  1422. powermcp-0.1.0/PSSE/psspy_command_json/opf_intflw_main.json +100 -0
  1423. powermcp-0.1.0/PSSE/psspy_command_json/opf_intflw_reset.json +34 -0
  1424. powermcp-0.1.0/PSSE/psspy_command_json/opf_lambda_tolerance.json +38 -0
  1425. powermcp-0.1.0/PSSE/psspy_command_json/opf_lf_control_penalty.json +38 -0
  1426. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_adjload.json +50 -0
  1427. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_adjvar.json +58 -0
  1428. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_brflow.json +82 -0
  1429. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_intflow.json +50 -0
  1430. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_main.json +58 -0
  1431. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_pgen.json +50 -0
  1432. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_qgen.json +58 -0
  1433. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_reset.json +34 -0
  1434. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_swshunt.json +28 -0
  1435. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_swshunt_2.json +58 -0
  1436. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_tran.json +78 -0
  1437. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_vang.json +50 -0
  1438. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_vang_2.json +70 -0
  1439. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_vmag.json +50 -0
  1440. powermcp-0.1.0/PSSE/psspy_command_json/opf_lnceqn_vmag_2.json +70 -0
  1441. powermcp-0.1.0/PSSE/psspy_command_json/opf_load_indv.json +46 -0
  1442. powermcp-0.1.0/PSSE/psspy_command_json/opf_load_subsys.json +84 -0
  1443. powermcp-0.1.0/PSSE/psspy_command_json/opf_max_tap_ratio_step.json +38 -0
  1444. powermcp-0.1.0/PSSE/psspy_command_json/opf_min_tap_ratio_step.json +38 -0
  1445. powermcp-0.1.0/PSSE/psspy_command_json/opf_perrsv_gen.json +62 -0
  1446. powermcp-0.1.0/PSSE/psspy_command_json/opf_perrsv_main.json +68 -0
  1447. powermcp-0.1.0/PSSE/psspy_command_json/opf_perrsv_reset.json +34 -0
  1448. powermcp-0.1.0/PSSE/psspy_command_json/opf_regulate_area_int.json +50 -0
  1449. powermcp-0.1.0/PSSE/psspy_command_json/opf_round_switched_shunts.json +50 -0
  1450. powermcp-0.1.0/PSSE/psspy_command_json/opf_round_tap_ratios.json +50 -0
  1451. powermcp-0.1.0/PSSE/psspy_command_json/opf_scale_qgen_limits.json +50 -0
  1452. powermcp-0.1.0/PSSE/psspy_command_json/opf_step_length_tolerance.json +38 -0
  1453. powermcp-0.1.0/PSSE/psspy_command_json/opf_use_generator_vsched.json +50 -0
  1454. powermcp-0.1.0/PSSE/psspy_command_json/opto.json +570 -0
  1455. powermcp-0.1.0/PSSE/psspy_command_json/ordbus.json +34 -0
  1456. powermcp-0.1.0/PSSE/psspy_command_json/ordbussect.json +38 -0
  1457. powermcp-0.1.0/PSSE/psspy_command_json/ordr.json +46 -0
  1458. powermcp-0.1.0/PSSE/psspy_command_json/osys.json +42 -0
  1459. powermcp-0.1.0/PSSE/psspy_command_json/osysdef.json +46 -0
  1460. powermcp-0.1.0/PSSE/psspy_command_json/osysinit.json +30 -0
  1461. powermcp-0.1.0/PSSE/psspy_command_json/otdf.json +58 -0
  1462. powermcp-0.1.0/PSSE/psspy_command_json/output_y_matrix.json +98 -0
  1463. powermcp-0.1.0/PSSE/psspy_command_json/outs.json +54 -0
  1464. powermcp-0.1.0/PSSE/psspy_command_json/owndat.json +106 -0
  1465. powermcp-0.1.0/PSSE/psspy_command_json/owner_data.json +50 -0
  1466. powermcp-0.1.0/PSSE/psspy_command_json/ownm.json +164 -0
  1467. powermcp-0.1.0/PSSE/psspy_command_json/ownm_2.json +176 -0
  1468. powermcp-0.1.0/PSSE/psspy_command_json/ownm_3.json +188 -0
  1469. powermcp-0.1.0/PSSE/psspy_command_json/ownnam.json +38 -0
  1470. powermcp-0.1.0/PSSE/psspy_command_json/ownnum.json +38 -0
  1471. powermcp-0.1.0/PSSE/psspy_command_json/ownr.json +54 -0
  1472. powermcp-0.1.0/PSSE/psspy_command_json/ownuse.json +36 -0
  1473. powermcp-0.1.0/PSSE/psspy_command_json/p_losses_cost_coeff.json +38 -0
  1474. powermcp-0.1.0/PSSE/psspy_command_json/pagereport.json +10 -0
  1475. powermcp-0.1.0/PSSE/psspy_command_json/path.json +34 -0
  1476. powermcp-0.1.0/PSSE/psspy_command_json/pauserecording.json +42 -0
  1477. powermcp-0.1.0/PSSE/psspy_command_json/pbus_add_mod.json +70 -0
  1478. powermcp-0.1.0/PSSE/psspy_command_json/pbus_delete.json +42 -0
  1479. powermcp-0.1.0/PSSE/psspy_command_json/phase_shift_adjustment.json +50 -0
  1480. powermcp-0.1.0/PSSE/psspy_command_json/plant_bus_section_chng.json +58 -0
  1481. powermcp-0.1.0/PSSE/psspy_command_json/plant_chng.json +72 -0
  1482. powermcp-0.1.0/PSSE/psspy_command_json/plant_chng_3.json +76 -0
  1483. powermcp-0.1.0/PSSE/psspy_command_json/plant_chng_4.json +104 -0
  1484. powermcp-0.1.0/PSSE/psspy_command_json/plant_data.json +72 -0
  1485. powermcp-0.1.0/PSSE/psspy_command_json/plant_data_3.json +76 -0
  1486. powermcp-0.1.0/PSSE/psspy_command_json/plant_data_4.json +104 -0
  1487. powermcp-0.1.0/PSSE/psspy_command_json/plmod_consistency.json +25 -0
  1488. powermcp-0.1.0/PSSE/psspy_command_json/plmod_pack.json +25 -0
  1489. powermcp-0.1.0/PSSE/psspy_command_json/plmod_remove.json +98 -0
  1490. powermcp-0.1.0/PSSE/psspy_command_json/plmod_status.json +116 -0
  1491. powermcp-0.1.0/PSSE/psspy_command_json/plmod_unconnected.json +46 -0
  1492. powermcp-0.1.0/PSSE/psspy_command_json/plmod_user.json +46 -0
  1493. powermcp-0.1.0/PSSE/psspy_command_json/poly.json +354 -0
  1494. powermcp-0.1.0/PSSE/psspy_command_json/poly_print.json +43 -0
  1495. powermcp-0.1.0/PSSE/psspy_command_json/pout.json +54 -0
  1496. powermcp-0.1.0/PSSE/psspy_command_json/power_output.json +50 -0
  1497. powermcp-0.1.0/PSSE/psspy_command_json/powerflowmode.json +25 -0
  1498. powermcp-0.1.0/PSSE/psspy_command_json/pp_accc.json +194 -0
  1499. powermcp-0.1.0/PSSE/psspy_command_json/pp_accc_multi_case.json +276 -0
  1500. powermcp-0.1.0/PSSE/psspy_command_json/prevdiagfiledataset.json +10 -0
  1501. powermcp-0.1.0/PSSE/psspy_command_json/print_outaged_branches.json +50 -0
  1502. powermcp-0.1.0/PSSE/psspy_command_json/print_winding_buses.json +50 -0
  1503. powermcp-0.1.0/PSSE/psspy_command_json/printdiagfile.json +35 -0
  1504. powermcp-0.1.0/PSSE/psspy_command_json/printdiagfile_2.json +69 -0
  1505. powermcp-0.1.0/PSSE/psspy_command_json/prmdat.json +114 -0
  1506. powermcp-0.1.0/PSSE/psspy_command_json/prmint.json +62 -0
  1507. powermcp-0.1.0/PSSE/psspy_command_json/produce_opf_log_file.json +54 -0
  1508. powermcp-0.1.0/PSSE/psspy_command_json/progress.json +15 -0
  1509. powermcp-0.1.0/PSSE/psspy_command_json/progress_output.json +104 -0
  1510. powermcp-0.1.0/PSSE/psspy_command_json/prompt.json +15 -0
  1511. powermcp-0.1.0/PSSE/psspy_command_json/prompt_output.json +104 -0
  1512. powermcp-0.1.0/PSSE/psspy_command_json/prti.json +25 -0
  1513. powermcp-0.1.0/PSSE/psspy_command_json/psas.json +50 -0
  1514. powermcp-0.1.0/PSSE/psspy_command_json/pscopf.json +566 -0
  1515. powermcp-0.1.0/PSSE/psspy_command_json/pscopf_2.json +582 -0
  1516. powermcp-0.1.0/PSSE/psspy_command_json/pseb.json +50 -0
  1517. powermcp-0.1.0/PSSE/psspy_command_json/pssehalt.json +42 -0
  1518. powermcp-0.1.0/PSSE/psspy_command_json/pssehalt_2.json +25 -0
  1519. powermcp-0.1.0/PSSE/psspy_command_json/psseinit.json +20 -0
  1520. powermcp-0.1.0/PSSE/psspy_command_json/psseversion.json +35 -0
  1521. powermcp-0.1.0/PSSE/psspy_command_json/purg.json +134 -0
  1522. powermcp-0.1.0/PSSE/psspy_command_json/purg2dc.json +34 -0
  1523. powermcp-0.1.0/PSSE/psspy_command_json/purg3wnd.json +50 -0
  1524. powermcp-0.1.0/PSSE/psspy_command_json/purg_voltage_droop.json +38 -0
  1525. powermcp-0.1.0/PSSE/psspy_command_json/purgarea.json +54 -0
  1526. powermcp-0.1.0/PSSE/psspy_command_json/purgatrn.json +46 -0
  1527. powermcp-0.1.0/PSSE/psspy_command_json/purgbrn.json +46 -0
  1528. powermcp-0.1.0/PSSE/psspy_command_json/purgcapcurve.json +50 -0
  1529. powermcp-0.1.0/PSSE/psspy_command_json/purge_all_opf_data.json +25 -0
  1530. powermcp-0.1.0/PSSE/psspy_command_json/purge_multi_term_dc_bus.json +54 -0
  1531. powermcp-0.1.0/PSSE/psspy_command_json/purge_multi_term_dc_convr.json +54 -0
  1532. powermcp-0.1.0/PSSE/psspy_command_json/purge_multi_term_dc_link.json +66 -0
  1533. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_adjbrx_indv.json +50 -0
  1534. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_adjbrx_subsys.json +54 -0
  1535. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_adjload_tbl.json +38 -0
  1536. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_adjvar_indv.json +50 -0
  1537. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_adjvar_indv_3.json +74 -0
  1538. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_adjvar_subsys.json +62 -0
  1539. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_apdsp_tbl.json +38 -0
  1540. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_brflw_3wt.json +58 -0
  1541. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_brflw_brn.json +50 -0
  1542. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_brflw_subsys.json +58 -0
  1543. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_bus_indv.json +34 -0
  1544. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_bus_indv_3.json +38 -0
  1545. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_bus_subsys.json +58 -0
  1546. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_csttbl_lin.json +34 -0
  1547. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_csttbl_poly.json +34 -0
  1548. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_csttbl_quad.json +34 -0
  1549. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_gen_rcap_indv.json +42 -0
  1550. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_gen_rcap_subsys.json +54 -0
  1551. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_gendsp_indv.json +42 -0
  1552. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_gendsp_subsys.json +58 -0
  1553. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_genrsv_indv.json +42 -0
  1554. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_genrsv_subsys.json +54 -0
  1555. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_intflw.json +38 -0
  1556. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_intflw_3wt.json +58 -0
  1557. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_intflw_brn.json +54 -0
  1558. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn.json +34 -0
  1559. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_adjload.json +42 -0
  1560. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_adjvar.json +50 -0
  1561. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_brflow.json +74 -0
  1562. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_intflow.json +42 -0
  1563. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_pgen.json +42 -0
  1564. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_qgen.json +50 -0
  1565. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_swshunt.json +24 -0
  1566. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_swshunt_2.json +50 -0
  1567. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_tran.json +70 -0
  1568. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_vang.json +42 -0
  1569. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_vang_2.json +62 -0
  1570. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_vmag.json +42 -0
  1571. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_lnceqn_vmag_2.json +62 -0
  1572. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_load_indv.json +42 -0
  1573. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_load_subsys.json +54 -0
  1574. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_perrsv.json +34 -0
  1575. powermcp-0.1.0/PSSE/psspy_command_json/purge_opf_perrsv_gen.json +54 -0
  1576. powermcp-0.1.0/PSSE/psspy_command_json/purge_tspf_channel.json +34 -0
  1577. powermcp-0.1.0/PSSE/psspy_command_json/purge_tspf_channel_all.json +38 -0
  1578. powermcp-0.1.0/PSSE/psspy_command_json/purge_tspf_profile.json +30 -0
  1579. powermcp-0.1.0/PSSE/psspy_command_json/purge_tspf_profilecurve.json +42 -0
  1580. powermcp-0.1.0/PSSE/psspy_command_json/purge_tspf_profilecurveset.json +30 -0
  1581. powermcp-0.1.0/PSSE/psspy_command_json/purge_tspf_profiledata.json +42 -0
  1582. powermcp-0.1.0/PSSE/psspy_command_json/purgfacts.json +34 -0
  1583. powermcp-0.1.0/PSSE/psspy_command_json/purggne.json +34 -0
  1584. powermcp-0.1.0/PSSE/psspy_command_json/purgindmac.json +46 -0
  1585. powermcp-0.1.0/PSSE/psspy_command_json/purgindmacs.json +38 -0
  1586. powermcp-0.1.0/PSSE/psspy_command_json/purgload.json +46 -0
  1587. powermcp-0.1.0/PSSE/psspy_command_json/purgloads.json +38 -0
  1588. powermcp-0.1.0/PSSE/psspy_command_json/purgmac.json +46 -0
  1589. powermcp-0.1.0/PSSE/psspy_command_json/purgmdc.json +34 -0
  1590. powermcp-0.1.0/PSSE/psspy_command_json/purgmsl.json +50 -0
  1591. powermcp-0.1.0/PSSE/psspy_command_json/purgmut.json +62 -0
  1592. powermcp-0.1.0/PSSE/psspy_command_json/purgowner.json +54 -0
  1593. powermcp-0.1.0/PSSE/psspy_command_json/purgplnt.json +38 -0
  1594. powermcp-0.1.0/PSSE/psspy_command_json/purgshunt.json +46 -0
  1595. powermcp-0.1.0/PSSE/psspy_command_json/purgshunts.json +38 -0
  1596. powermcp-0.1.0/PSSE/psspy_command_json/purgsws.json +38 -0
  1597. powermcp-0.1.0/PSSE/psspy_command_json/purgswshunt.json +46 -0
  1598. powermcp-0.1.0/PSSE/psspy_command_json/purgvsc.json +34 -0
  1599. powermcp-0.1.0/PSSE/psspy_command_json/purgzone.json +54 -0
  1600. powermcp-0.1.0/PSSE/psspy_command_json/pv_engine.json +462 -0
  1601. powermcp-0.1.0/PSSE/psspy_command_json/pv_engine_1a.json +474 -0
  1602. powermcp-0.1.0/PSSE/psspy_command_json/pv_engine_2.json +530 -0
  1603. powermcp-0.1.0/PSSE/psspy_command_json/pv_engine_3.json +542 -0
  1604. powermcp-0.1.0/PSSE/psspy_command_json/pv_engine_4.json +566 -0
  1605. powermcp-0.1.0/PSSE/psspy_command_json/pv_engine_5.json +598 -0
  1606. powermcp-0.1.0/PSSE/psspy_command_json/pv_engine_6.json +622 -0
  1607. powermcp-0.1.0/PSSE/psspy_command_json/pv_print.json +119 -0
  1608. powermcp-0.1.0/PSSE/psspy_command_json/q_losses_cost_coeff.json +38 -0
  1609. powermcp-0.1.0/PSSE/psspy_command_json/qv_engine.json +280 -0
  1610. powermcp-0.1.0/PSSE/psspy_command_json/qv_engine_2.json +292 -0
  1611. powermcp-0.1.0/PSSE/psspy_command_json/qv_engine_3.json +330 -0
  1612. powermcp-0.1.0/PSSE/psspy_command_json/qv_engine_4.json +386 -0
  1613. powermcp-0.1.0/PSSE/psspy_command_json/qv_print.json +81 -0
  1614. powermcp-0.1.0/PSSE/psspy_command_json/rank.json +170 -0
  1615. powermcp-0.1.0/PSSE/psspy_command_json/rank_brn_and_mac.json +190 -0
  1616. powermcp-0.1.0/PSSE/psspy_command_json/ratchr.json +54 -0
  1617. powermcp-0.1.0/PSSE/psspy_command_json/rate.json +110 -0
  1618. powermcp-0.1.0/PSSE/psspy_command_json/rate_2.json +130 -0
  1619. powermcp-0.1.0/PSSE/psspy_command_json/rating_set.json +38 -0
  1620. powermcp-0.1.0/PSSE/psspy_command_json/ratingsettextdata.json +42 -0
  1621. powermcp-0.1.0/PSSE/psspy_command_json/rawd.json +166 -0
  1622. powermcp-0.1.0/PSSE/psspy_command_json/rawd_2.json +190 -0
  1623. powermcp-0.1.0/PSSE/psspy_command_json/rawdx.json +166 -0
  1624. powermcp-0.1.0/PSSE/psspy_command_json/rawx_to_csv.json +50 -0
  1625. powermcp-0.1.0/PSSE/psspy_command_json/rdch.json +54 -0
  1626. powermcp-0.1.0/PSSE/psspy_command_json/rdchrawversion.json +74 -0
  1627. powermcp-0.1.0/PSSE/psspy_command_json/rdeq.json +112 -0
  1628. powermcp-0.1.0/PSSE/psspy_command_json/reactive_resv_cost_coeff.json +38 -0
  1629. powermcp-0.1.0/PSSE/psspy_command_json/read.json +66 -0
  1630. powermcp-0.1.0/PSSE/psspy_command_json/read_ras.json +38 -0
  1631. powermcp-0.1.0/PSSE/psspy_command_json/readcapcurves.json +38 -0
  1632. powermcp-0.1.0/PSSE/psspy_command_json/readrawversion.json +74 -0
  1633. powermcp-0.1.0/PSSE/psspy_command_json/readrawx.json +76 -0
  1634. powermcp-0.1.0/PSSE/psspy_command_json/readsub.json +184 -0
  1635. powermcp-0.1.0/PSSE/psspy_command_json/readsubrawversion.json +192 -0
  1636. powermcp-0.1.0/PSSE/psspy_command_json/readx.json +42 -0
  1637. powermcp-0.1.0/PSSE/psspy_command_json/recn.json +34 -0
  1638. powermcp-0.1.0/PSSE/psspy_command_json/refreshdiagcontour.json +10 -0
  1639. powermcp-0.1.0/PSSE/psspy_command_json/refreshdiagfile.json +10 -0
  1640. powermcp-0.1.0/PSSE/psspy_command_json/refreshgui.json +10 -0
  1641. powermcp-0.1.0/PSSE/psspy_command_json/regb.json +54 -0
  1642. powermcp-0.1.0/PSSE/psspy_command_json/relind.json +272 -0
  1643. powermcp-0.1.0/PSSE/psspy_command_json/relind_2.json +284 -0
  1644. powermcp-0.1.0/PSSE/psspy_command_json/remm.json +58 -0
  1645. powermcp-0.1.0/PSSE/psspy_command_json/remove_unused_chan_models.json +25 -0
  1646. powermcp-0.1.0/PSSE/psspy_command_json/renumdiagfile.json +15 -0
  1647. powermcp-0.1.0/PSSE/psspy_command_json/report.json +15 -0
  1648. powermcp-0.1.0/PSSE/psspy_command_json/report_output.json +104 -0
  1649. powermcp-0.1.0/PSSE/psspy_command_json/resq.json +34 -0
  1650. powermcp-0.1.0/PSSE/psspy_command_json/resqversion.json +54 -0
  1651. powermcp-0.1.0/PSSE/psspy_command_json/restorestatesfromisolate.json +29 -0
  1652. powermcp-0.1.0/PSSE/psspy_command_json/result_table_output.json +46 -0
  1653. powermcp-0.1.0/PSSE/psspy_command_json/reti.json +34 -0
  1654. powermcp-0.1.0/PSSE/psspy_command_json/retry_pssuserpf.json +21 -0
  1655. powermcp-0.1.0/PSSE/psspy_command_json/rev29_names.json +46 -0
  1656. powermcp-0.1.0/PSSE/psspy_command_json/rllist.json +76 -0
  1657. powermcp-0.1.0/PSSE/psspy_command_json/rlmod_pack.json +25 -0
  1658. powermcp-0.1.0/PSSE/psspy_command_json/rlmod_remove.json +58 -0
  1659. powermcp-0.1.0/PSSE/psspy_command_json/rlmod_status.json +78 -0
  1660. powermcp-0.1.0/PSSE/psspy_command_json/rlmod_unconnected.json +46 -0
  1661. powermcp-0.1.0/PSSE/psspy_command_json/rlmod_user.json +46 -0
  1662. powermcp-0.1.0/PSSE/psspy_command_json/rmodind.json +114 -0
  1663. powermcp-0.1.0/PSSE/psspy_command_json/rmodnam.json +62 -0
  1664. powermcp-0.1.0/PSSE/psspy_command_json/rnfi.json +126 -0
  1665. powermcp-0.1.0/PSSE/psspy_command_json/ropf.json +34 -0
  1666. powermcp-0.1.0/PSSE/psspy_command_json/rsol.json +244 -0
  1667. powermcp-0.1.0/PSSE/psspy_command_json/rstr.json +38 -0
  1668. powermcp-0.1.0/PSSE/psspy_command_json/run.json +74 -0
  1669. powermcp-0.1.0/PSSE/psspy_command_json/rundynamiceventstudy.json +10 -0
  1670. powermcp-0.1.0/PSSE/psspy_command_json/runiplanfile.json +15 -0
  1671. powermcp-0.1.0/PSSE/psspy_command_json/runlastsolution.json +25 -0
  1672. powermcp-0.1.0/PSSE/psspy_command_json/runpowerfloweventstudy.json +10 -0
  1673. powermcp-0.1.0/PSSE/psspy_command_json/runrspnsfile.json +15 -0
  1674. powermcp-0.1.0/PSSE/psspy_command_json/rwcm.json +80 -0
  1675. powermcp-0.1.0/PSSE/psspy_command_json/rwdy.json +104 -0
  1676. powermcp-0.1.0/PSSE/psspy_command_json/rwma.json +134 -0
  1677. powermcp-0.1.0/PSSE/psspy_command_json/rwmm.json +54 -0
  1678. powermcp-0.1.0/PSSE/psspy_command_json/rwop.json +106 -0
  1679. powermcp-0.1.0/PSSE/psspy_command_json/rwsq.json +138 -0
  1680. powermcp-0.1.0/PSSE/psspy_command_json/rwsq_2.json +150 -0
  1681. powermcp-0.1.0/PSSE/psspy_command_json/rxpath.json +78 -0
  1682. powermcp-0.1.0/PSSE/psspy_command_json/save.json +42 -0
  1683. powermcp-0.1.0/PSSE/psspy_command_json/savediagfile.json +15 -0
  1684. powermcp-0.1.0/PSSE/psspy_command_json/saveeventstudyfile.json +15 -0
  1685. powermcp-0.1.0/PSSE/psspy_command_json/savescenariofile.json +15 -0
  1686. powermcp-0.1.0/PSSE/psspy_command_json/sbsgtbkv.json +24 -0
  1687. powermcp-0.1.0/PSSE/psspy_command_json/sc3wnd.json +94 -0
  1688. powermcp-0.1.0/PSSE/psspy_command_json/scal.json +254 -0
  1689. powermcp-0.1.0/PSSE/psspy_command_json/scal_2.json +250 -0
  1690. powermcp-0.1.0/PSSE/psspy_command_json/scal_3.json +258 -0
  1691. powermcp-0.1.0/PSSE/psspy_command_json/scal_4.json +312 -0
  1692. powermcp-0.1.0/PSSE/psspy_command_json/scbrn2.json +90 -0
  1693. powermcp-0.1.0/PSSE/psspy_command_json/scbus2.json +130 -0
  1694. powermcp-0.1.0/PSSE/psspy_command_json/scdone.json +25 -0
  1695. powermcp-0.1.0/PSSE/psspy_command_json/scenarioclose.json +29 -0
  1696. powermcp-0.1.0/PSSE/psspy_command_json/scenariocopyfile.json +54 -0
  1697. powermcp-0.1.0/PSSE/psspy_command_json/scenariofileadd.json +58 -0
  1698. powermcp-0.1.0/PSSE/psspy_command_json/scenariofilecount.json +42 -0
  1699. powermcp-0.1.0/PSSE/psspy_command_json/scenariofilegetattrs.json +58 -0
  1700. powermcp-0.1.0/PSSE/psspy_command_json/scenariofilegetcomments.json +50 -0
  1701. powermcp-0.1.0/PSSE/psspy_command_json/scenariofilelengthcomments.json +50 -0
  1702. powermcp-0.1.0/PSSE/psspy_command_json/scenariofilelist.json +42 -0
  1703. powermcp-0.1.0/PSSE/psspy_command_json/scenariofileremove.json +50 -0
  1704. powermcp-0.1.0/PSSE/psspy_command_json/scenariofilerename.json +54 -0
  1705. powermcp-0.1.0/PSSE/psspy_command_json/scenariofilesetattrs.json +58 -0
  1706. powermcp-0.1.0/PSSE/psspy_command_json/scenariofilesetcomments.json +58 -0
  1707. powermcp-0.1.0/PSSE/psspy_command_json/scenariogetattrs.json +65 -0
  1708. powermcp-0.1.0/PSSE/psspy_command_json/scenariogetcomments.json +33 -0
  1709. powermcp-0.1.0/PSSE/psspy_command_json/scenariogetopt.json +143 -0
  1710. powermcp-0.1.0/PSSE/psspy_command_json/scenariogroupadd.json +38 -0
  1711. powermcp-0.1.0/PSSE/psspy_command_json/scenariogroupcount.json +33 -0
  1712. powermcp-0.1.0/PSSE/psspy_command_json/scenariogroupgetcomments.json +42 -0
  1713. powermcp-0.1.0/PSSE/psspy_command_json/scenariogrouplengthcomments.json +42 -0
  1714. powermcp-0.1.0/PSSE/psspy_command_json/scenariogrouplist.json +33 -0
  1715. powermcp-0.1.0/PSSE/psspy_command_json/scenariogroupopen.json +38 -0
  1716. powermcp-0.1.0/PSSE/psspy_command_json/scenariogroupremove.json +38 -0
  1717. powermcp-0.1.0/PSSE/psspy_command_json/scenariogrouprename.json +42 -0
  1718. powermcp-0.1.0/PSSE/psspy_command_json/scenariogroupsetcomments.json +50 -0
  1719. powermcp-0.1.0/PSSE/psspy_command_json/scenarioisdirty.json +15 -0
  1720. powermcp-0.1.0/PSSE/psspy_command_json/scenarioisvalid.json +15 -0
  1721. powermcp-0.1.0/PSSE/psspy_command_json/scenariolengthcomments.json +33 -0
  1722. powermcp-0.1.0/PSSE/psspy_command_json/scenariomodelgroup.json +46 -0
  1723. powermcp-0.1.0/PSSE/psspy_command_json/scenariomovefile.json +54 -0
  1724. powermcp-0.1.0/PSSE/psspy_command_json/scenarionew.json +30 -0
  1725. powermcp-0.1.0/PSSE/psspy_command_json/scenarioopen.json +38 -0
  1726. powermcp-0.1.0/PSSE/psspy_command_json/scenariosave.json +38 -0
  1727. powermcp-0.1.0/PSSE/psspy_command_json/scenariosetattrs.json +42 -0
  1728. powermcp-0.1.0/PSSE/psspy_command_json/scenariosetcomments.json +42 -0
  1729. powermcp-0.1.0/PSSE/psspy_command_json/scenariosetopt.json +144 -0
  1730. powermcp-0.1.0/PSSE/psspy_command_json/scenariotrackfileadd.json +42 -0
  1731. powermcp-0.1.0/PSSE/psspy_command_json/scenariotrackfilelist.json +33 -0
  1732. powermcp-0.1.0/PSSE/psspy_command_json/scenariotrackfilenum.json +29 -0
  1733. powermcp-0.1.0/PSSE/psspy_command_json/scenariounzip.json +30 -0
  1734. powermcp-0.1.0/PSSE/psspy_command_json/scenariounzipproblems.json +61 -0
  1735. powermcp-0.1.0/PSSE/psspy_command_json/scenariounzipsolutions.json +58 -0
  1736. powermcp-0.1.0/PSSE/psspy_command_json/scenariozip.json +34 -0
  1737. powermcp-0.1.0/PSSE/psspy_command_json/scenariozipactive.json +15 -0
  1738. powermcp-0.1.0/PSSE/psspy_command_json/scenariozipopen.json +34 -0
  1739. powermcp-0.1.0/PSSE/psspy_command_json/scenariozipsave.json +20 -0
  1740. powermcp-0.1.0/PSSE/psspy_command_json/sceq.json +124 -0
  1741. powermcp-0.1.0/PSSE/psspy_command_json/scgr.json +154 -0
  1742. powermcp-0.1.0/PSSE/psspy_command_json/scinit.json +29 -0
  1743. powermcp-0.1.0/PSSE/psspy_command_json/scmac2.json +86 -0
  1744. powermcp-0.1.0/PSSE/psspy_command_json/scmu.json +640 -0
  1745. powermcp-0.1.0/PSSE/psspy_command_json/scmu_2.json +766 -0
  1746. powermcp-0.1.0/PSSE/psspy_command_json/scop.json +110 -0
  1747. powermcp-0.1.0/PSSE/psspy_command_json/selctr.json +31 -0
  1748. powermcp-0.1.0/PSSE/psspy_command_json/sensitivity_flow.json +324 -0
  1749. powermcp-0.1.0/PSSE/psspy_command_json/sensitivity_flows.json +296 -0
  1750. powermcp-0.1.0/PSSE/psspy_command_json/sensitivity_interface.json +272 -0
  1751. powermcp-0.1.0/PSSE/psspy_command_json/sensitivity_voltage.json +262 -0
  1752. powermcp-0.1.0/PSSE/psspy_command_json/sensitivity_voltages.json +254 -0
  1753. powermcp-0.1.0/PSSE/psspy_command_json/seq_3_wind_grounding_data.json +88 -0
  1754. powermcp-0.1.0/PSSE/psspy_command_json/seq_3_wind_winding_data.json +86 -0
  1755. powermcp-0.1.0/PSSE/psspy_command_json/seq_branch_data.json +102 -0
  1756. powermcp-0.1.0/PSSE/psspy_command_json/seq_branch_data_3.json +132 -0
  1757. powermcp-0.1.0/PSSE/psspy_command_json/seq_bus_data.json +66 -0
  1758. powermcp-0.1.0/PSSE/psspy_command_json/seq_fixed_shunt_data.json +70 -0
  1759. powermcp-0.1.0/PSSE/psspy_command_json/seq_induction_mach_data.json +108 -0
  1760. powermcp-0.1.0/PSSE/psspy_command_json/seq_induction_mach_data_2.json +124 -0
  1761. powermcp-0.1.0/PSSE/psspy_command_json/seq_load_data.json +88 -0
  1762. powermcp-0.1.0/PSSE/psspy_command_json/seq_machine_data.json +86 -0
  1763. powermcp-0.1.0/PSSE/psspy_command_json/seq_machine_data_3.json +120 -0
  1764. powermcp-0.1.0/PSSE/psspy_command_json/seq_machine_data_4.json +124 -0
  1765. powermcp-0.1.0/PSSE/psspy_command_json/seq_machine_ncs_data.json +96 -0
  1766. powermcp-0.1.0/PSSE/psspy_command_json/seq_machine_ncs_data_purg.json +50 -0
  1767. powermcp-0.1.0/PSSE/psspy_command_json/seq_mutual_data.json +122 -0
  1768. powermcp-0.1.0/PSSE/psspy_command_json/seq_ncs_flt_cntrb_chng.json +42 -0
  1769. powermcp-0.1.0/PSSE/psspy_command_json/seq_ncs_flt_cntrb_data.json +42 -0
  1770. powermcp-0.1.0/PSSE/psspy_command_json/seq_ncs_flt_cntrb_purg.json +54 -0
  1771. powermcp-0.1.0/PSSE/psspy_command_json/seq_ncs_table_data.json +70 -0
  1772. powermcp-0.1.0/PSSE/psspy_command_json/seq_ncs_table_onept.json +62 -0
  1773. powermcp-0.1.0/PSSE/psspy_command_json/seq_ncs_table_purg.json +38 -0
  1774. powermcp-0.1.0/PSSE/psspy_command_json/seq_ncs_table_purg_onept.json +54 -0
  1775. powermcp-0.1.0/PSSE/psspy_command_json/seq_ncs_table_type.json +42 -0
  1776. powermcp-0.1.0/PSSE/psspy_command_json/seq_switched_shunt_data.json +96 -0
  1777. powermcp-0.1.0/PSSE/psspy_command_json/seq_switched_shunt_data_3.json +104 -0
  1778. powermcp-0.1.0/PSSE/psspy_command_json/seq_three_winding_data.json +112 -0
  1779. powermcp-0.1.0/PSSE/psspy_command_json/seq_three_winding_data_3.json +152 -0
  1780. powermcp-0.1.0/PSSE/psspy_command_json/seq_two_winding_data.json +108 -0
  1781. powermcp-0.1.0/PSSE/psspy_command_json/seq_two_winding_data_3.json +140 -0
  1782. powermcp-0.1.0/PSSE/psspy_command_json/seqd.json +62 -0
  1783. powermcp-0.1.0/PSSE/psspy_command_json/seqd_2.json +86 -0
  1784. powermcp-0.1.0/PSSE/psspy_command_json/sequence_network_setup.json +50 -0
  1785. powermcp-0.1.0/PSSE/psspy_command_json/set_chnfil_type.json +42 -0
  1786. powermcp-0.1.0/PSSE/psspy_command_json/set_disable_run.json +42 -0
  1787. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_acline_char.json +62 -0
  1788. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_acline_int.json +62 -0
  1789. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_acline_logical.json +62 -0
  1790. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_acline_real.json +62 -0
  1791. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_area_char.json +54 -0
  1792. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_area_int.json +54 -0
  1793. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_area_logical.json +54 -0
  1794. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_area_real.json +54 -0
  1795. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_bus_char.json +54 -0
  1796. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_bus_int.json +54 -0
  1797. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_bus_logical.json +54 -0
  1798. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_bus_real.json +54 -0
  1799. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_char.json +58 -0
  1800. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_facts_char.json +54 -0
  1801. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_facts_int.json +54 -0
  1802. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_facts_logical.json +54 -0
  1803. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_facts_real.json +54 -0
  1804. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_fixshunt_char.json +58 -0
  1805. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_fixshunt_int.json +58 -0
  1806. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_fixshunt_logical.json +58 -0
  1807. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_fixshunt_real.json +58 -0
  1808. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_generator_char.json +58 -0
  1809. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_generator_int.json +58 -0
  1810. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_generator_logical.json +58 -0
  1811. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_generator_real.json +58 -0
  1812. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_gne_char.json +54 -0
  1813. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_gne_int.json +54 -0
  1814. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_gne_logical.json +54 -0
  1815. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_gne_real.json +54 -0
  1816. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_iatrans_char.json +62 -0
  1817. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_iatrans_int.json +62 -0
  1818. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_iatrans_logical.json +62 -0
  1819. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_iatrans_real.json +62 -0
  1820. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_indmach_char.json +58 -0
  1821. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_indmach_int.json +58 -0
  1822. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_indmach_logical.json +58 -0
  1823. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_indmach_real.json +58 -0
  1824. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_int.json +58 -0
  1825. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_load_char.json +58 -0
  1826. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_load_int.json +58 -0
  1827. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_load_logical.json +58 -0
  1828. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_load_real.json +58 -0
  1829. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_logical.json +58 -0
  1830. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_msline_char.json +62 -0
  1831. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_msline_int.json +62 -0
  1832. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_msline_logical.json +62 -0
  1833. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_msline_real.json +62 -0
  1834. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_ntermdc_char.json +54 -0
  1835. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_ntermdc_int.json +54 -0
  1836. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_ntermdc_logical.json +54 -0
  1837. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_ntermdc_real.json +54 -0
  1838. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_owner_char.json +54 -0
  1839. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_owner_int.json +54 -0
  1840. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_owner_logical.json +54 -0
  1841. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_owner_real.json +54 -0
  1842. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_rating_char.json +54 -0
  1843. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_rating_int.json +54 -0
  1844. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_rating_logical.json +54 -0
  1845. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_rating_real.json +54 -0
  1846. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_real.json +58 -0
  1847. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_sub_char.json +54 -0
  1848. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_sub_int.json +54 -0
  1849. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_sub_logical.json +54 -0
  1850. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_sub_real.json +54 -0
  1851. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_subnode_char.json +58 -0
  1852. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_subnode_int.json +58 -0
  1853. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_subnode_logical.json +58 -0
  1854. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_subnode_real.json +58 -0
  1855. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_subswd_char.json +66 -0
  1856. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_subswd_int.json +66 -0
  1857. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_subswd_logical.json +66 -0
  1858. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_subswd_real.json +66 -0
  1859. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_swshunt_char.json +58 -0
  1860. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_swshunt_int.json +58 -0
  1861. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_swshunt_logical.json +58 -0
  1862. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_swshunt_real.json +58 -0
  1863. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_sysswd_char.json +62 -0
  1864. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_sysswd_int.json +62 -0
  1865. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_sysswd_logical.json +62 -0
  1866. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_sysswd_real.json +62 -0
  1867. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_transformer_char.json +66 -0
  1868. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_transformer_int.json +66 -0
  1869. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_transformer_logical.json +66 -0
  1870. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_transformer_real.json +66 -0
  1871. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_twotermdc_char.json +54 -0
  1872. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_twotermdc_int.json +54 -0
  1873. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_twotermdc_logical.json +54 -0
  1874. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_twotermdc_real.json +54 -0
  1875. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_vscdc_char.json +54 -0
  1876. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_vscdc_int.json +54 -0
  1877. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_vscdc_logical.json +54 -0
  1878. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_vscdc_real.json +54 -0
  1879. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_zone_char.json +54 -0
  1880. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_zone_int.json +54 -0
  1881. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_zone_logical.json +54 -0
  1882. powermcp-0.1.0/PSSE/psspy_command_json/set_ext_zone_real.json +54 -0
  1883. powermcp-0.1.0/PSSE/psspy_command_json/set_freq_relay_v_thresh.json +30 -0
  1884. powermcp-0.1.0/PSSE/psspy_command_json/set_genang.json +50 -0
  1885. powermcp-0.1.0/PSSE/psspy_command_json/set_genang_2.json +58 -0
  1886. powermcp-0.1.0/PSSE/psspy_command_json/set_genang_3.json +72 -0
  1887. powermcp-0.1.0/PSSE/psspy_command_json/set_genang_subsys_flag.json +54 -0
  1888. powermcp-0.1.0/PSSE/psspy_command_json/set_genpwr.json +50 -0
  1889. powermcp-0.1.0/PSSE/psspy_command_json/set_genspdev.json +64 -0
  1890. powermcp-0.1.0/PSSE/psspy_command_json/set_genspdev_subsys_flag.json +54 -0
  1891. powermcp-0.1.0/PSSE/psspy_command_json/set_input_dev.json +34 -0
  1892. powermcp-0.1.0/PSSE/psspy_command_json/set_load_model_thresh.json +38 -0
  1893. powermcp-0.1.0/PSSE/psspy_command_json/set_model_debug_output_flag.json +42 -0
  1894. powermcp-0.1.0/PSSE/psspy_command_json/set_netfrq.json +42 -0
  1895. powermcp-0.1.0/PSSE/psspy_command_json/set_next_channel.json +38 -0
  1896. powermcp-0.1.0/PSSE/psspy_command_json/set_next_icon.json +38 -0
  1897. powermcp-0.1.0/PSSE/psspy_command_json/set_next_var.json +38 -0
  1898. powermcp-0.1.0/PSSE/psspy_command_json/set_opf_report_subsystem.json +54 -0
  1899. powermcp-0.1.0/PSSE/psspy_command_json/set_osscan.json +56 -0
  1900. powermcp-0.1.0/PSSE/psspy_command_json/set_osscan_2.json +70 -0
  1901. powermcp-0.1.0/PSSE/psspy_command_json/set_osscan_subsys_flag.json +54 -0
  1902. powermcp-0.1.0/PSSE/psspy_command_json/set_progress_verbose.json +46 -0
  1903. powermcp-0.1.0/PSSE/psspy_command_json/set_relang.json +76 -0
  1904. powermcp-0.1.0/PSSE/psspy_command_json/set_relscn.json +42 -0
  1905. powermcp-0.1.0/PSSE/psspy_command_json/set_relscn_subsys_flag.json +54 -0
  1906. powermcp-0.1.0/PSSE/psspy_command_json/set_vltscn.json +54 -0
  1907. powermcp-0.1.0/PSSE/psspy_command_json/set_vltscn_subsys_flag.json +54 -0
  1908. powermcp-0.1.0/PSSE/psspy_command_json/set_volt_viol_subsys_flag.json +46 -0
  1909. powermcp-0.1.0/PSSE/psspy_command_json/set_voltage_dip_check.json +50 -0
  1910. powermcp-0.1.0/PSSE/psspy_command_json/set_voltage_rec_check.json +80 -0
  1911. powermcp-0.1.0/PSSE/psspy_command_json/set_zsorce_reconcile_flag.json +42 -0
  1912. powermcp-0.1.0/PSSE/psspy_command_json/setactiveeventstudy.json +15 -0
  1913. powermcp-0.1.0/PSSE/psspy_command_json/setdiagautofile.json +15 -0
  1914. powermcp-0.1.0/PSSE/psspy_command_json/setdiagfont.json +23 -0
  1915. powermcp-0.1.0/PSSE/psspy_command_json/setdiagprec.json +15 -0
  1916. powermcp-0.1.0/PSSE/psspy_command_json/setdiagprec_2.json +35 -0
  1917. powermcp-0.1.0/PSSE/psspy_command_json/setdiagprop.json +323 -0
  1918. powermcp-0.1.0/PSSE/psspy_command_json/setdiagprop_2.json +269 -0
  1919. powermcp-0.1.0/PSSE/psspy_command_json/setdiagprop_3.json +273 -0
  1920. powermcp-0.1.0/PSSE/psspy_command_json/setdiagprop_4.json +277 -0
  1921. powermcp-0.1.0/PSSE/psspy_command_json/setdiagprop_5.json +277 -0
  1922. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresaccc.json +85 -0
  1923. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresaccc_2.json +73 -0
  1924. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresaccc_3.json +91 -0
  1925. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresascc.json +191 -0
  1926. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresascc_2.json +183 -0
  1927. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresascc_3.json +197 -0
  1928. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresdata.json +355 -0
  1929. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresdata_2.json +49 -0
  1930. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresdata_3.json +67 -0
  1931. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresdyn.json +37 -0
  1932. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresdyn_2.json +55 -0
  1933. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresgdif.json +269 -0
  1934. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresiec.json +191 -0
  1935. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresiec_2.json +183 -0
  1936. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresiec_3.json +197 -0
  1937. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresmust.json +83 -0
  1938. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresopf.json +35 -0
  1939. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresopf_2.json +55 -0
  1940. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresopf_3.json +75 -0
  1941. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrespflowcheck.json +473 -0
  1942. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrespflowcheck_2.json +239 -0
  1943. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrespflowcheck_3.json +297 -0
  1944. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrespflowoptions.json +185 -0
  1945. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrespflowoptions_2.json +145 -0
  1946. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrespflowoptions_3.json +249 -0
  1947. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresrel.json +229 -0
  1948. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresrel_2.json +167 -0
  1949. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresrel_3.json +185 -0
  1950. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresscgr.json +295 -0
  1951. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypeacc.json +10 -0
  1952. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypeascc.json +10 -0
  1953. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypedata.json +10 -0
  1954. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypedyn.json +10 -0
  1955. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypegdif.json +35 -0
  1956. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypegic.json +10 -0
  1957. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypeharm.json +10 -0
  1958. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypeiec.json +10 -0
  1959. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypemust.json +10 -0
  1960. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypeopf.json +10 -0
  1961. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypepflow.json +10 -0
  1962. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestyperel.json +10 -0
  1963. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypescgr.json +115 -0
  1964. powermcp-0.1.0/PSSE/psspy_command_json/setdiagrestypetspf.json +10 -0
  1965. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresvrcs.json +331 -0
  1966. powermcp-0.1.0/PSSE/psspy_command_json/setdiagresvrcs_2.json +375 -0
  1967. powermcp-0.1.0/PSSE/psspy_command_json/setdiagtitle.json +15 -0
  1968. powermcp-0.1.0/PSSE/psspy_command_json/setfullviewgrapharea.json +309 -0
  1969. powermcp-0.1.0/PSSE/psspy_command_json/setfullviewscale.json +213 -0
  1970. powermcp-0.1.0/PSSE/psspy_command_json/sethomepath.json +15 -0
  1971. powermcp-0.1.0/PSSE/psspy_command_json/sfiles.json +19 -0
  1972. powermcp-0.1.0/PSSE/psspy_command_json/shnt.json +76 -0
  1973. powermcp-0.1.0/PSSE/psspy_command_json/short_circuit_coordinates.json +50 -0
  1974. powermcp-0.1.0/PSSE/psspy_command_json/short_circuit_modeling.json +50 -0
  1975. powermcp-0.1.0/PSSE/psspy_command_json/short_circuit_units.json +50 -0
  1976. powermcp-0.1.0/PSSE/psspy_command_json/short_circuit_warning.json +50 -0
  1977. powermcp-0.1.0/PSSE/psspy_command_json/short_circuit_z_coordinates.json +50 -0
  1978. powermcp-0.1.0/PSSE/psspy_command_json/short_circuit_z_units.json +50 -0
  1979. powermcp-0.1.0/PSSE/psspy_command_json/show.json +62 -0
  1980. powermcp-0.1.0/PSSE/psspy_command_json/showloadedlibraries.json +10 -0
  1981. powermcp-0.1.0/PSSE/psspy_command_json/showloadedmodules.json +10 -0
  1982. powermcp-0.1.0/PSSE/psspy_command_json/showtable.json +36 -0
  1983. powermcp-0.1.0/PSSE/psspy_command_json/showtablebyindex.json +36 -0
  1984. powermcp-0.1.0/PSSE/psspy_command_json/shunt_chng.json +62 -0
  1985. powermcp-0.1.0/PSSE/psspy_command_json/shunt_data.json +88 -0
  1986. powermcp-0.1.0/PSSE/psspy_command_json/size.json +25 -0
  1987. powermcp-0.1.0/PSSE/psspy_command_json/size_ds.json +25 -0
  1988. powermcp-0.1.0/PSSE/psspy_command_json/slmodind.json +126 -0
  1989. powermcp-0.1.0/PSSE/psspy_command_json/slmodnam.json +92 -0
  1990. powermcp-0.1.0/PSSE/psspy_command_json/snap.json +70 -0
  1991. powermcp-0.1.0/PSSE/psspy_command_json/solstr.json +15 -0
  1992. powermcp-0.1.0/PSSE/psspy_command_json/solution_parameters.json +124 -0
  1993. powermcp-0.1.0/PSSE/psspy_command_json/solution_parameters_2.json +132 -0
  1994. powermcp-0.1.0/PSSE/psspy_command_json/solution_parameters_3.json +136 -0
  1995. powermcp-0.1.0/PSSE/psspy_command_json/solution_parameters_4.json +144 -0
  1996. powermcp-0.1.0/PSSE/psspy_command_json/solution_parameters_5.json +168 -0
  1997. powermcp-0.1.0/PSSE/psspy_command_json/solv.json +142 -0
  1998. powermcp-0.1.0/PSSE/psspy_command_json/solved.json +67 -0
  1999. powermcp-0.1.0/PSSE/psspy_command_json/solved_ca.json +71 -0
  2000. powermcp-0.1.0/PSSE/psspy_command_json/spcb.json +160 -0
  2001. powermcp-0.1.0/PSSE/psspy_command_json/spil.json +366 -0
  2002. powermcp-0.1.0/PSSE/psspy_command_json/splt.json +62 -0
  2003. powermcp-0.1.0/PSSE/psspy_command_json/sqex.json +54 -0
  2004. powermcp-0.1.0/PSSE/psspy_command_json/sqli.json +128 -0
  2005. powermcp-0.1.0/PSSE/psspy_command_json/sraind.json +174 -0
  2006. powermcp-0.1.0/PSSE/psspy_command_json/stadat.json +58 -0
  2007. powermcp-0.1.0/PSSE/psspy_command_json/staint.json +62 -0
  2008. powermcp-0.1.0/PSSE/psspy_command_json/staname.json +34 -0
  2009. powermcp-0.1.0/PSSE/psspy_command_json/stanodeint.json +66 -0
  2010. powermcp-0.1.0/PSSE/psspy_command_json/stanodename.json +42 -0
  2011. powermcp-0.1.0/PSSE/psspy_command_json/starea.json +30 -0
  2012. powermcp-0.1.0/PSSE/psspy_command_json/startrecording.json +46 -0
  2013. powermcp-0.1.0/PSSE/psspy_command_json/staswdevdat.json +138 -0
  2014. powermcp-0.1.0/PSSE/psspy_command_json/staswdevint.json +78 -0
  2015. powermcp-0.1.0/PSSE/psspy_command_json/staswdevname.json +54 -0
  2016. powermcp-0.1.0/PSSE/psspy_command_json/state_channel.json +58 -0
  2017. powermcp-0.1.0/PSSE/psspy_command_json/station_2dc_bus_term_chng.json +70 -0
  2018. powermcp-0.1.0/PSSE/psspy_command_json/station_2dc_conv_term_chng.json +70 -0
  2019. powermcp-0.1.0/PSSE/psspy_command_json/station_adjvar_term_chng.json +74 -0
  2020. powermcp-0.1.0/PSSE/psspy_command_json/station_ampout.json +62 -0
  2021. powermcp-0.1.0/PSSE/psspy_command_json/station_branch_term_chng.json +94 -0
  2022. powermcp-0.1.0/PSSE/psspy_command_json/station_branch_term_move.json +82 -0
  2023. powermcp-0.1.0/PSSE/psspy_command_json/station_build_config.json +102 -0
  2024. powermcp-0.1.0/PSSE/psspy_command_json/station_bus_purg.json +54 -0
  2025. powermcp-0.1.0/PSSE/psspy_command_json/station_chng.json +78 -0
  2026. powermcp-0.1.0/PSSE/psspy_command_json/station_data.json +78 -0
  2027. powermcp-0.1.0/PSSE/psspy_command_json/station_facts_bus_term_chng.json +70 -0
  2028. powermcp-0.1.0/PSSE/psspy_command_json/station_facts_term_chng.json +70 -0
  2029. powermcp-0.1.0/PSSE/psspy_command_json/station_indmachine_term_chng.json +74 -0
  2030. powermcp-0.1.0/PSSE/psspy_command_json/station_list.json +62 -0
  2031. powermcp-0.1.0/PSSE/psspy_command_json/station_load_term_chng.json +74 -0
  2032. powermcp-0.1.0/PSSE/psspy_command_json/station_machine_term_chng.json +74 -0
  2033. powermcp-0.1.0/PSSE/psspy_command_json/station_mtdc_bus_term_chng.json +70 -0
  2034. powermcp-0.1.0/PSSE/psspy_command_json/station_mtdc_term_chng.json +78 -0
  2035. powermcp-0.1.0/PSSE/psspy_command_json/station_node_chng.json +90 -0
  2036. powermcp-0.1.0/PSSE/psspy_command_json/station_node_data.json +98 -0
  2037. powermcp-0.1.0/PSSE/psspy_command_json/station_node_number.json +58 -0
  2038. powermcp-0.1.0/PSSE/psspy_command_json/station_node_purg.json +58 -0
  2039. powermcp-0.1.0/PSSE/psspy_command_json/station_number.json +46 -0
  2040. powermcp-0.1.0/PSSE/psspy_command_json/station_pout.json +58 -0
  2041. powermcp-0.1.0/PSSE/psspy_command_json/station_pout_2.json +80 -0
  2042. powermcp-0.1.0/PSSE/psspy_command_json/station_purg.json +46 -0
  2043. powermcp-0.1.0/PSSE/psspy_command_json/station_shunt_term_chng.json +74 -0
  2044. powermcp-0.1.0/PSSE/psspy_command_json/station_swd_chng.json +128 -0
  2045. powermcp-0.1.0/PSSE/psspy_command_json/station_swd_data.json +136 -0
  2046. powermcp-0.1.0/PSSE/psspy_command_json/station_swd_mbid.json +86 -0
  2047. powermcp-0.1.0/PSSE/psspy_command_json/station_swd_move.json +78 -0
  2048. powermcp-0.1.0/PSSE/psspy_command_json/station_swd_purg.json +70 -0
  2049. powermcp-0.1.0/PSSE/psspy_command_json/station_sws_shunt_term_chng.json +62 -0
  2050. powermcp-0.1.0/PSSE/psspy_command_json/station_sws_shunt_term_chng_2.json +74 -0
  2051. powermcp-0.1.0/PSSE/psspy_command_json/station_three_wnd_term_chng.json +102 -0
  2052. powermcp-0.1.0/PSSE/psspy_command_json/station_three_wnd_term_move.json +86 -0
  2053. powermcp-0.1.0/PSSE/psspy_command_json/station_tree.json +62 -0
  2054. powermcp-0.1.0/PSSE/psspy_command_json/station_vscdc_bus_term_chng.json +70 -0
  2055. powermcp-0.1.0/PSSE/psspy_command_json/station_vscdc_conv_term_chng.json +70 -0
  2056. powermcp-0.1.0/PSSE/psspy_command_json/stbskv.json +30 -0
  2057. powermcp-0.1.0/PSSE/psspy_command_json/stop.json +42 -0
  2058. powermcp-0.1.0/PSSE/psspy_command_json/stop_2.json +25 -0
  2059. powermcp-0.1.0/PSSE/psspy_command_json/stoprecording.json +29 -0
  2060. powermcp-0.1.0/PSSE/psspy_command_json/strt.json +62 -0
  2061. powermcp-0.1.0/PSSE/psspy_command_json/strt_2.json +78 -0
  2062. powermcp-0.1.0/PSSE/psspy_command_json/stzone.json +30 -0
  2063. powermcp-0.1.0/PSSE/psspy_command_json/subs.json +54 -0
  2064. powermcp-0.1.0/PSSE/psspy_command_json/switchdiagfiledataset.json +10 -0
  2065. powermcp-0.1.0/PSSE/psspy_command_json/switched_shunt_adjustment.json +54 -0
  2066. powermcp-0.1.0/PSSE/psspy_command_json/switched_shunt_chng_3.json +160 -0
  2067. powermcp-0.1.0/PSSE/psspy_command_json/switched_shunt_chng_4.json +164 -0
  2068. powermcp-0.1.0/PSSE/psspy_command_json/switched_shunt_chng_5.json +204 -0
  2069. powermcp-0.1.0/PSSE/psspy_command_json/switched_shunt_data.json +152 -0
  2070. powermcp-0.1.0/PSSE/psspy_command_json/switched_shunt_data_3.json +160 -0
  2071. powermcp-0.1.0/PSSE/psspy_command_json/switched_shunt_data_4.json +164 -0
  2072. powermcp-0.1.0/PSSE/psspy_command_json/switched_shunt_data_5.json +212 -0
  2073. powermcp-0.1.0/PSSE/psspy_command_json/swsblk.json +42 -0
  2074. powermcp-0.1.0/PSSE/psspy_command_json/swsblk_2.json +94 -0
  2075. powermcp-0.1.0/PSSE/psspy_command_json/swsblz.json +42 -0
  2076. powermcp-0.1.0/PSSE/psspy_command_json/swsblz2.json +42 -0
  2077. powermcp-0.1.0/PSSE/psspy_command_json/swsdat.json +38 -0
  2078. powermcp-0.1.0/PSSE/psspy_command_json/swsdat_2.json +82 -0
  2079. powermcp-0.1.0/PSSE/psspy_command_json/swsdt1.json +62 -0
  2080. powermcp-0.1.0/PSSE/psspy_command_json/swsint.json +82 -0
  2081. powermcp-0.1.0/PSSE/psspy_command_json/swsint_2.json +102 -0
  2082. powermcp-0.1.0/PSSE/psspy_command_json/swslist.json +76 -0
  2083. powermcp-0.1.0/PSSE/psspy_command_json/swsmind.json +102 -0
  2084. powermcp-0.1.0/PSSE/psspy_command_json/swsmind_2.json +106 -0
  2085. powermcp-0.1.0/PSSE/psspy_command_json/swsmnam.json +50 -0
  2086. powermcp-0.1.0/PSSE/psspy_command_json/swsmnam_2.json +54 -0
  2087. powermcp-0.1.0/PSSE/psspy_command_json/swsmod_pack.json +25 -0
  2088. powermcp-0.1.0/PSSE/psspy_command_json/swsmod_remove.json +42 -0
  2089. powermcp-0.1.0/PSSE/psspy_command_json/swsmod_remove_2.json +46 -0
  2090. powermcp-0.1.0/PSSE/psspy_command_json/swsmod_status.json +62 -0
  2091. powermcp-0.1.0/PSSE/psspy_command_json/swsmod_status_2.json +66 -0
  2092. powermcp-0.1.0/PSSE/psspy_command_json/swsmod_unconnected.json +46 -0
  2093. powermcp-0.1.0/PSSE/psspy_command_json/swsmod_user.json +46 -0
  2094. powermcp-0.1.0/PSSE/psspy_command_json/sysmsm.json +15 -0
  2095. powermcp-0.1.0/PSSE/psspy_command_json/sysmva.json +15 -0
  2096. powermcp-0.1.0/PSSE/psspy_command_json/system_swd_chng.json +184 -0
  2097. powermcp-0.1.0/PSSE/psspy_command_json/system_swd_data.json +184 -0
  2098. powermcp-0.1.0/PSSE/psspy_command_json/systot.json +86 -0
  2099. powermcp-0.1.0/PSSE/psspy_command_json/t_alert_output.json +104 -0
  2100. powermcp-0.1.0/PSSE/psspy_command_json/t_progress_output.json +104 -0
  2101. powermcp-0.1.0/PSSE/psspy_command_json/t_prompt_output.json +104 -0
  2102. powermcp-0.1.0/PSSE/psspy_command_json/t_report_output.json +104 -0
  2103. powermcp-0.1.0/PSSE/psspy_command_json/tap_adjustment.json +54 -0
  2104. powermcp-0.1.0/PSSE/psspy_command_json/text.json +30 -0
  2105. powermcp-0.1.0/PSSE/psspy_command_json/tflg.json +72 -0
  2106. powermcp-0.1.0/PSSE/psspy_command_json/three_winding_data.json +186 -0
  2107. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_app_r_x_channel.json +106 -0
  2108. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_imped_chng_3.json +244 -0
  2109. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_imped_chng_4.json +242 -0
  2110. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_imped_data_3.json +272 -0
  2111. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_imped_data_4.json +270 -0
  2112. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_impedance_data.json +262 -0
  2113. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_mva_channel.json +98 -0
  2114. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_p_and_q_channel.json +106 -0
  2115. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_p_channel.json +98 -0
  2116. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_winding_data.json +182 -0
  2117. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_winding_data_3.json +186 -0
  2118. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_winding_data_4.json +228 -0
  2119. powermcp-0.1.0/PSSE/psspy_command_json/three_wnd_winding_data_5.json +232 -0
  2120. powermcp-0.1.0/PSSE/psspy_command_json/ties.json +54 -0
  2121. powermcp-0.1.0/PSSE/psspy_command_json/tiez.json +54 -0
  2122. powermcp-0.1.0/PSSE/psspy_command_json/time.json +42 -0
  2123. powermcp-0.1.0/PSSE/psspy_command_json/titldt.json +19 -0
  2124. powermcp-0.1.0/PSSE/psspy_command_json/tlst.json +90 -0
  2125. powermcp-0.1.0/PSSE/psspy_command_json/tltg.json +374 -0
  2126. powermcp-0.1.0/PSSE/psspy_command_json/totbus.json +15 -0
  2127. powermcp-0.1.0/PSSE/psspy_command_json/tpch.json +218 -0
  2128. powermcp-0.1.0/PSSE/psspy_command_json/tr3dat.json +94 -0
  2129. powermcp-0.1.0/PSSE/psspy_command_json/tr3dt2.json +114 -0
  2130. powermcp-0.1.0/PSSE/psspy_command_json/tr3int.json +166 -0
  2131. powermcp-0.1.0/PSSE/psspy_command_json/tr3nam.json +54 -0
  2132. powermcp-0.1.0/PSSE/psspy_command_json/transaction_add_mod.json +80 -0
  2133. powermcp-0.1.0/PSSE/psspy_command_json/transaction_delete.json +34 -0
  2134. powermcp-0.1.0/PSSE/psspy_command_json/transfer_chng.json +88 -0
  2135. powermcp-0.1.0/PSSE/psspy_command_json/transfer_data.json +100 -0
  2136. powermcp-0.1.0/PSSE/psspy_command_json/transformer_percent_units.json +50 -0
  2137. powermcp-0.1.0/PSSE/psspy_command_json/transmission_line_units.json +50 -0
  2138. powermcp-0.1.0/PSSE/psspy_command_json/tree.json +72 -0
  2139. powermcp-0.1.0/PSSE/psspy_command_json/treedat.json +20 -0
  2140. powermcp-0.1.0/PSSE/psspy_command_json/trig_volt_violation_check.json +42 -0
  2141. powermcp-0.1.0/PSSE/psspy_command_json/trndat.json +54 -0
  2142. powermcp-0.1.0/PSSE/psspy_command_json/trxdat.json +46 -0
  2143. powermcp-0.1.0/PSSE/psspy_command_json/tspf.json +314 -0
  2144. powermcp-0.1.0/PSSE/psspy_command_json/tspf_channel_chng.json +50 -0
  2145. powermcp-0.1.0/PSSE/psspy_command_json/tspf_channel_data.json +50 -0
  2146. powermcp-0.1.0/PSSE/psspy_command_json/tspf_output_pmatrix.json +62 -0
  2147. powermcp-0.1.0/PSSE/psspy_command_json/tspf_output_pmatrix_2.json +82 -0
  2148. powermcp-0.1.0/PSSE/psspy_command_json/tspf_profile_chng.json +140 -0
  2149. powermcp-0.1.0/PSSE/psspy_command_json/tspf_profile_data.json +140 -0
  2150. powermcp-0.1.0/PSSE/psspy_command_json/tspf_profilecurveset_chng.json +98 -0
  2151. powermcp-0.1.0/PSSE/psspy_command_json/tspf_profilecurveset_data.json +98 -0
  2152. powermcp-0.1.0/PSSE/psspy_command_json/tspf_profiledata_chng.json +50 -0
  2153. powermcp-0.1.0/PSSE/psspy_command_json/tspf_profiledata_data.json +50 -0
  2154. powermcp-0.1.0/PSSE/psspy_command_json/tspfprofilechr.json +50 -0
  2155. powermcp-0.1.0/PSSE/psspy_command_json/tspfprofilecurvechr.json +46 -0
  2156. powermcp-0.1.0/PSSE/psspy_command_json/tspfprofilecurveint.json +46 -0
  2157. powermcp-0.1.0/PSSE/psspy_command_json/tspfprofilecurvereal.json +46 -0
  2158. powermcp-0.1.0/PSSE/psspy_command_json/tspfprofilecurvevalue.json +54 -0
  2159. powermcp-0.1.0/PSSE/psspy_command_json/tspfprofileint.json +54 -0
  2160. powermcp-0.1.0/PSSE/psspy_command_json/tspfprofilereal.json +50 -0
  2161. powermcp-0.1.0/PSSE/psspy_command_json/ttdcauxmod_remove.json +46 -0
  2162. powermcp-0.1.0/PSSE/psspy_command_json/ttdcauxmod_status.json +66 -0
  2163. powermcp-0.1.0/PSSE/psspy_command_json/ttdclmod_remove.json +38 -0
  2164. powermcp-0.1.0/PSSE/psspy_command_json/ttdclmod_status.json +58 -0
  2165. powermcp-0.1.0/PSSE/psspy_command_json/two_term_dc_converter_data_3.json +184 -0
  2166. powermcp-0.1.0/PSSE/psspy_command_json/two_term_dc_convr_data.json +176 -0
  2167. powermcp-0.1.0/PSSE/psspy_command_json/two_terminal_dc_line_chng.json +118 -0
  2168. powermcp-0.1.0/PSSE/psspy_command_json/two_terminal_dc_line_data.json +118 -0
  2169. powermcp-0.1.0/PSSE/psspy_command_json/two_winding_chng_4.json +268 -0
  2170. powermcp-0.1.0/PSSE/psspy_command_json/two_winding_chng_5.json +324 -0
  2171. powermcp-0.1.0/PSSE/psspy_command_json/two_winding_chng_6.json +336 -0
  2172. powermcp-0.1.0/PSSE/psspy_command_json/two_winding_data.json +274 -0
  2173. powermcp-0.1.0/PSSE/psspy_command_json/two_winding_data_3.json +278 -0
  2174. powermcp-0.1.0/PSSE/psspy_command_json/two_winding_data_4.json +288 -0
  2175. powermcp-0.1.0/PSSE/psspy_command_json/two_winding_data_5.json +324 -0
  2176. powermcp-0.1.0/PSSE/psspy_command_json/two_winding_data_6.json +332 -0
  2177. powermcp-0.1.0/PSSE/psspy_command_json/tysl.json +58 -0
  2178. powermcp-0.1.0/PSSE/psspy_command_json/updatebuslocdiagfile.json +10 -0
  2179. powermcp-0.1.0/PSSE/psspy_command_json/use_dual_criteria.json +50 -0
  2180. powermcp-0.1.0/PSSE/psspy_command_json/use_emergency_flow_limits.json +50 -0
  2181. powermcp-0.1.0/PSSE/psspy_command_json/use_emergency_volt_limits.json +50 -0
  2182. powermcp-0.1.0/PSSE/psspy_command_json/user.json +25 -0
  2183. powermcp-0.1.0/PSSE/psspy_command_json/userin.json +25 -0
  2184. powermcp-0.1.0/PSSE/psspy_command_json/validate_ras.json +29 -0
  2185. powermcp-0.1.0/PSSE/psspy_command_json/vamm.json +29 -0
  2186. powermcp-0.1.0/PSSE/psspy_command_json/vamo.json +29 -0
  2187. powermcp-0.1.0/PSSE/psspy_command_json/var_channel.json +58 -0
  2188. powermcp-0.1.0/PSSE/psspy_command_json/vchk.json +62 -0
  2189. powermcp-0.1.0/PSSE/psspy_command_json/voltage_and_angle_channel.json +86 -0
  2190. powermcp-0.1.0/PSSE/psspy_command_json/voltage_channel.json +78 -0
  2191. powermcp-0.1.0/PSSE/psspy_command_json/voltage_droop_chng.json +104 -0
  2192. powermcp-0.1.0/PSSE/psspy_command_json/voltage_droop_data.json +100 -0
  2193. powermcp-0.1.0/PSSE/psspy_command_json/voltage_input.json +50 -0
  2194. powermcp-0.1.0/PSSE/psspy_command_json/voltage_output.json +50 -0
  2195. powermcp-0.1.0/PSSE/psspy_command_json/voltagedroopdata.json +54 -0
  2196. powermcp-0.1.0/PSSE/psspy_command_json/voltagedroopint.json +62 -0
  2197. powermcp-0.1.0/PSSE/psspy_command_json/vsc_dc_converter_data.json +144 -0
  2198. powermcp-0.1.0/PSSE/psspy_command_json/vsc_dc_converter_data_3.json +152 -0
  2199. powermcp-0.1.0/PSSE/psspy_command_json/vsc_dc_line_chng.json +100 -0
  2200. powermcp-0.1.0/PSSE/psspy_command_json/vsc_dc_line_data.json +100 -0
  2201. powermcp-0.1.0/PSSE/psspy_command_json/vscauxmind.json +102 -0
  2202. powermcp-0.1.0/PSSE/psspy_command_json/vscauxmnam.json +50 -0
  2203. powermcp-0.1.0/PSSE/psspy_command_json/vsccdt.json +118 -0
  2204. powermcp-0.1.0/PSSE/psspy_command_json/vsccin.json +70 -0
  2205. powermcp-0.1.0/PSSE/psspy_command_json/vscint.json +58 -0
  2206. powermcp-0.1.0/PSSE/psspy_command_json/vscmind.json +98 -0
  2207. powermcp-0.1.0/PSSE/psspy_command_json/vscmnam.json +46 -0
  2208. powermcp-0.1.0/PSSE/psspy_command_json/vsdcauxmod_remove.json +46 -0
  2209. powermcp-0.1.0/PSSE/psspy_command_json/vsdcauxmod_status.json +66 -0
  2210. powermcp-0.1.0/PSSE/psspy_command_json/vsdclmod_remove.json +38 -0
  2211. powermcp-0.1.0/PSSE/psspy_command_json/vsdclmod_status.json +58 -0
  2212. powermcp-0.1.0/PSSE/psspy_command_json/vsmo.json +29 -0
  2213. powermcp-0.1.0/PSSE/psspy_command_json/windmind.json +152 -0
  2214. powermcp-0.1.0/PSSE/psspy_command_json/windmnam.json +102 -0
  2215. powermcp-0.1.0/PSSE/psspy_command_json/wnddat.json +186 -0
  2216. powermcp-0.1.0/PSSE/psspy_command_json/wnddt2.json +94 -0
  2217. powermcp-0.1.0/PSSE/psspy_command_json/wndint.json +118 -0
  2218. powermcp-0.1.0/PSSE/psspy_command_json/wnlist.json +116 -0
  2219. powermcp-0.1.0/PSSE/psspy_command_json/wnmod_consistency.json +25 -0
  2220. powermcp-0.1.0/PSSE/psspy_command_json/wnmod_pack.json +25 -0
  2221. powermcp-0.1.0/PSSE/psspy_command_json/wnmod_remove.json +102 -0
  2222. powermcp-0.1.0/PSSE/psspy_command_json/wnmod_status.json +120 -0
  2223. powermcp-0.1.0/PSSE/psspy_command_json/wnmod_unconnected.json +46 -0
  2224. powermcp-0.1.0/PSSE/psspy_command_json/wnmod_user.json +46 -0
  2225. powermcp-0.1.0/PSSE/psspy_command_json/write_opf_options_file.json +25 -0
  2226. powermcp-0.1.0/PSSE/psspy_command_json/write_options_file.json +25 -0
  2227. powermcp-0.1.0/PSSE/psspy_command_json/write_ras.json +126 -0
  2228. powermcp-0.1.0/PSSE/psspy_command_json/writecapcurves.json +118 -0
  2229. powermcp-0.1.0/PSSE/psspy_command_json/writerawversion.json +82 -0
  2230. powermcp-0.1.0/PSSE/psspy_command_json/writerawx.json +62 -0
  2231. powermcp-0.1.0/PSSE/psspy_command_json/writerawxsubsys.json +162 -0
  2232. powermcp-0.1.0/PSSE/psspy_command_json/writeseqversion.json +62 -0
  2233. powermcp-0.1.0/PSSE/psspy_command_json/writeseqversion_2.json +80 -0
  2234. powermcp-0.1.0/PSSE/psspy_command_json/xeqv.json +106 -0
  2235. powermcp-0.1.0/PSSE/psspy_command_json/xfrdat.json +170 -0
  2236. powermcp-0.1.0/PSSE/psspy_command_json/xfrint.json +142 -0
  2237. powermcp-0.1.0/PSSE/psspy_command_json/xfrnam.json +50 -0
  2238. powermcp-0.1.0/PSSE/psspy_command_json/zndat.json +118 -0
  2239. powermcp-0.1.0/PSSE/psspy_command_json/znitoj.json +46 -0
  2240. powermcp-0.1.0/PSSE/psspy_command_json/zone.json +54 -0
  2241. powermcp-0.1.0/PSSE/psspy_command_json/zone_2.json +76 -0
  2242. powermcp-0.1.0/PSSE/psspy_command_json/zone_area.json +54 -0
  2243. powermcp-0.1.0/PSSE/psspy_command_json/zone_data.json +50 -0
  2244. powermcp-0.1.0/PSSE/psspy_command_json/zonm.json +100 -0
  2245. powermcp-0.1.0/PSSE/psspy_command_json/zonm_2.json +112 -0
  2246. powermcp-0.1.0/PSSE/psspy_command_json/zonnam.json +38 -0
  2247. powermcp-0.1.0/PSSE/psspy_command_json/zonnum.json +38 -0
  2248. powermcp-0.1.0/PSSE/psspy_command_json/zonuse.json +36 -0
  2249. powermcp-0.1.0/PSSE/psspy_command_json/zsys.json +42 -0
  2250. powermcp-0.1.0/PSSE/psspy_command_json/zsysdef.json +46 -0
  2251. powermcp-0.1.0/PSSE/psspy_command_json/zsysinit.json +30 -0
  2252. powermcp-0.1.0/PSSE/requirements.txt +1 -0
  2253. powermcp-0.1.0/PSSE/savnw.con +34 -0
  2254. powermcp-0.1.0/PSSE/savnw.dyr +42 -0
  2255. powermcp-0.1.0/PSSE/savnw.mon +28 -0
  2256. powermcp-0.1.0/PSSE/savnw.sav +0 -0
  2257. powermcp-0.1.0/PSSE/savnw.sub +10 -0
  2258. powermcp-0.1.0/PSSE/sphinx2json.py +433 -0
  2259. powermcp-0.1.0/PowerFactory/Agent_DIgSILENT.py +1293 -0
  2260. powermcp-0.1.0/PowerFactory/IEEE39.pfd +0 -0
  2261. powermcp-0.1.0/PowerFactory/INSTALL.txt +116 -0
  2262. powermcp-0.1.0/PowerFactory/MCP_PowerFactory.py +623 -0
  2263. powermcp-0.1.0/PowerFactory/README.md +204 -0
  2264. powermcp-0.1.0/PowerFactory/functions_overview.txt +58 -0
  2265. powermcp-0.1.0/PowerFactory/requirements.txt +18 -0
  2266. powermcp-0.1.0/PowerFactory/simulation_config.example.json +53 -0
  2267. powermcp-0.1.0/PowerWorld/IEEE 39 bus.pwb +0 -0
  2268. powermcp-0.1.0/PowerWorld/README.md +58 -0
  2269. powermcp-0.1.0/PowerWorld/powerworld_mcp.py +705 -0
  2270. powermcp-0.1.0/PowerWorld/requirements.txt +2 -0
  2271. powermcp-0.1.0/PyPSA/README.md +118 -0
  2272. powermcp-0.1.0/PyPSA/create_test_network.py +34 -0
  2273. powermcp-0.1.0/PyPSA/pypsa_mcp.py +568 -0
  2274. powermcp-0.1.0/PyPSA/requirements.txt +5 -0
  2275. powermcp-0.1.0/README.md +164 -0
  2276. powermcp-0.1.0/pandapower/README.md +48 -0
  2277. powermcp-0.1.0/pandapower/panda_mcp.py +259 -0
  2278. powermcp-0.1.0/pandapower/requirements.txt +2 -0
  2279. powermcp-0.1.0/pandapower/test_case.json +3329 -0
  2280. powermcp-0.1.0/powermcp/README.md +321 -0
  2281. powermcp-0.1.0/powermcp/__init__.py +12 -0
  2282. powermcp-0.1.0/powermcp/__main__.py +13 -0
  2283. powermcp-0.1.0/powermcp/cli.py +162 -0
  2284. powermcp-0.1.0/powermcp/clients/__init__.py +29 -0
  2285. powermcp-0.1.0/powermcp/clients/_common.py +86 -0
  2286. powermcp-0.1.0/powermcp/clients/claude_code.py +26 -0
  2287. powermcp-0.1.0/powermcp/clients/claude_desktop.py +26 -0
  2288. powermcp-0.1.0/powermcp/clients/codex.py +71 -0
  2289. powermcp-0.1.0/powermcp/config.py +115 -0
  2290. powermcp-0.1.0/powermcp/detect.py +62 -0
  2291. powermcp-0.1.0/powermcp/doctor.py +88 -0
  2292. powermcp-0.1.0/powermcp/paths.py +45 -0
  2293. powermcp-0.1.0/powermcp/registry.py +224 -0
  2294. powermcp-0.1.0/powermcp/runner.py +92 -0
  2295. powermcp-0.1.0/powermcp/wizard.py +344 -0
  2296. powermcp-0.1.0/pyproject.toml +113 -0
  2297. powermcp-0.1.0/surge/DISPATCH_REQUEST_SCHEMA.json +3130 -0
  2298. powermcp-0.1.0/surge/README.md +169 -0
  2299. powermcp-0.1.0/surge/requirements.txt +2 -0
  2300. powermcp-0.1.0/surge/surge_mcp.py +1601 -0
  2301. powermcp-0.1.0/surge/test_integration.py +883 -0
@@ -0,0 +1,108 @@
1
+ # Environments
2
+ .venv/
3
+ env/
4
+ venv/
5
+ ENV/
6
+ env.bak/
7
+ venv.bak/
8
+
9
+ # Python
10
+ **/__pycache__/**
11
+ *.py[cod]
12
+ *$py.class
13
+ *.so
14
+ .Python
15
+ build/
16
+ develop-eggs/
17
+ dist/
18
+ downloads/
19
+ eggs/
20
+ .eggs/
21
+ lib/
22
+ lib64/
23
+ parts/
24
+ sdist/
25
+ var/
26
+ wheels/
27
+ share/python-wheels/
28
+ *.egg-info/
29
+ .installed.cfg
30
+ *.egg
31
+ MANIFEST
32
+
33
+ # AI Tools
34
+ .claude/
35
+ .gemini/
36
+ .cursor/
37
+
38
+ # Personal Configuration
39
+ myconfig.json
40
+
41
+ # IDEs and Editors
42
+ .vscode/
43
+ .idea/
44
+ *.swp
45
+ *.swo
46
+ *~
47
+ .DS_Store
48
+
49
+ # Power System Tools Output & Temporary Files
50
+
51
+ # PSLF / ProvisoHD
52
+ soln.log
53
+ output.crf
54
+ output.sum
55
+ temp.wrk
56
+ cont.otg
57
+ contproc-run-status.csv
58
+ control.cntl
59
+ datacheck.txt
60
+ runs.cases
61
+ duplicate.txt
62
+ sstools.sav
63
+ term.log
64
+ case.pcrf
65
+ output.pcrf
66
+ Output.xlsx
67
+ run.bat
68
+ template.ctab
69
+ contproc-run-status_contingency_errors.csv
70
+ font-color
71
+ gediwork.drw
72
+ gediworkScan.drw
73
+ winter.sav
74
+ summer.drw
75
+ summer.sav
76
+ hs_err*
77
+ basecase.sav
78
+ temp.sav
79
+
80
+ # PyLTSpice
81
+ simulation_output/
82
+ *.raw
83
+ *.net
84
+ *.log
85
+ *.plt
86
+
87
+ # ANDES
88
+ .andes_runs/
89
+ mcp_server.log
90
+ pf_*/
91
+ td_*/
92
+ eig_*/
93
+
94
+ # PyPSA
95
+ *.nc
96
+
97
+ # PowerWorld
98
+ *.pwd
99
+ # Note: .pwb files might be case files you want to keep (like IEEE 39 bus.pwb),
100
+ # so we don't ignore them globally.
101
+
102
+ # Testing
103
+ .pytest_cache/
104
+ .coverage
105
+ htmlcov/
106
+
107
+ # PSCAD generated docs (can be re-synced)
108
+ PSCAD/docs/
@@ -0,0 +1,49 @@
1
+ # ANDES MCP Server
2
+
3
+ MCP server for ANDES (Python-based power system dynamic analysis), enabling power flow and time-domain simulation.
4
+
5
+ > **Note:** This MCP server is under active development and may need further modification to handle some internal code output and ensure full compatibility with all ANDES features.
6
+
7
+ ## Requirements
8
+
9
+ - Python 3.10 or higher
10
+ - [ANDES](https://andes.readthedocs.io/)
11
+
12
+ Install dependencies:
13
+ ```bash
14
+ pip install -r requirements.txt
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ Run the MCP server:
20
+ ```bash
21
+ python andes_mcp.py
22
+ ```
23
+
24
+ Configure in your MCP client (e.g., Cursor, Claude Desktop):
25
+ ```json
26
+ {
27
+ "mcpServers": {
28
+ "andes": {
29
+ "command": "python",
30
+ "args": ["ANDES/andes_mcp.py"]
31
+ }
32
+ }
33
+ }
34
+ ```
35
+
36
+ ## Available Tools
37
+
38
+ - **run_power_flow(file_path: str)**: Run power flow analysis on a power system case file.
39
+ - **run_time_domain_simulation(step_size: float = 0.01, t_end: float = 10.0)**: Run time domain simulation on the currently loaded power system.
40
+ - **run_eigenvalue_analysis(file_path: str)**: Run eigenvalue analysis on a power system case.
41
+ - **get_system_info()**: Get information about the currently loaded power system.
42
+
43
+ ## Prompt Example
44
+
45
+ Could you run power flow on the Kundur case at `yourpath\PowerMCP\ANDES\kundur_full.json` using ANDES and summarize the results? Then call `get_system_info` to show the system details.
46
+
47
+ ## Resources
48
+
49
+ - [ANDES Documentation](https://andes.readthedocs.io/)
@@ -0,0 +1,339 @@
1
+ import andes
2
+ import logging
3
+ import os
4
+ import io
5
+ import sys
6
+ import shutil
7
+ import json
8
+ from pathlib import Path
9
+ from contextlib import redirect_stdout, redirect_stderr
10
+ from mcp.server.fastmcp import FastMCP
11
+ from typing import Dict, Any
12
+
13
+ # Storage directory resolved lazily (no filesystem writes at import time)
14
+ def _andes_runs_dir():
15
+ try:
16
+ from powermcp.paths import runs_dir
17
+ return str(runs_dir("andes"))
18
+ except Exception:
19
+ import os
20
+ d = os.path.join(os.path.expanduser("~"), ".powermcp", "runs", "andes")
21
+ os.makedirs(d, exist_ok=True)
22
+ return d
23
+
24
+ # Configure logging (stream only at import; file handler attached lazily)
25
+ logging.basicConfig(
26
+ level=logging.INFO,
27
+ format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
28
+ handlers=[
29
+ logging.StreamHandler()
30
+ ]
31
+ )
32
+
33
+ # Configure ANDES logging
34
+ andes.config_logger(stream_level=50) # 50 is CRITICAL level
35
+ logging.getLogger('andes').setLevel(logging.WARNING)
36
+ logging.getLogger('numpy').setLevel(logging.WARNING)
37
+ logging.getLogger('scipy').setLevel(logging.WARNING)
38
+ logger = logging.getLogger(__name__)
39
+
40
+ # Attach a file handler lazily on first tool use (no log file opened at import)
41
+ _file_handler_added = False
42
+
43
+ def _ensure_file_logging():
44
+ global _file_handler_added
45
+ if _file_handler_added:
46
+ return
47
+ try:
48
+ fh = logging.FileHandler(os.path.join(_andes_runs_dir(), 'mcp_server.log'))
49
+ fh.setFormatter(logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s'))
50
+ logging.getLogger().addHandler(fh)
51
+ except Exception:
52
+ pass
53
+ _file_handler_added = True
54
+
55
+ # Initialize MCP server
56
+ mcp = FastMCP("ANDES MCP Server")
57
+
58
+ # Initialize system state
59
+ system_state: Dict[str, Any] = {}
60
+
61
+ @mcp.tool()
62
+ def run_power_flow(file_path: str) -> Dict[str, Any]:
63
+ """Run power flow analysis on a power system case
64
+
65
+ Args:
66
+ file_path: Path to the case file
67
+
68
+ Returns:
69
+ Dict containing power flow results and output information
70
+ """
71
+ try:
72
+ _ensure_file_logging()
73
+ # Convert to absolute path if not already
74
+ abs_file_path = os.path.abspath(file_path)
75
+ if not os.path.exists(abs_file_path):
76
+ return {
77
+ "status": "error",
78
+ "message": f"Input file not found: {abs_file_path}"
79
+ }
80
+
81
+ # Create a unique directory for this run
82
+ run_dir = os.path.join(_andes_runs_dir(), f"pf_{Path(abs_file_path).stem}")
83
+ os.makedirs(run_dir, exist_ok=True)
84
+
85
+ # Copy input file to run directory
86
+ input_file = os.path.join(run_dir, os.path.basename(abs_file_path))
87
+ shutil.copy2(abs_file_path, input_file)
88
+
89
+ # Save current directory and change to run directory
90
+ original_dir = os.getcwd()
91
+ os.chdir(run_dir)
92
+
93
+ try:
94
+ # Capture stdout/stderr
95
+ f_out = io.StringIO()
96
+ f_err = io.StringIO()
97
+
98
+ with redirect_stdout(f_out), redirect_stderr(f_err):
99
+ # Run power flow with minimal output
100
+ ss = andes.run(input_file, no_output=True, verbose=50)
101
+
102
+ # Store system state for other tools
103
+ system_state['current_system'] = ss
104
+
105
+ # Extract key power flow results
106
+ pflow_results = {
107
+ "converged": ss.PFlow.converged,
108
+ "iterations": ss.PFlow.niter if hasattr(ss.PFlow, 'niter') else 0,
109
+ "max_mis": float(ss.PFlow.mis[-1]) if hasattr(ss.PFlow, 'mis') and len(ss.PFlow.mis) > 0 else 0.0,
110
+ "time": float(ss.PFlow.t) if hasattr(ss.PFlow, 't') else 0.0
111
+ }
112
+
113
+ # Get list of output files
114
+ output_files = [f for f in os.listdir(run_dir) if os.path.isfile(os.path.join(run_dir, f))]
115
+
116
+ result = {
117
+ "status": "success",
118
+ "message": "Power flow completed successfully" if ss.PFlow.converged else "Power flow did not converge",
119
+ "power_flow": pflow_results,
120
+ "output_dir": run_dir,
121
+ "output_files": output_files,
122
+ "stdout": f_out.getvalue(),
123
+ "stderr": f_err.getvalue()
124
+ }
125
+
126
+ return result
127
+
128
+ finally:
129
+ # Always change back to original directory
130
+ os.chdir(original_dir)
131
+
132
+ except Exception as e:
133
+ logger.error(f"Error in power flow analysis: {str(e)}")
134
+ return {
135
+ "status": "error",
136
+ "message": str(e)
137
+ }
138
+
139
+ @mcp.tool()
140
+ def run_time_domain_simulation(step_size: float = 0.01, t_end: float = 10.0) -> Dict[str, Any]:
141
+ """Run time domain simulation on the currently loaded power system
142
+
143
+ Args:
144
+ step_size: Time step size in seconds
145
+ t_end: End time in seconds
146
+
147
+ Returns:
148
+ Dict containing simulation results and output information
149
+ """
150
+ try:
151
+ _ensure_file_logging()
152
+ if 'current_system' not in system_state:
153
+ return {
154
+ "status": "error",
155
+ "message": "No power system currently loaded. Run power flow first."
156
+ }
157
+
158
+ ss = system_state['current_system']
159
+
160
+ # Create a unique directory for this run
161
+ run_dir = os.path.join(_andes_runs_dir(), f"tds_{int(t_end)}s")
162
+ os.makedirs(run_dir, exist_ok=True)
163
+
164
+ # Save current directory and change to run directory
165
+ original_dir = os.getcwd()
166
+ os.chdir(run_dir)
167
+
168
+ try:
169
+ # Capture stdout/stderr
170
+ f_out = io.StringIO()
171
+ f_err = io.StringIO()
172
+
173
+ with redirect_stdout(f_out), redirect_stderr(f_err):
174
+ # Configure time domain simulation parameters
175
+ ss.TDS.config.tf = t_end
176
+ ss.TDS.config.tstep = step_size
177
+
178
+ # Run time domain simulation
179
+ ss.TDS.init()
180
+ success = ss.TDS.run()
181
+
182
+ # Extract key simulation results
183
+ tds_results = {
184
+ "t_array": ss.dae.t.tolist() if hasattr(ss.dae, 't') else [],
185
+ "step_size": float(ss.TDS.config.tstep),
186
+ "t_end": float(ss.TDS.config.tf),
187
+ "success": success,
188
+ "status": "completed" if success else "failed"
189
+ }
190
+
191
+ # Get list of output files
192
+ output_files = [f for f in os.listdir(run_dir) if os.path.isfile(os.path.join(run_dir, f))]
193
+
194
+ result = {
195
+ "status": "success",
196
+ "message": "Time domain simulation completed successfully" if success else "Time domain simulation failed",
197
+ "simulation": tds_results,
198
+ "output_dir": run_dir,
199
+ "output_files": output_files,
200
+ "stdout": f_out.getvalue(),
201
+ "stderr": f_err.getvalue()
202
+ }
203
+
204
+ return result
205
+
206
+ finally:
207
+ # Always change back to original directory
208
+ os.chdir(original_dir)
209
+
210
+ except Exception as e:
211
+ logger.error(f"Error in time domain simulation: {str(e)}")
212
+ return {
213
+ "status": "error",
214
+ "message": str(e)
215
+ }
216
+
217
+ @mcp.tool()
218
+ def run_eigenvalue_analysis(file_path: str) -> Dict[str, Any]:
219
+ """Run eigenvalue analysis on a power system case
220
+
221
+ Args:
222
+ file_path: Path to the case file
223
+
224
+ Returns:
225
+ Dict containing the eigenvalue analysis results
226
+ """
227
+ try:
228
+ _ensure_file_logging()
229
+ # Convert to absolute path if relative
230
+ abs_file_path = os.path.abspath(file_path)
231
+
232
+ if not os.path.exists(abs_file_path):
233
+ return {
234
+ "status": "error",
235
+ "message": f"File not found: {file_path}"
236
+ }
237
+
238
+ # Create a unique directory for this run
239
+ run_dir = os.path.join(_andes_runs_dir(), f"eig_{Path(abs_file_path).stem}")
240
+ os.makedirs(run_dir, exist_ok=True)
241
+
242
+ # Save current directory and change to run directory
243
+ original_dir = os.getcwd()
244
+ os.chdir(run_dir)
245
+
246
+ try:
247
+ # Capture stdout/stderr
248
+ f_out = io.StringIO()
249
+ f_err = io.StringIO()
250
+
251
+ with redirect_stdout(f_out), redirect_stderr(f_err):
252
+ # Load the system
253
+ ss = andes.run(abs_file_path, no_output=True)
254
+ system_state['current_system'] = ss
255
+
256
+ # Run eigenvalue analysis
257
+ success = ss.EIG.run()
258
+
259
+ # Extract eigenvalue results
260
+ eig_results = {
261
+ "n_eigenvalues": len(ss.EIG.mu) if hasattr(ss.EIG, 'mu') else 0,
262
+ "eigenvalues": ss.EIG.mu.tolist() if hasattr(ss.EIG, 'mu') else [],
263
+ "eigenvectors": ss.EIG.vectors.tolist() if hasattr(ss.EIG, 'vectors') else [],
264
+ "participation_factors": ss.EIG.pfactors.tolist() if hasattr(ss.EIG, 'pfactors') else [],
265
+ "state_variables": ss.EIG.state_desc if hasattr(ss.EIG, 'state_desc') else [],
266
+ "success": success
267
+ }
268
+
269
+ # Get list of output files
270
+ output_files = [f for f in os.listdir(run_dir) if os.path.isfile(os.path.join(run_dir, f))]
271
+
272
+ result = {
273
+ "status": "success",
274
+ "message": "Eigenvalue analysis completed successfully" if success else "Eigenvalue analysis failed",
275
+ "analysis": eig_results,
276
+ "output_dir": run_dir,
277
+ "output_files": output_files,
278
+ "stdout": f_out.getvalue(),
279
+ "stderr": f_err.getvalue()
280
+ }
281
+
282
+ return result
283
+
284
+ finally:
285
+ # Always change back to original directory
286
+ os.chdir(original_dir)
287
+
288
+ except Exception as e:
289
+ logger.error(f"Error in eigenvalue analysis: {str(e)}")
290
+ return {
291
+ "status": "error",
292
+ "message": str(e)
293
+ }
294
+
295
+ @mcp.tool()
296
+ def get_system_info() -> Dict[str, Any]:
297
+ """
298
+ Get information about the currently loaded power system
299
+
300
+ Returns:
301
+ Dict containing system information
302
+ """
303
+ if 'current_system' not in system_state:
304
+ return {
305
+ "status": "error",
306
+ "message": "No power system currently loaded"
307
+ }
308
+
309
+ try:
310
+ # Capture stdout/stderr
311
+ f_out = io.StringIO()
312
+ f_err = io.StringIO()
313
+
314
+ with redirect_stdout(f_out), redirect_stderr(f_err):
315
+ ss = system_state['current_system']
316
+ info = {
317
+ "status": "success",
318
+ "num_buses": len(ss.Bus.idx.v) if hasattr(ss.Bus, 'idx') else 0,
319
+ "num_generators": (len(ss.PV.idx.v) if hasattr(ss.PV, 'idx') else 0) +
320
+ (len(ss.GENROU.idx.v) if hasattr(ss.GENROU, 'idx') else 0),
321
+ "system_name": ss.name if hasattr(ss, 'name') else "Unknown",
322
+ "base_mva": float(ss.config.mva) if hasattr(ss.config, 'mva') else 100.0,
323
+ "stdout": f_out.getvalue(),
324
+ "stderr": f_err.getvalue()
325
+ }
326
+
327
+ return info
328
+ except Exception as e:
329
+ logger.error(f"Error getting system info: {str(e)}")
330
+ return {
331
+ "status": "error",
332
+ "message": str(e)
333
+ }
334
+
335
+
336
+ if __name__ == "__main__":
337
+ print(f"Starting ANDES MCP Server")
338
+ print(f"Using storage directory: {_andes_runs_dir()}")
339
+ mcp.run(transport="stdio")