Metadata-Version: 2.1
Name: LIGGGHTSER
Version: 0.0.6
Summary: LIGGGHTSER is a program that is able to automatically read data file printed or dumped by LIGGGHTS software
Home-page: https://github.com/DiWang1010/LIGGGHTSER
Author: Di
Author-email: wangdi931010@gmail.com
License: MIT
Description: 
        LIGGGHTSER is a program that is able to automatically read data file printed or dumped by LIGGGHTS software.
        
        Other funcitons are under developing.
        
        Project start on 16th Oct 2019
        Auther: D
        E-mail: wangdi931010@gmail.com
        Github: https://github.com/DiWang1010
        
        To read files:
        
        import LIGGGHTSER
        reader=LIGGGHTSER.read.Read()
        
        #To get all files in directory
        filedict=reader.read_file('./')
        
        #To get dumpfile data
        dumpdata=reader.read_dump('./dump10000.ouput')
        print(dumpdata['id'])
        print(dumpdata['type'])
        pritn(dumpdata['x'])
        
        #To read ave file
        avedata=reader.read_ave('./ave_force.txt')
        print(avedata['TimeStep'])
        
        #To read thermo in log file
        logdata=reader.read_log_thermo('./log.liggghts')
        print(logdata['data1'])
        print(logdata['data2'])
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
