Metadata-Version: 2.1
Name: matpowercaseframes
Version: 0.0.1a2
Summary: Parse MATPOWER case into pandas DataFrame
Home-page: https://github.com/UGM-EPSLab/MATPOWER-Case-Frames
Author: Muhammad Yasirroni
Author-email: muhammadyasirroni@gmail.com
License: MIT license
Description: # MATPOWER Case Frames
        
        Parse MATPOWER case into pandas DataFrame
        
        ## Usage
        
        ```python
        import os
        
        from matpowercaseframes.core import CaseFrames
        from matpower import path_matpower # require `pip install matpower`
        
        case_name = 'case9.m'
        case_path = os.path.join(path_matpower, 'data', case_name)
        
        cf = CaseFrames(case_path)
        
        print(cf.gencost)
        ```
        
        ## Related works
        
        1. Parse MATPOWER case using [matpower-pip](https://github.com/yasirroni/matpower-pip#extra-require-oct2py-or-matlabengine)
        
        ## Acknowledgement
        
        This repository was supported by the [Faculty of Engineering, Universitas Gadjah Mada](https://ft.ugm.ac.id/en/) under the supervision of [Mr. Sarjiya](https://www.researchgate.net/profile/Sarjiya_Sarjiya). If you use this package for your research, we are very glad if you cite any relevant publication under Mr. Sarjiya's name as a thanks (but you are not responsible to). You can found his publications on the [semantic scholar](https://www.semanticscholar.org/author/Sarjiya/2267414) or [IEEE](https://ieeexplore.ieee.org/author/37548066400).
        
Keywords: psst
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >3.6
Description-Content-Type: text/markdown
Provides-Extra: matpower
