Example 1: class EIS_data - Basics
Download dataset
Start by downloading a test file from github:
and save it an appropriate folder.
Import the class:
from ec4py import CV_Data
Load a file:
data = CV_Data("CV_144700_3.tdms")
Plot file
data.plot()

Visualize that a CV consists of two LSV
line, p = data.plot(dir="pos")
data.plot(dir="neg", plot = p)

Get the current at a specific potential
i_p, i_n = data.get_i_at_E(-0.4)
print(i_p,i_n)