Example 1: class EIS_data - Basics

Download dataset

Start by downloading a test file from github:

CV_144700_ 3.tdms

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()

Plot of CV

Visualize that a CV consists of two LSV

   line, p = data.plot(dir="pos")
   data.plot(dir="neg", plot = p)

Plot of CVs

Get the current at a specific potential

   i_p, i_n = data.get_i_at_E(-0.4)
   print(i_p,i_n)