Metadata-Version: 2.1
Name: hipims-io
Version: 0.2.4
Summary: To process input and output files of the HiPIMS model
Home-page: https://github.com/mingxiaodong/hipims_io_py_package
Author: Xiaodong Ming
Author-email: xiaodong.ming@outlook.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

Hipims_io
--------

To setup an input object for HiPIMS, you will need at least a DEM file, and simply do::

    >>> from hipims_io import InputHipims
    >>> obj_input = InputHipims(dem_data='Example_DEM.asc') # create an input object
    >>> print(obj_input)
    >>> obj_input.write_input_files() # write all input files for HiPIMS


