AutoEis


NameAutoEis JSON
Version 0.0.15 PyPI version JSON
download
home_page
SummaryA demo package to assist EIS analysis by automatically proposing statistically plausible ECM
upload_time2023-07-14 21:29:49
maintainer
docs_urlNone
authorRunze zhang, Robert Black, Jason Hattrick-Simpers*
requires_python
license
keywords electrochemical impedance spectroscopy equivalent circuit models bayesian inference evolutionary algorithm
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# AutoEis.py
------------
AutoEis is a Python package to automatically propose statistical plausible equivalent circuit models (ECMs) for electrochemical impedance spectroscopy (EIS) analysis. The package is designed for researchers and practitioners in the fields of electrochemical analysis, including but not limited to explorations of electrocatalysis, battery design, and investigations of material degradations.

Please be aware that the current version is only the beta test and has not been formally realized. If you find any bug and any suggestions, please [file an issue](https://github.com/AUTODIAL/Auto_Eis/issues) or directly [pull requests](https://github.com/AUTODIAL/Auto_Eis/pulls). We would really appreciate any contributions from our commmunity. 

## Installation
---------------
The easiest way to install this package is using pip install from [pypi](https://pypi.org/project/AutoEis/)
```bash
pip install AutoEis
```

## Dependencies
---------------
The circuits generation is realized based on the julia package [equivalentcircuit.jl](https://github.com/MaximeVH/EquivalentCircuits.jl) designed by MaximeVH. It requires a installation of [julia programming language](https://julialang.org/)

AutoEis requires:
-   **Python programming language (>=3.7, <3.11)**
- - NumPy (>=1.20)
- - Matplotlib (>=3.3)
- - Pandas (>=1.1)
- - impedance (>=1.4)
- - regex (>=2.2)
- - arviz (>=2.2.1)
- - numpyro (=0.10.1)
- - dill (>=0.3.4)
- - PyJulia (>=0.5.7)
- - IPython (>=7.19.0)
- - jax (>=0.3.9)

*Note: If you operating system is Windows, after install jax, it is required to install jaxlib as well. However, the installation of jaxlib on Windows is not pypi-supported. You may need to visit [this repository](https://github.com/cloudhan/jax-windows-builder) to find the version corresponding to your python version, and then install it using wheel.

-   **Julia programming language (>=1.7.0)**
- - equivalentcircuit (>=0.1.3)
- - CSV
- - DataFrame
- - Pandas
- - PyCall
- - DelimitedFiles
- - StringEncodings

## Workflow
------------
The schematic workflow of AutoEis is shown below:
![Workflow](https://github.com/AUTODIAL/Auto_Eis/blob/main/AutoEis_workflow.png)
It contains: data pre-processing, ECM generation, circuit post-filtering, Bayesian inference and model evaluation process. Through this workflow, AutoEis can prioritize the statistical optimal ECM and also retains suboptimal models with lower priority for subsequent expert inspection.

## Usage
-------------
To enable the interaction between python and julia, please set the julia executable pathway at first. The common pathway of the Julia executable path depends on the operating system you are using. Here are the common default locations for each supported OS:

- Windows: *C:\Users\<username>\AppData\Local\Julia-<version>\bin*
- macOS: */Applications/Julia-<version>.app/Contents/Resources/julia/bin*
- Linux: */usr/local/julia-<version>/bin*

Please note that <version> refers to the specific version of Julia you have installed, and <username> is the name of the current user on Windows. To confirm the location of your Julia executable path, you can open a command prompt or terminal and enter the command which julia (for Unix-based systems) or where julia (for Windows). This will display the full path of the Julia executable file.

```bash
# import AutoEIS and its dependencies
import AutoEis as ae

# define the path of julia program
j = ae.set_julia (r"D:\Julia-1.7.2\bin\julia.exe")
```
Then by calling the function `initialize_julia()`, AutoEis will automatically install julia's dependencies. *(This step is only required at your first time using AutoEis)*
```bash
# initialize the julia environment and download the dependencies
ae.initialize_julia()
```
Now you are good to load your data and perform all analysis with one function
```bash
# set the parameter of plots
ae.set_parameter()

# Load the data
data_path = "Test_data.txt"
df = ae.load_data(data_path)
frequencies = ...
reals = ...
imags = ...
measurements = reals + 1j*imags

# Perform automated ECM generation and evaluation
ae.EIS_auto(impedance=measurements,freq=frequencies,data_path=data_path,iter_number=100,plot_ECM=False)
```
- `impedance` : the measured electrochemical impedance
- `freq`: the measured frequencies
- `data_path`: the pathway of loaded data (this path will be used for the results storage)
- `iter_number`: the numbers of ECM generation to be performed (default = 100)
- `plot_ECM`: to plot ECM or not (*Note: To enable this parameter, a [LaTex compiler](https://www.latex-project.org/get/) is required.*) 
  
An example that demonstrate how to use AutoEis is attached [here](https://github.com/AUTODIAL/Auto_Eis/blob/main/Example_AutoEIS.ipynb). 

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "AutoEis",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Electrochemical impedance spectroscopy,equivalent circuit models,Bayesian inference,evolutionary algorithm",
    "author": "Runze zhang, Robert Black, Jason Hattrick-Simpers*",
    "author_email": "runzee.zhang@mail.utoronto.ca",
    "download_url": "",
    "platform": null,
    "description": "\n# AutoEis.py\n------------\nAutoEis is a Python package to automatically propose statistical plausible equivalent circuit models (ECMs) for electrochemical impedance spectroscopy (EIS) analysis. The package is designed for researchers and practitioners in the fields of electrochemical analysis, including but not limited to explorations of electrocatalysis, battery design, and investigations of material degradations.\n\nPlease be aware that the current version is only the beta test and has not been formally realized. If you find any bug and any suggestions, please [file an issue](https://github.com/AUTODIAL/Auto_Eis/issues) or directly [pull requests](https://github.com/AUTODIAL/Auto_Eis/pulls). We would really appreciate any contributions from our commmunity. \n\n## Installation\n---------------\nThe easiest way to install this package is using pip install from [pypi](https://pypi.org/project/AutoEis/)\n```bash\npip install AutoEis\n```\n\n## Dependencies\n---------------\nThe circuits generation is realized based on the julia package [equivalentcircuit.jl](https://github.com/MaximeVH/EquivalentCircuits.jl) designed by MaximeVH. It requires a installation of [julia programming language](https://julialang.org/)\n\nAutoEis requires:\n-   **Python programming language (>=3.7, <3.11)**\n- - NumPy (>=1.20)\n- - Matplotlib (>=3.3)\n- - Pandas (>=1.1)\n- - impedance (>=1.4)\n- - regex (>=2.2)\n- - arviz (>=2.2.1)\n- - numpyro (=0.10.1)\n- - dill (>=0.3.4)\n- - PyJulia (>=0.5.7)\n- - IPython (>=7.19.0)\n- - jax (>=0.3.9)\n\n*Note: If you operating system is Windows, after install jax, it is required to install jaxlib as well. However, the installation of jaxlib on Windows is not pypi-supported. You may need to visit [this repository](https://github.com/cloudhan/jax-windows-builder) to find the version corresponding to your python version, and then install it using wheel.\n\n-   **Julia programming language (>=1.7.0)**\n- - equivalentcircuit (>=0.1.3)\n- - CSV\n- - DataFrame\n- - Pandas\n- - PyCall\n- - DelimitedFiles\n- - StringEncodings\n\n## Workflow\n------------\nThe schematic workflow of AutoEis is shown below:\n![Workflow](https://github.com/AUTODIAL/Auto_Eis/blob/main/AutoEis_workflow.png)\nIt contains: data pre-processing, ECM generation, circuit post-filtering, Bayesian inference and model evaluation process. Through this workflow, AutoEis can prioritize the statistical optimal ECM and also retains suboptimal models with lower priority for subsequent expert inspection.\n\n## Usage\n-------------\nTo enable the interaction between python and julia, please set the julia executable pathway at first. The common pathway of the Julia executable path depends on the operating system you are using. Here are the common default locations for each supported OS:\n\n- Windows: *C:\\Users\\<username>\\AppData\\Local\\Julia-<version>\\bin*\n- macOS: */Applications/Julia-<version>.app/Contents/Resources/julia/bin*\n- Linux: */usr/local/julia-<version>/bin*\n\nPlease note that <version> refers to the specific version of Julia you have installed, and <username> is the name of the current user on Windows. To confirm the location of your Julia executable path, you can open a command prompt or terminal and enter the command which julia (for Unix-based systems) or where julia (for Windows). This will display the full path of the Julia executable file.\n\n```bash\n# import AutoEIS and its dependencies\nimport AutoEis as ae\n\n# define the path of julia program\nj = ae.set_julia (r\"D:\\Julia-1.7.2\\bin\\julia.exe\")\n```\nThen by calling the function `initialize_julia()`, AutoEis will automatically install julia's dependencies. *(This step is only required at your first time using AutoEis)*\n```bash\n# initialize the julia environment and download the dependencies\nae.initialize_julia()\n```\nNow you are good to load your data and perform all analysis with one function\n```bash\n# set the parameter of plots\nae.set_parameter()\n\n# Load the data\ndata_path = \"Test_data.txt\"\ndf = ae.load_data(data_path)\nfrequencies = ...\nreals = ...\nimags = ...\nmeasurements = reals + 1j*imags\n\n# Perform automated ECM generation and evaluation\nae.EIS_auto(impedance=measurements,freq=frequencies,data_path=data_path,iter_number=100,plot_ECM=False)\n```\n- `impedance` : the measured electrochemical impedance\n- `freq`: the measured frequencies\n- `data_path`: the pathway of loaded data (this path will be used for the results storage)\n- `iter_number`: the numbers of ECM generation to be performed (default = 100)\n- `plot_ECM`: to plot ECM or not (*Note: To enable this parameter, a [LaTex compiler](https://www.latex-project.org/get/) is required.*) \n  \nAn example that demonstrate how to use AutoEis is attached [here](https://github.com/AUTODIAL/Auto_Eis/blob/main/Example_AutoEIS.ipynb). \n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A demo package to assist EIS analysis by automatically proposing statistically plausible ECM",
    "version": "0.0.15",
    "project_urls": null,
    "split_keywords": [
        "electrochemical impedance spectroscopy",
        "equivalent circuit models",
        "bayesian inference",
        "evolutionary algorithm"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0fad45b7ffb22e7d94a9d5bde502f6915fe47aae381741a9f5e3484f8ca1dac",
                "md5": "4bc63a9b34678330edfe0dabb271982a",
                "sha256": "2a4f7634477468417480cf8ad89656ff2834269be0e6b67aa5b96158990c661d"
            },
            "downloads": -1,
            "filename": "AutoEis-0.0.15-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4bc63a9b34678330edfe0dabb271982a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 21146,
            "upload_time": "2023-07-14T21:29:49",
            "upload_time_iso_8601": "2023-07-14T21:29:49.029695Z",
            "url": "https://files.pythonhosted.org/packages/c0/fa/d45b7ffb22e7d94a9d5bde502f6915fe47aae381741a9f5e3484f8ca1dac/AutoEis-0.0.15-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-14 21:29:49",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "autoeis"
}
        
Elapsed time: 0.08800s